Skip to content

Instantly share code, notes, and snippets.

View arondeparon's full-sized avatar
🤓

Aron Rotteveel arondeparon

🤓
View GitHub Profile
@arondeparon
arondeparon / gist:2884398
Created June 6, 2012 20:06
Simple one-liner to see if your password is contained in the LinkedIn combo_not.txt fie
echo -n "yourpassword" | shasum | awk {'print $1'} | grep `cat /dev/stdin` combo_not.txt
@arondeparon
arondeparon / gist:1517283
Created December 24, 2011 12:49
Instant download of every Hacker Monthly issue to date (http://news.ycombinator.org/item?id=3387288)
curl -O "http://s3.amazonaws.com/bearwithclaws.baconfile.com/hackermonthly-issue0[01-19].zip"
@arondeparon
arondeparon / Remote + local jQuery combined
Created February 24, 2011 10:41
Remote + local jQuery inclusion
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
<script>!window.jQuery && document.write(unescape('%3Cscript src="/skin/default/js/libs/jquery-1.4.4.min.js"%3E%3C/script%3E'))</script>