This file contains hidden or 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
mailto://[email protected] |
This file contains hidden or 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
mailto:[email protected]?subject=I%20am%20at%20your%20desk&body=That%20is%20some%20body |
This file contains hidden or 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
"%DATE %TIME %VALUE%UNIT" | |
in @Rob_Team1_Desk's timeline |
This file contains hidden or 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
/* | |
* //////////////////////////////////////////////////// | |
* /////Built from many people and their hard work///// | |
* //////////////////////////////////////////////////// | |
* Godzilla Room PIR Sensor attached to a Power Switch tail, | |
* detects movement with the room, turns on the lights, | |
* tweets to https://twitter.com/T1GodzillaRoom | |
* Uses Arduino UNO, Ethernet Shield, and Power Switch Tail. | |
* //////////////////////////////////////////////////// | |
* //making sense of the Parallax PIR sensor's output// |
This file contains hidden or 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
/* | |
* //////////////////////////////////////////////////// | |
* /////Built from many people and their hard work///// | |
* //////////////////////////////////////////////////// | |
* Godzilla Room PIR Sensor attached to a Power Switch tail, | |
* detects movement with the room, turns on the lights, | |
* tweets to https://twitter.com/T1GodzillaRoom | |
* Uses Arduino UNO, Ethernet Shield, and Power Switch Tail. | |
* //////////////////////////////////////////////////// | |
* //making sense of the Parallax PIR sensor's output// |
This file contains hidden or 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
@media only screen and (min-width: 320px) { | |
/* Small screen, non-retina */ | |
} | |
@media | |
only screen and (-webkit-min-device-pixel-ratio: 2) and (min-width: 320px), | |
only screen and ( min--moz-device-pixel-ratio: 2) and (min-width: 320px), | |
only screen and ( -o-min-device-pixel-ratio: 2/1) and (min-width: 320px), |
This file contains hidden or 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
$(function () { | |
var chart; | |
$(document).ready(function() { | |
var colors = Highcharts.getOptions().colors, | |
categories = ['Sugar', 'Coconut Milk', 'Vanilla', 'Coconut'], |
This file contains hidden or 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 | |
$checkin = stripslashes($_POST["checkin"]); | |
$val = json_decode($checkin); | |
$firstname = $val->user->firstName; | |
$lastname = $val->user->lastName; | |
$display = $firstname . " " . $lastname . " just checked in! Welcome, " . $firstname . "!"; | |
$display = urlencode($display); |
This file contains hidden or 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
// Commands for Alpha Sign Communication Protocol | |
byte NUL = 0x00; | |
byte START_HEADER = 0x01; | |
byte START_TEXT = 0x02; | |
byte END_TRANSMISSION = 0x04; | |
byte ESC = 0x1B; | |
byte FILL = 0x30; | |
byte ROTATE = 0x61; | |
byte SLOW = 0x15; | |
byte FAST = 0x19; |
This file contains hidden or 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
adjust_hue(saturate(darken(#eeeeee, 4), 45), 360) |