- Geek Feminism: http://geekfeminism.org/
- Philip Guo's writing: http://www.pgbovine.net/writings.htm
- Mel Chua: http://blog.melchua.com/
- Pointers Gone Wild (by Maxime Chevalier): http://pointersgonewild.wordpress.com/ (compiler fun!)
- Sumana's blog: http://www.harihareswara.net/ces.shtml
- Lindsey Kuper's great research blog: http://composition.al/
- Kelly Sommers is so inquisitive and thoughtful and amazing: http://kellabyte.com/
- Selena Deckelmann: http://www.chesnok.com/daily/
- Dan Luu: http://danluu.com/
- http://planet.mozillaopennews.org/
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
#!/bin/bash | |
echo 18 > /sys/class/gpio/export | |
echo out > /sys/class/gpio/gpio18/direction | |
echo 1 > /sys/class/gpio/gpio18/value | |
LAST=`curl -s https://api-davidt-staging.foursquare.com/norep.id` | |
echo "`date` starting up..." | |
echo "`date` initial id: $LAST" | |
killfile=/opt/watcher.kill |
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
var curry = function (f, args, binding) { | |
if (typeof f !== 'function' || | |
toString.call(args) !== '[object Array]') { | |
throw new Error('Invalid parameters'); | |
return; | |
} | |
if (typeof binding !== 'object') { | |
binding = this; | |
} |