Skip to content

Instantly share code, notes, and snippets.

*emotional-status*
[:love :love :love]
(with-fast-forward {:weeks 4}
*emotional-status*)
[:down :down :down]
(describe partner)
{:height :tall,
:weight (not :much),
INFO [02-03|14:48:58.276] Maximum peer count ETH=50 LES=1 total=51
INFO [02-03|14:48:58.300] Starting peer-to-peer node instance=Geth/v1.9.8-unstable-36a684ca-20191121/darwin-amd64/go1.13.4
INFO [02-03|14:48:58.300] Allocated trie memory caches clean=256.00MiB dirty=256.00MiB
INFO [02-03|14:48:58.300] Allocated cache and file handles database=/Users/offcode/datadirs/goerli/fast/geth/chaindata cache=512.00MiB handles=5120
INFO [02-03|14:48:59.725] Opened ancient database database=/Users/offcode/datadirs/goerli/fast/geth/chaindata/ancient
INFO [02-03|14:48:59.743] Persisted trie from memory database nodes=361 size=51.44KiB time=1.469893ms gcnodes=0 gcsize=0.00B gctime=0s livenodes=1 livesize=0.00B
INFO [02-03|14:48:59.743] Initialised chain configuration config="{ChainID: 5 Homestead: 0 DAO: <nil> DAOSupport: true EIP150: 0 EIP155: 0 EIP158: 0 Byzantium: 0 Constantinople: 0 Petersburg: 0 Istanbul: 1561651 Engine: clique}"
INF
@adamschmideg
adamschmideg / keybase_proof.md
Created December 9, 2019 11:12
keybase proof

Keybase proof

I hereby claim:

  • I am adamschmideg on github.
  • I am offcode (https://keybase.io/offcode) on keybase.
  • I have a public key ASCpRf-tzLF_EGt9O8l2PC6oFxdSm7dY2TG4Wpd3QaqKBgo

To claim this, I am signing this object:

{
"name": "ecosystem",
"children": [
{
"name": "Geth",
"children": [
{
"name": "mining tools",
"value": 10
},
@adamschmideg
adamschmideg / gist:133f055ddb1359ed81d0
Created July 22, 2014 20:05
Numerals to roman Coding dojo
(ns romnum.core
(:require
[clojure.test :refer [is testing]]))
(def roman-digits [[1000 "M"]
[500 "D"]
[100 "C"]
[50 "L"]
; [40 "XL"]
[10 "X"]