I hereby claim:
- I am chrisamaphone on github.
- I am chrisamaphone (https://keybase.io/chrisamaphone) on keybase.
- I have a public key whose fingerprint is 2D96 221C 326F 73A4 1070 F26D 05C1 11F8 8E43 92BF
To claim this, I am signing this object:
| $ brew update | |
| error: The following untracked working tree files would be overwritten by merge: | |
| Library/Formula/echoprint-codegen.rb | |
| Library/Formula/rats.rb | |
| Please move or remove them before you can merge. | |
| Aborting | |
| Error: Failure while executing: git pull -q origin refs/heads/master:refs/remotes/origin/master |
| (* lookupSplit : ''a -> (''a * 'b) list -> ('b * (''a * 'b) list) option *) | |
| fun lookupSplit id table = | |
| let | |
| fun lookupSplit' id nil cont = NONE | |
| | lookupSplit' id ((k,v)::table) cont = | |
| if k = id then SOME (v, cont table) | |
| else lookupSplit' id table (fn suffix => cont ((k,v)::suffix)) | |
| in | |
| lookupSplit' id table (fn x => x) | |
| end |
| root : type. | |
| i : root. | |
| ii : root. | |
| iii : root. | |
| iv : root. | |
| v : root. | |
| vi : root. | |
| vii : root. | |
| v/ : root -> root -> type. |
I hereby claim:
To claim this, I am signing this object:
| component(a2). | |
| component(a5). | |
| component(a6). | |
| component(b6). | |
| value(a2, 2). | |
| value(a5, 5). | |
| value(a6, 6). | |
| value(b6, 6). |
| %% budget proposal | |
| body : type. | |
| governor : body. | |
| house : body. | |
| senate : body. | |
| combined : body. | |
| begin : pred. | |
| proposal body : pred. |
| On your *ideal* daily commute, how do you get there? | |
| - Drive | |
| - Walk or bike | |
| - Bus or train | |
| - Other | |
| Please make the following assumptions: | |
| - That it takes an identical amount of time (say, 15 minutes) to commute no matter which option you choose. | |
| (Even if you work from home, assume an alternate reality in which you must travel for 15 minutes.) |
| function randInt(max) { return Math.floor(Math.random()*max) } | |
| function removeIdx(a,i) { return a.splice(i,1)[0] } | |
| function removeRandom(a) { | |
| var i = randInt(a.length); | |
| return removeIdx(a,i) | |
| } | |
| var teams = [3,8,9,10,11,12,14,18,20,21,22,23,24,25]; |
| [Metric("Gold to Enemies Ratio")] | |
| public static float GoldToEnemies(object map) | |
| { | |
| ChunkyLevel sl = (ChunkyLevel)map; | |
| int gold = 0; | |
| int enemies = 0; | |
| for (int i = 0; i < sl.tiles.GetLength(0); i++) | |
| { | |
| for (int j = 0; j < sl.tiles.GetLength(1); i++) | |
| { |