Keybase proof
I hereby claim:
- I am eagleflo on github.
- I am eagleflo (https://keybase.io/eagleflo) on keybase.
- I have a public key whose fingerprint is BB68 7DB7 4A4D 13A3 93C3 AD8E E496 3242 172A 95E1
To claim this, I am signing this object:
~ $ boot -u | |
Downloading https://github.com/boot-clj/boot/releases/download/2.5.2/boot.jar... | |
Running for the first time, BOOT_VERSION not set: updating to latest. | |
Retrieving boot-2.7.1.jar from https://clojars.org/repo/ | |
#http://boot-clj.com | |
#Sat Apr 15 17:48:00 EEST 2017 | |
BOOT_CLOJURE_NAME=org.clojure/clojure | |
BOOT_VERSION=2.7.1 | |
BOOT_CLOJURE_VERSION=1.7.0 | |
~ $ lein version |
$ babel-node | |
> const foo = [] | |
'use strict' | |
> foo.push(1, 2, 3) | |
3 | |
> foo | |
[ 1, 2, 3 ] | |
> Object.freeze(foo) | |
[ 1, 2, 3 ] | |
> foo.push(4, 5, 6) |
$ lein new reagent test | |
Exception in thread "main" java.lang.ExceptionInInitializerError | |
at java.lang.Class.forName0(Native Method) | |
at java.lang.Class.forName(Class.java:348) | |
at clojure.lang.RT.loadClassForName(RT.java:2093) | |
at clojure.lang.RT.load(RT.java:430) | |
at clojure.lang.RT.load(RT.java:411) | |
at clojure.core$load$fn__5066.invoke(core.clj:5641) | |
at clojure.core$load.doInvoke(core.clj:5640) | |
at clojure.lang.RestFn.invoke(RestFn.java:408) |
programmer fi: Finnish (programmer) |
$ cargo build --verbose | |
Fresh pkg-config v0.1.2 | |
Compiling sdl2-sys v0.0.0 (file:///Users/akotkavu/src/rust-sdl2) | |
Running `rustc /Users/akotkavu/src/rust-sdl2/sdl2-sys/src/lib.rs --crate-name sdl2-sys --crate-type lib -g -C metadata=8c1af9e4e302d67b -C extra-filename=-8c1af9e4e302d67b --out-dir /Users/akotkavu/src/rust-sdl2/target/deps --emit=dep-info,link -L /Users/akotkavu/src/rust-sdl2/target/deps -L /Users/akotkavu/src/rust-sdl2/target/deps -L /usr/local/lib -l SDL2` | |
/Users/akotkavu/src/rust-sdl2/sdl2-sys/src/lib.rs:1:1: 1:1 error: multiple dylib candidates for `std` found | |
/Users/akotkavu/src/rust-sdl2/sdl2-sys/src/lib.rs:1 #![allow(non_camel_case_types)] | |
^ | |
/Users/akotkavu/src/rust-sdl2/sdl2-sys/src/lib.rs:1:1: 1:1 note: candidate #1: /usr/local/lib/libstd-4e7c5e5c.dylib | |
/Users/akotkavu/src/rust-sdl2/sdl2-sys/src/lib.rs:1 #![allow(non_camel_case_types)] | |
^ |
Process: mooneye-gb [60045] | |
Path: /Users/USER/*/mooneye-gb | |
Identifier: mooneye-gb | |
Version: 0 | |
Code Type: X86-64 (Native) | |
Parent Process: zsh [46215] | |
Responsible: iTerm [46210] | |
User ID: 501 | |
Date/Time: 2014-12-27 01:38:19.684 +0200 |
$ npm install -g wscat | |
$ wscat -c ws://echo.websocket.org -p 8 | |
connected (press CTRL+C to quit) | |
> hi there | |
< hi there | |
> are you a happy parrot? | |
< are you a happy parrot? |
I hereby claim:
To claim this, I am signing this object:
(ns eagleflow.posts | |
(:require [markdown.core :refer [md-to-html-string]] | |
[net.cgrand.enlive-html :as html])) | |
(defn single | |
"Return a single post from the file system as HTML." | |
[date title] | |
(md-to-html-string (slurp (str "posts/" date "-" title ".md")))) | |
(html/deftemplate post (clojure.java.io/file "public/index.html") |
#!/usr/bin/env python | |
""" | |
Place this script in the same directory as cardxml0.unity3d, which can be | |
found under Hearthstone data files. Then chmod a+x and run it. | |
See https://eagleflow.fi/posts/2014-07-19/hearthstone-cards for more details. | |
""" | |
import re |