Skip to content

Instantly share code, notes, and snippets.

@mjgil
mjgil / README
Created May 18, 2013 22:49 — forked from mattbaker/README
This example expects to have d3.min.js and d3.layout.min.js in the same directory as pie.js and pie_serv.js.
Run with node pie_serv.js
@mjgil
mjgil / _.md
Created May 18, 2013 23:56
test
@mjgil
mjgil / _.md
Created May 21, 2013 07:18
1024 members html foci
@mjgil
mjgil / _.md
Created May 21, 2013 07:20
simple voronoi
@mjgil
mjgil / _.md
Created May 21, 2013 07:21
cost of living combo
@mjgil
mjgil / Git Aliases
Last active December 18, 2015 00:08
Taken from TJ Holowaychuk: http://tjholowaychuk.com/post/26904939933/git-extras-introduction-screencast
Added to ~/.bash_aliases
alias gd="git diff | mate"
alias ga="git add"
alias gbd="git branch -D"
alias gst="git status"
alias gca="git commit -a -m"
alias gm="git merge --no-ff"
alias gpt="git push --tags"

Get Your Vim On

Rod Knowlton (@codelahoma)

Tulsa Web Devs - 8/20/2012

Last Updated: - 1/23/2013

First Things First

<!-- Prompt IE6 users to install Chrome Frame -->
<!--[if lt IE 7 ]>
<script src="//ajax.googleapis.com/ajax/libs/chrome-frame/1.0.3/CFInstall.min.js"></script>
<script>window.attachEvent('onload',function(){CFInstall.check({mode:'overlay'})})</script>
<![endif]-->
# View list of connections and their states
netstat -tan | grep ':80 ' | awk '{print $6}' | sort | uniq -c
# List all connections and timers
ss -rota | less