Skip to content

Instantly share code, notes, and snippets.

View soopercorp's full-sized avatar
🚲

hardy soopercorp

🚲
View GitHub Profile
@soopercorp
soopercorp / cd-sol.js
Created April 2, 2012 20:00
cd-solution
/*
Task:
Fill the array ‘randomNumbers’ with 64 random numbers.
Make sure that there are no duplicate numbers in the array.
*/
// You can’t change this function
function getRandomNumber(callback) {
var random = Math.floor( Math.random() * 128 );
@soopercorp
soopercorp / hack.sh
Created March 31, 2012 19:21 — forked from erikh/hack.sh
OSX For Hackers
#!/usr/bin/env sh
##
# This is script with usefull tips taken from:
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx
#
# install it:
# curl -sL https://raw.github.com/gist/2108403/hack.sh | sh
#
@soopercorp
soopercorp / dr-chrono-unsolved.txt
Created March 18, 2012 06:21
Dr. Chrono unsolved
In a movie theatre, there are N * M seats, arranged as a grid of N rows and M columns. You've decided that if you sell a movie seat, you won't sell another seat present in any of the earlier rows in the same column, or the immediately adjacent columns. This is because the person sitting in the earlier row can obstruct the view of the person sitting behind him in an adjacent column.
In other words, if you put a person k in the middle of a 4x3 grid:
ooo
ooo
oko
@soopercorp
soopercorp / letter-to-pm.txt
Created March 16, 2012 08:13
Letter to PM Email Forward
LETTER TO PRIMEMINISTER
Dear Mr. Prime minister I am a typical mouse from Mumbai. In the local train compartment which has capacity of 100 persons, I travel with 500 more mouse. Mouse at least squeak but we don't even do that.Today I heard your speech. In which you said 'NO BODY WOULD BE SPARED'. I would like to remind you that fourteen years has passed since serial bomb blast in Mumbai took place. Dawood was the main conspirator. Till today he is not caught. All our bolywood actors, our builders, our Gutka king meets him but your Government can not catch him. Reason is simple; all your ministers are hand in glove with him. If any attempt is made to catch him everybody will be exposed. Your statement 'NOBODY WOULD BE SPARED' is nothing but a cruel joke on this unfortunate people of India .Enough is enough. As such after seeing terrorist attack carried out by about a dozen young boys I realize that if same thing continues days are not away when terrorist will attack by air, destroy our nuclear reactor and the
@soopercorp
soopercorp / stream.py
Created March 11, 2012 03:25
drchrono-codesprint
def atoi(a):
return ord(a)-65
"""
def itoa(a):
return chr(a+65)
"""
i = 0
ip = []
#Newbie programmer
def factorial(x):
if x == 0:
return 1
else:
return x * factorial(x - 1)
print factorial(6)
#First year programmer, studied Pascal
@soopercorp
soopercorp / sc-dl.js
Created March 5, 2012 21:33 — forked from pheuter/sc-dl.js
Bookmarklet that generates download link for a Soundcloud upload
(function(d) {
var dl = d.createElement('a');
dl.innerText = 'Download MP3';
dl.href = "http://media.soundcloud.com/stream/"+d.querySelector('#main-content-inner img[class=waveform]').src.match(/\.com\/(.+)\_/)[1];
dl.download = d.querySelector('em').innerText+".mp3";
d.querySelector('.primary').appendChild(dl);
dl.style.marginLeft = '10px';
dl.style.color = 'red';
dl.style.fontWeight = 700;
})(document);
@soopercorp
soopercorp / dump.txt
Created February 27, 2012 04:33
chrome gpg
[5] hr@hr:~/Downloads/Mononofu-CryptoChrome-09ac592$ sudo sh build.sh
Cloning into firebreath-1.6...
remote: Counting objects: 17915, done.
remote: Compressing objects: 100% (4151/4151), done.
remote: Total 17915 (delta 13731), reused 17708 (delta 13569)
Receiving objects: 100% (17915/17915), 11.62 MiB | 526 KiB/s, done.
Resolving deltas: 100% (13731/13731), done.
Using projects in: /home/hr/Downloads/Mononofu-CryptoChrome-09ac592/firebreath-1.6/projects
Generating build files in: /home/hr/Downloads/Mononofu-CryptoChrome-09ac592/firebreath-1.6/build
NOTE: The build files in /home/hr/Downloads/Mononofu-CryptoChrome-09ac592/firebreath-1.6/build should *NEVER* be modified directly. Make changes in cmake and re-run this script.
@soopercorp
soopercorp / swype.py
Created February 23, 2012 05:41 — forked from krisys/swype.py
How swype works?
WORDS = open('wordlist.txt').read().split()
KEYBRD_LAYOUT = ['qwertyuiop', 'asdfghjkl', 'zxcvbnm']
def match(path, word):
""" Checks if a word is present in a path or not. """
try:
for char in word:
path = path.split(char, 1)[1]
return True
@soopercorp
soopercorp / findbest.py
Created February 20, 2012 23:38
bestthing.info algorithm
#!/usr/bin/env python
import cPickle as pickle
import random
# things I beat
tIB = {}
# things beat me
tBM = {}