This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
if( isset( $_GET['code'] ) && isset( $_GET['error'] ) ) { | |
add_action('send_headers', 'error_test_check_headers'); | |
} | |
function error_test_check_headers() { | |
$codes = error_test_get_codes(); | |
$code = $_GET['code']; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*/html/crosh.html | |
chrome://extensions | |
chrome://settings | |
chrome://flags | |
https://accounts.google.com/AddSession | |
https://accounts.google.com/AccountChooser | |
chrome://history-frame | |
chrome://chrome/history-frame |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Google Apps Suite Custom Aliases (for bash / zsh, etc) | |
alias 'gdoc=open https://docs.google.com/document/u/0/' | |
alias 'gsht=open https://docs.google.com/spreadsheets/u/0/' | |
alias 'gdrv=open https://drive.google.com/drive/u/0/my-drive' | |
alias 'gcal=open https://calendar.google.com/calendar/render?pli=1#main_7' | |
alias 'gml=open https://mail.google.com/mail/u/0/#inbox' | |
alias 'yt=open https://youtube.com/' | |
# bonus alias for new gist y'all | |
alias 'gist=open https://gist.github.com/' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@kristenbrooks77about 7 hours ago by Kristen | |
Kristen Twitterabout 7 hours ago by Kristen | |
When making classes if code.org would add a QR code to the student cards it would be super helpful for K-3rd students.about 7 hours ago by Kristen | |
https://code.org/files/CSEDrobotics.pdfabout 8 hours ago by Tanya | |
Try the Tickle App to code robotics and more!about 9 hours ago by Tanya | |
http://thefoos.com/about 9 hours ago by Tanya | |
$50 off Dash and Dot Redemption code for robots: CODE1389Fabout 9 hours ago by Tanya | |
Dash and Dot - makewonder.comabout 9 hours ago by Tanya | |
Sphero/Ollie/BB8 - sphero.comabout 9 hours ago by Tanya | |
Ozobot - ozobot.com ozoblockly.comabout 9 hours ago by Tanya |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* create_image_credits sets up the credits for an image | |
* @param $image string the attachment id | |
* @return string the image credit file url | |
*/ | |
function create_image_credits($image){ | |
$image_post = get_post($image); | |
$upload_dir = wp_upload_dir(); | |
$image_guid = explode('/', $image_post->guid); | |
$filename = end($image_guid); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* My Leprechaun capture scetch | |
* Mainly adopted from some existing public tutorials plus a little tinkering | |
* this code is public domain, enjoy! | |
* by Russell Fair | |
*/ | |
#include <Servo.h> | |
Servo servo1; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>Learning HTML5 at START:CODE Summer Camp</title> | |
<meta name="description" content="A Basic Webpage Template for Learning HTML5"> | |
<meta name="author" content="Put Your Name Here"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<script src="js/jquery-2.0.3.min.js"></script> | |
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* This widget presents a search widget which uses listings' taxonomy for search fields. | |
* | |
* @package AgentPressTwo | |
* @since 2.0 | |
* @author Russell Fair | |
*/ | |
class AgentPressTwo_Listings_Search_Widget extends WP_Widget { | |
function AgentPressTwo_Listings_Search_Widget() { |