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
#include <SoftwareSerial.h> | |
SoftwareSerial mySerial(11, 12); //RX,TX | |
String tmp; | |
void setup() { | |
Serial.begin(9600); | |
mySerial.begin(9600); | |
while (!Serial) { |
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
gollum-site generate | |
cp _site/Home.html _site/index.html | |
rm -rf /tmp/_site | |
cp -r _site /tmp/ | |
git co gh-pages | |
rsync -av /tmp/_site/ . | |
git add . | |
git commit -a -m"add" | |
git push | |
git co gollum |
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
#include <SoftwareSerial.h> | |
SoftwareSerial mySerial(9, 10); //RX,TX | |
String tmp; | |
void setup() { | |
Serial.begin(9600); | |
mySerial.begin(9600); | |
}; |
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
const int ledPin = 9; // the pin that the LED is attached to | |
void setup() | |
{ | |
// initialize the serial communication: | |
Serial.begin(9600); | |
// initialize the ledPin as an output: | |
pinMode(ledPin, 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
String tmp = ""; | |
void setup() { | |
Serial.begin(9600); | |
} | |
void loop() { | |
while (Serial.available() > 0) { | |
tmp += char(Serial.read()); |
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
some_fun(req, res, next) | |
.pipe(function() { return redis.incr('next_id') }) | |
.fail(function(e) { return next(e); }) | |
.pipe(function() { return redis.set('key', {id:r, now:Date.now()}) }) | |
.done(function(res) {res.send([1, 'ok'];}) | |
.fail(function(e) {return next(e); }) |
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 | |
/** | |
* SplClassLoader implementation that implements the technical interoperability | |
* standards for PHP 5.3 namespaces and class names. | |
* | |
* http://groups.google.com/group/php-standards/web/final-proposal | |
* | |
* // Example which loads classes for the Doctrine Common package in the | |
* // Doctrine\Common namespace. |
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
#!/bin/bash | |
# According to https://developer.apple.com/library/ios/#qa/qa1686/_index.html | |
# Install GraphicsMagick with Homebrew: brew install GraphicsMagick | |
gm convert $1 -resize 512x512 iTunesArtwork.png # Ad Hoc iTunes | |
gm convert $1 -resize 144x144 [email protected] # Home screen for "The New iPad" | |
gm convert $1 -resize 114x114 [email protected] # Home screen for Retina display iPhone/iPod | |
gm convert $1 -resize 72x72 Icon-72.png # App Store and Home screen on iPad | |
gm convert $1 -resize 58x58 [email protected] # Spotlight and Settings for Retina display | |
gm convert $1 -resize 57x57 Icon.png # Home screen on non-Retina iPhone/iPod | |
gm convert $1 -resize 50x50 Icon-Small-50.png # Spotlight on iPad 1/2 |
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
configuration = ENV["CONFIGURATION"] | |
project_dir = ENV["PROJECT_DIR"] | |
settings_bundle = "#{project_dir}/Resources/Settings.bundle" | |
plist_location = "#{project_dir}/Resources/SettingPlists" | |
release_or_debug = ENV["CONFIGURATION"] == "Debug" ? "Debug" : "Release" | |
settings_plist = "#{plist_location}/SettingsRoot#{release_or_debug}.plist" | |
system("cp #{settings_plist} #{settings_bundle}/Root.plist"); | |
system("touch #{settings_bundle}/Root.plist"); |
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 | |
function http_get($host) { | |
// create event base | |
$base_fd = event_base_new(); | |
// create a new event | |
$event_fd = event_new(); | |
// resource to be monitored |