Initial public commit

This commit is contained in:
Rasmus Andersson 2017-08-22 00:05:20 -07:00
commit 3b1fffade1
6648 changed files with 363948 additions and 0 deletions

10
misc/gen-num-pairs.js Normal file
View file

@ -0,0 +1,10 @@
const chars = '0 1 2 3 4 5 6 7 8 9 A B C D E F a b c d e f'.split(' ')
for (let c1 of chars) {
let s = []
for (let c2 of chars) {
s.push(c1 + c2)
}
console.log(s.join(' '))
}