I hereby claim:
- I am whymarrh on github.
- I am whymarrh (https://keybase.io/whymarrh) on keybase.
- I have a public key ASDvATuKuBF_Q8uauOaRThLUYqAwKVvHZ9d23lE_GdX57go
To claim this, I am signing this object:
-- Using the db from https://github.com/whymarrh/jeopardy-parser | |
WITH duplicates(clue, occurrences) AS ( | |
SELECT d.clue, COUNT(d.clue) AS occurrences | |
FROM documents AS d | |
WHERE d.clue NOT IN ( | |
'=', '...', | |
'(missing clue)', | |
'(audio clue)', '[audio clue]', '[audio]', | |
'[Instrumental theme plays]', '[instrumental]', | |
'[Music plays]', '[theme music]', |
I hereby claim:
To claim this, I am signing this object:
node_modules/rx/{package.json.bak => package.json} | 1 + | |
1 file changed, 1 insertion(+) | |
diff --git a/node_modules/rx/package.json.bak b/node_modules/rx/package.json | |
index b4ce765..c7871af 100644 | |
--- a/node_modules/rx/package.json.bak | |
+++ b/node_modules/rx/package.json | |
@@ -113,5 +113,6 @@ | |
"test": "grunt" | |
}, |
fun rangeMap(value: Double, from: ClosedRange<Double>, to: ClosedRange<Double>): Double { | |
require(value in from, { "value $value must be in source range $from" }) | |
return to.start + (to.endInclusive - to.start) * (value - from.start) / (from.endInclusive - from.start) | |
} |
FROM alpine:3.6 | |
RUN apk --update add python3 | |
CMD ["python3"] |
#!/usr/bin/env python3 -OO | |
import itertools | |
import serial | |
import shlex | |
import subprocess | |
MESSAGE = """ | |
Hi there! You have a serial port: |
var re = /^(?!app[\\\/])|(app[\\\/]test)/; | |
console.log(); | |
console.log(); | |
console.log(); | |
console.log(); | |
[ | |
"app/test/Config.js", | |
"app/test/OtherConfig.js", |
import argparse | |
import requests | |
import json | |
ROOM_ID = '' | |
TOKEN = '' | |
HIPCHAT_ROOM_URL = 'https://api.hipchat.com/v2/room/{0}/notification' |
#!/usr/bin/env bash | |
set -e -o pipefail | |
LATEST_GIT_VERSION=$(curl http://git-scm.com/ 2>&1 | grep -A 2 '<span class="version">' | grep '[[:digit:]].[[:digit:]]' | tr -d ' ') | |
GIT_VERSION="${1:-$LATEST_GIT_VERSION}" | |
PREFIX="/usr/local/git" | |
SUDO="sudo" | |
NOW_SECONDS=$(date +%s) | |
THE_ABYSS="/dev/null" |