Skip to content

Instantly share code, notes, and snippets.

View arjunmayilvaganan's full-sized avatar

Arjun Mayilvaganan arjunmayilvaganan

View GitHub Profile
@tpeng
tpeng / gist:5035495
Created February 26, 2013 03:01
download from videolectures.net
import re
import subprocess
from urllib2 import urlopen
url = 'http://videolectures.net/ecmlpkdd08_carlson_bief/'
re_flv = re.compile(r'(flv:[\w/]+)')
html = urlopen(url).read()
m = re.search(re_flv, html)
if m:
@MohamedAlaa
MohamedAlaa / tmux-cheatsheet.markdown
Last active April 20, 2025 21:04
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname
@lancejpollard
lancejpollard / node-folder-structure-options.md
Created November 28, 2011 01:50
What is your folder-structure preference for a large-scale Node.js project?

What is your folder-structure preference for a large-scale Node.js project?

0: Starting from Rails

This is the reference point. All the other options are based off this.

|-- app
|   |-- controllers
|   |   |-- admin