This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(ns replicate.tree | |
[clojure.walk | |
:refer [postwalk]])) | |
(defprotocol NodeStore | |
(persist [store node]) | |
(fetch [store node-hash])) | |
(defprotocol Node | |
(insert [node k store]) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(ns invariant.datahike-scratch | |
(:refer-clojure :exclude [+]) | |
(:require [invariant.datahike | |
:refer [+]] | |
[datahike.api :as d] | |
[datahike.core :as dc])) | |
(defn query [q conn tx] | |
(d/q q | |
@conn |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; I would suggest that we use either 'datopia' or 'datopia.db' as the namespace | |
;; for the schemas, rather than 'db'. For users, I suspect 'db' will seem arbitrary | |
;; and incongruous (as it does to me, in this context). | |
#:datopia {:attribute :datopia.ednt/balance | |
:schema #:db {:cardinality :db.cardinality/one | |
:valueType :db.type/bigdec} | |
:invariant <inline query graph as map of keyword -> query, | |
or maybe just inline query, initially. having |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(ns stickler.core | |
(:require [clojure.java.io :as io] | |
[camel-snake-kebab.core :refer [->kebab-case]]) | |
(:import [com.squareup.wire.schema Schema SchemaLoader ProtoType]) | |
(:gen-class)) | |
(def ^:dynamic package-renames {}) | |
(def ^:dynamic ->field-name ->kebab-case) | |
(def ^:dynamic ->type-name ->kebab-case) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
export DEBIAN_FRONTEND=noninteractive | |
set -e | |
sudo add-apt-repository universe | |
apt-add-repository -y ppa:teejee2008/ppa | |
apt-get update | |
apt-get install -y ukuu |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys, rlp, leveldb | |
from ethereum import trie | |
db = leveldb.LevelDB('/tmp/xyz') | |
class X: | |
def get(self, a): | |
return db.Get(a) | |
def put(self, a, b): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(let [bid-duration (t/days 10) | |
reveal-duration (t/days 12)] | |
(fsm | |
:store {high-bid 0 | |
high-bidder nil | |
returns {} | |
created (from :time)} | |
:states [:bid (<= bid-duration (t/interval created (:time tx))) | |
:reveal (<= reveal-duration (t/interval created (:time tx))) | |
:finish |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from OpenGL.GL import * | |
from OpenGL.GLU import * | |
from OpenGL.GLUT import * | |
from PIL import Image | |
from PIL import ImageOps | |
import sys | |
width, height = 3840, 1920 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
service: aws-polling-task-scheduler | |
provider: | |
name: aws | |
runtime: nodejs4.3 | |
environment: | |
RATE: 300 | |
TASK_TABLE: ${self:service}-${opt:stage, self:provider.stage}-tasks | |
TOKEN_INDEX: ${self:service}-${opt:stage, self:provider.stage}-tasks-by-token | |
iamRoleStatements: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
set -e -o pipefail | |
API_NAME= | |
SLACK_TOKEN= | |
while [[ 1 < $# ]]; do | |
key="$1" | |
case $key in |