I hereby claim:
- I am rkneufeld on github.
- I am rkneufeld (https://keybase.io/rkneufeld) on keybase.
- I have a public key whose fingerprint is 1A4A 094D D64C FFC8 A8E7 F71F C510 F110 AB0B 89B5
To claim this, I am signing this object:
| { | |
| "lib/*.ex": { | |
| "type": "module", | |
| "alternate": "test/{}_test.exs" | |
| }, | |
| "test/*_test.exs": { | |
| "type": "test", | |
| "alternate": "lib/{}.ex" | |
| }, |
| .vimrc | |
| " Map leader to comma | |
| let maplocalleader="," | |
| " Toggle this for vim-sexp to not go into insert mode after wrapping something | |
| let g:sexp_insert_after_wrap = 0 | |
| " Toggle this to disable automatically creating closing brackets and quotes | |
| let g:sexp_enable_insert_mode_mappings = 1 | |
| Vocab |
| Verifying that +rkneufeld is my blockchain ID. https://onename.com/rkneufeld |
| (ns my-suite.actions.acquirer | |
| (:require ;; … | |
| [io.homegrown.sim-ephemeral :as eph]) | |
| (defn create-payment | |
| “Create a payment, returning a vector of [<response> <payment id> <nsecs taken>]” | |
| [action] | |
| …) | |
| (defn approve-paymenet |
| (defn keyword->pg-enum | |
| "Convert a keyword value into an enum-compatible object." | |
| [enum-type kw] | |
| (doto (org.postgresql.util.PGobject.) | |
| (.setType enum-type) | |
| (.setValue (name kw)))) | |
| (def ->status | |
| "Convert a keyword status into a something_status enum object" | |
| (partial keyword->pg-enum "something_status")) |
| #!/usr/bin/env bash | |
| pattern=$1 | |
| PORTS="" | |
| if [ -z "$pattern" ]; then | |
| PORTS=$(lsof -iTCP -sTCP:LISTEN) | |
| else | |
| PORTS=$(lsof -iTCP -sTCP:LISTEN | grep "$pattern") | |
| fi |
| (ns my-todo.core | |
| (:require [io.pedestal.http :as http] | |
| [io.pedestal.http.route :refer [router]] | |
| [io.pedestal.http.route.definition :refer [defroutes]])) | |
| (defn hello-world [context] | |
| {:status 200 | |
| :body "Hello, world!" | |
| :headers {}}) |
| (require '[datomic.api :as d] | |
| '[clojure.stacktrace :as st]) | |
| ;; Knobs | |
| (def datoms-per-tx 1000) | |
| ;; Monitoring | |
| (def start-time (atom 0)) | |
| (def transaction-count (atom 0)) |
I hereby claim:
To claim this, I am signing this object: