Skip to content

Instantly share code, notes, and snippets.

View iemcd's full-sized avatar

Ian McDougall iemcd

View GitHub Profile
@unclespeedo
unclespeedo / podcasts
Last active October 29, 2015 17:27
Podcasts
I mostly listen to nerdy ones but here’s a bunch in no particular order
# Nerdy
- The Talk Show - http://feeds.muleradio.net/thetalkshow
- Back to Work - http://feeds.5by5.tv/b2w
- The Big Web Show - http://feeds.muleradio.net/thebigwebshow
- Accidental Tech Podcast - http://atp.fm/episodes?format=rss
- Amplified - http://feeds.5by5.tv/amplified
- Unprofessional - http://feeds.muleradio.net/unprofessional
- [The Incomparable](http://5by5.tv/incomparable) - http://feeds.5by5.tv/incomparable
@octocat
octocat / .gitignore
Created February 27, 2014 19:38
Some common .gitignore configurations
# Compiled source #
###################
*.com
*.class
*.dll
*.exe
*.o
*.so
# Packages #
@dentearl
dentearl / gist:3278446
Last active May 8, 2020 17:53
bash loop to run tons of jobs but limit the background to a certain smaller number at a time. change the -gt 0 to be -gt _n_ to limit the number of background jobs to _n_
# primate version
for f in ../packagePrimates/analysis/comparatorWrapper-primates.*/; do
for c in A B C D; do
##########
# This block holds the background process count in check
while [ $(jobs | wc -l) -gt 0 ]; do
sleep 2;
done;
##########
for partner in simChimp simGorilla simOrang; do