Hello Spring Break 2012, Miami Beach, FL
Licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License by Gubatron
Licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License by Gubatron
Your Mac won’t recognize your USB device until you reset, what a pain in the ass right? Open Activity Monitor…
[javascript] Array.prototype.swap=function(a, b) { var tmp=this[a]; this[a]=this[b]; this[b]=tmp; } function quickSort(array,comparator) { qsort(array,0,array.length,comparator); } /** * NOTE: the comparator is…
It was almost 3:30am and his eyes had just opened from a short 10 second nap he didn’t foresee coming,…
[javascript] /** * Returns number starting from offset up to n-1 */ function getRandomWithOffset(n,offset) { return Math.floor(Math.random()*n+offset); } /** *…