I hereby claim:
- I am kmtr on github.
- I am kmtr (https://keybase.io/kmtr) on keybase.
- I have a public key whose fingerprint is 3979 5665 235E C866 680F FABC 80A5 13D2 0B74 3B30
To claim this, I am signing this object:
| package main | |
| import ( | |
| "database/sql" | |
| "fmt" | |
| "io" | |
| "log" | |
| "os" | |
| "strings" | |
| "text/template" |
| function validate(val, ...validateFunctions) { | |
| for (let f of validateFunctions) { | |
| const err = f(val); | |
| if (err !== val) { | |
| return err; | |
| } | |
| } | |
| return null; | |
| } |
I hereby claim:
To claim this, I am signing this object:
| $ env GOOS=linux GOARCH=arm GOARM=7 go build |
| type Account struct { | |
| Email string | |
| Password string | |
| Rank int | |
| } |
| open UCoreLib;; | |
| let love = | |
| let sei = UChar.int_of (Text.get (Text.of_string "生") 0) in | |
| let si = UChar.int_of (Text.get (Text.of_string "死") 0) in | |
| let ai = Text.to_string (Text.of_uchar (UChar.of_int (sei land si))) in | |
| ai | |
| ;; | |
| print_string love;; |
| module Chapter4 ( | |
| halve, | |
| halveX, | |
| safetailA, | |
| safetailB, | |
| safetailC, | |
| or1, | |
| or2, | |
| or3, | |
| or4, |
| $ brew install ocaml --with-x11 | |
| $ brew install opam |
| import webpack from "webpack"; | |
| import glob from "glob"; | |
| import path from "path"; | |
| let vendorModules = /(node_modules)/; | |
| let entryFiles = glob.sync("./src/**/*.js"); | |
| let entries = {}; | |
| for (let f of entryFiles) { | |
| let tmp = f.split("/"); |