Using Python's built-in defaultdict we can easily define a tree data structure:
def tree(): return defaultdict(tree)That's it!
| # increase system IP port limits | |
| net.ipv4.ip_local_port_range=1024 65535 | |
| # Incoming packets queue length | |
| net.core.netdev_max_backlog=10000 | |
| # TCP socket max connections num | |
| net.core.somaxconn=262144 | |
| # Enable syncookies |
Using Python's built-in defaultdict we can easily define a tree data structure:
def tree(): return defaultdict(tree)That's it!
command line tools for xcode https://developer.apple.com/downloads# To uninstall @see http://guide.macports.org/chunked/installing.macports.uninstalling.html
| hg clone https://vim.googlecode.com/hg/ vim | |
| cd vim/src | |
| ./configure --prefix=/opt/vim --enable-pythoninterp --enable-cscope --with-features=huge --with-tlib=ncurses | |
| make |
| rvm get latest | |
| rvm reload | |
| rvm rvmrc trust | |
| rvm install ruby-1.9.3-p0 | |
| rvm rubygems latest |