- Toddler Teasers Quizzing - http://itunes.apple.com/us/app/toddler-teasers-quizzing/id303137716?mt=8
- Toddler Teasers Whatchamacallit - http://itunes.apple.com/us/app/toddler-teasers-whatchamacallit/id321418629?mt=8
- Monster Trucks Nitro - http://itunes.apple.com/us/app/monster-trucks-nitro/id307242022?mt=8
- Monster Trucks Nitro 2 - http://itunes.apple.com/us/app/monster-trucks-nitro-2/id353976136?mt=8
- FirstWords: Animals - http://itunes.apple.com/us/app/firstwords-animals/id294536447?mt=8
- FirstWords: Vehicles - http://itunes.apple.com/us/app/firstwords-vehicles/id305225253?mt=8
- Matches - http://itunes.apple.com/us/app/matches/id312612199?mt=8
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
// A simple Cassandra node.js "Hello World" | |
// Assumes Cassandra 0.6.1 on localhost with the default schema. | |
// | |
// You'll also want to load some data: | |
// | |
// $ cassandra-cli --host localhost --port 9160 | |
// Connected to: "Test Cluster" on localhost/9160 | |
// Welcome to cassandra CLI. | |
// | |
// Type 'help' or '?' for help. Type 'quit' or 'exit' to quit. |
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
# chl, 2010-04-27 | |
# http://blog.tech.stylefeeder.com/2008/05/27/generating-primary-keys/ | |
import math | |
NUM = "0123456789" | |
LOWER = "abcdefghijklmnopqrstuvwxyz" | |
UPPER = LOWER.upper() | |
ALPHANUM = NUM + LOWER + UPPER | |
ASCII_94 = [chr(33 + x) for x in xrange(94)] |
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
votes CF | |
"back in black" => { 201005211200 => '1', 201005201159 => '1', 201005201157 => '1', 201005011900 => '1', 201004190600 => '1' }, | |
"black album" => { 201005021800 => '1', 201005010600 => '1' }, | |
"black star" => { 201005011000 => '1' } | |
cached_counts CF | |
"back in black" => { 'cached_count' => 2, 'counted_until' => 201005011931 }, | |
"black album" => { 'cached_count' => 1, 'counted_until' => 201005010600 } |
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
// gopher.js - a minimal gopher implementation using node.js | |
// Released under the 3 clause BSD license by Matt Croydon <[email protected]> (http://postneo.com) | |
var net = require('net'); | |
net.createServer(function (socket) { | |
socket.setEncoding("ascii"); | |
socket.on("data", function (data) { | |
if (data === '\r\n') { | |
console.log('Serving index.'); |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>My Whisper Blog</title> | |
</head> | |
<body> | |
<section> | |
<header><a href='/'>My Whisper Blog</a></header> | |
{{error}} |
An extremely minimal implementation of the `Finger protocol`_ using node.js.
To run (Finger uses port 79 which requires sudo):
sudo node finger_server.js
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
diff --git a/example/server.js b/example/server.js | |
index 167fc43..db758a2 100644 | |
--- a/example/server.js | |
+++ b/example/server.js | |
@@ -61,4 +61,16 @@ io.on('connection', function(client){ | |
client.on('disconnect', function(){ | |
client.broadcast({ announcement: client.sessionId + ' disconnected' }); | |
}); | |
-}); | |
\ No newline at end of file |
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
#User preferences for Reader Booklet | |
#Thu Sep 16 01:05:28 GMT 2010 | |
FONT_SIZE=17 | |
LINE_SPACING=3 | |
DICTIONARY=The New Oxford American Dictionary | |
JUSTIFICATION=full | |
HORIZONTAL_MARGIN=40 | |
LAST_BOOK_READ=/mnt/us/documents/Kindle_Users_Guide.azw | |
FONT_FAMILY=serif |
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
# Download all current FAA sectional GeoTIFFs (zipped) | |
import urllib, os, csv | |
from lxml.html.soupparser import fromstring | |
FAA_CHART_URL = 'http://aeronav.faa.gov/index.asp?xml=aeronav/applications/VFR/chartlist_sect' | |
BASE_CONTENT_URL = 'http://aeronav.faa.gov/' | |
DOWNLOAD_DIR = 'download' | |
data = urllib.urlopen(FAA_CHART_URL).read() |