I hereby claim:
- I am graydon on github.
- I am graydon (https://keybase.io/graydon) on keybase.
- I have a public key whose fingerprint is 99E4 A8F4 DECC 782F CB19 5530 0A04 E2A9 F7B1 3CE1
To claim this, I am signing this object:
| Uncovered note on my desk from conversation about rust's state in rustboot era: | |
| """ | |
| Obstacles: | |
| - bad closures | |
| - bad object model | |
| - generics / monomorphization | |
| - x64 port / x86-isms | |
| - stack growth (doubling vs. chaining) |
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/python | |
| import fileinput, re, sys | |
| current_file = None | |
| current_exports = [] | |
| def fixup(m): | |
| global current_exports | |
| if m.group(2) in current_exports: |
This proposal introduces a platform condition to differentiate device and simulator builds.
| Delta: | |
| $ cat check-2.sh | |
| #!/bin/bash | |
| ulimit -t 3; ~/work/llvm/build-release/bin/opt -S $1 | ~/work/llvm/build-release/bin/lli | |
| if ! test "$?" = "0"; then | |
| exit 1 | |
| fi |
| common stuff | |
| ----------- | |
| Basic consonants(32): | |
| कखगघङचछजझटठडढणतथदधनपफबभमयरलवशषसह | |
| Weirdo that only is used in ligatures, but necessary(1) | |
| ञ |
| Supporting examples 90 words (9 examples @ 10 words each) | |
| Elevator pitch 50 words | |
| Positioning statement 35 words | |
| Headline benefits 24 words (3 benefits @ 8 words each) | |
| Mission statement 20 words | |
| Brand pillars 15 words (3 pillars @ 5 words each) | |
| Target audience 15 words | |
| Brand promise 10 words |
| {-# LANGUAGE FlexibleInstances #-} | |
| module MiniToneInference where | |
| import Prelude hiding ((&&)) | |
| import Control.Applicative | |
| import Control.Monad | |
| import Data.Map.Strict (Map, (!)) | |
| import Data.Maybe (fromJust) | |
| import Data.Monoid ((<>)) | |
| import Data.Set (isSubsetOf) |