- Map Caps Lock -> Control
- Turn on keyboard tabbing through all elements
- Clone kristjan/.dotfiles
- Run .dotfiles/install.rb
- Clone kristjan/.vim
| #!/usr/bin/env ruby | |
| require 'net/http' | |
| require 'rubygems' | |
| require 'json' | |
| username = ARGV.first | |
| if username.nil? | |
| puts "Usage: #{__FILE__} <fb_username>" |
| <!DOCTYPE html> | |
| <head> | |
| <title>Tokbox Demo</title> | |
| <script type="text/javascript" | |
| src="http://staging.tokbox.com/v0.91/js/TB.min.js"></script> | |
| </head> | |
| <body style="text-align: center;"> | |
| <h1>Tokbox Demo</h1> |
| # Curling some Facebook users' IDs at http://fb.me will send you to their profile | |
| $ curl fb.me/6 -D - | |
| HTTP/1.1 302 Found | |
| Location: http://www.facebook.com/6 | |
| Content-Type: text/html; charset=utf-8 | |
| X-FB-Server: 10.52.92.83 | |
| X-Cnection: close | |
| Date: Wed, 28 Sep 2011 23:38:26 GMT | |
| Content-Length: 0 |
| {echo, Server} ! {netload, fun run_faster/0, self()}. |
| #!/bin/bash | |
| function lack() { | |
| echo -ne "\033[32m" | |
| for i in $(seq $(tput cols)); do echo -n "="; done | |
| echo -e "\033[0m" | |
| ack $@ | |
| } |
| { | |
| "author": "Singly <[email protected]>", | |
| "name": "gowalla", | |
| "description": "Gowalla Connector", | |
| "version": "0.0.1", | |
| "repository": { | |
| "title": "gowalla", | |
| "handle": "gowalla", | |
| "author": "nerds", | |
| "update": "auto", |
| Broken | |
| npm http 304 http://registry.singly.com/beaugunderson-meta-me/0.0.2 | |
| --- | |
| Working | |
| npm http 200 http://registry.singly.com/beaugunderson-playground/0.0.2 | |
| npm http GET |
| ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAxmUUlrjOCvO0IzLU8Cgz48RViroBoiBMlNi2EqqCMZqlylyLfqrReAt+BEkVwk/Jboc3cEX+6vwK19e3TJi4lWKZxMR0kWofsgno2j83PrwOATXaxOvZoCr3+5JTYUT/SZNPyhF4d+U00ThwLAcZSGS4FD4FC/5YU86tNDQrYImRc2bYFMggc8lkbM/x5VMEVL0QdxkikmOKYWTneWtqtGbXN8X7pO5zGotodBv1fx7sxTSM9JmY3ygxqd+UaIgSvqTes6y8UIjKoIkvRk4ChIataCuOLcnKALfK3QjTYFD34AuWD3kcF7UAH/XBYh2KpLvY8jWH9+ZfcVmnZTOZNQ== |
| var domain = require('domain'); | |
| process.on('uncaughtException', function(err) { | |
| console.log('Pre caught', err.message); | |
| }); | |
| var d = domain.create(); | |
| d.on('error', function(err) { | |
| console.log("Domain caught", err.message); |