- 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
| import os | |
| import sys | |
| import subprocess | |
| def simplify_pg_index_line(line): | |
| """ | |
| Given a postgres index file line returns it's simplified form. | |
| Returns None for comments | |
| """ |
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
| var sys = require('sys'); | |
| var http = require('http'); | |
| var url = require('url'); | |
| http.createServer(function (req, res) { | |
| var name = 'World'; | |
| if(req.method == 'GET') { | |
| data = require('url').parse(req.url, true); | |
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}} |
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
| brew install git | |
| brew update | |
| brew install readline | |
| brew link readline | |
| brew install python | |
| brew install postgres | |
| brew install tmux | |
| brew install pip | |
| brew install nginx | |
| brew install libevent |
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
| import datetime | |
| import gevent | |
| from gevent import wsgi, pywsgi | |
| # Configuration bits. | |
| PORT = 8081 | |
| LOG_PATH = '/Users/daniellindsley/Desktop/LoggingFramework/benchmarks/receiver/logs/gevent_test.log' | |
| # ============ |
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
| set -g prefix C-a | |
| unbind C-b | |
| bind C-a send-prefix | |
| set bell-action none | |
| set-option -g status-left "" | |
| set-option -g status-right "#S" | |
| set -g status-bg black | |
| set -g status-fg white | |
| set utf8-default on |
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
| Dear <Senator/Representative>, | |
| As a concerned United States citizen and active voter, the recent dealings between Google & | |
| Verizon are cause for concern. The wording of their most recent deal gives way to the loss of net | |
| neutrality. | |
| Net Neutrality (the idea that all people who use Internet are given equal access to any site) is | |
| part of the core of the Internet and is the part of the reason for its rapid expansion as well as | |
| the freedom with which information can be distributed. |
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
| /* | |
| dashbot.js | |
| ========== | |
| Because the last thing you need during the competition is a heartless automaton | |
| breathing down your neck... | |
| Installation: | |
| ------------- |