Skip to content

Instantly share code, notes, and snippets.

Getting started

First add your twitter username and password. Then server.rb and once it's started open websocket.html in your browser. You should see some tweets appear. If not take a look at the javascript console.

@mojombo
mojombo / vwilight.vim
Created January 26, 2011 03:23
vwilight.vim: A TRUE Twilight color theme for Vim
" Vim color file
" Converted from Textmate theme Twilight using Coloration v0.2.5 (http://github.com/sickill/coloration)
set background=dark
highlight clear
if exists("syntax_on")
syntax reset
endif
@eculver
eculver / Reverse SSH tunnelling
Created April 18, 2011 16:18
Reverse SSH tunnelling
Via: http://www.rustyrazorblade.com/2010/03/ssh-reverse-tunnel-to-access-box-behind-firewall/
On host behind NAT/firewall:
ssh -R 5000:localhost:22 eculver@imatool.no-ip.org
On host (imatool.no-ip.org) connecting from outside:
ssh localhost -p 5000