I hereby claim:
- I am folcon on github.
- I am folcon (https://keybase.io/folcon) on keybase.
- I have a public key whose fingerprint is 02B2 BD89 01C9 B8FA 0284 ED52 06C8 A92E 5296 739B
To claim this, I am signing this object:
| ;; Example from here: https://vega.github.io/vega-lite/docs/repeat.html#multi-series-line-chart-with-repeated-layers | |
| (ns failing-example | |
| (:require [clojure.data.json :as json] | |
| [oz.core :as oz])) | |
| # http://aws.amazon.com/amazon-linux-ami/ | |
| # http://aws.amazon.com/amazon-linux-ami/faqs/ | |
| # Boot up a machine with at least 1.5 to 2 GB Ram | |
| # login | |
| chmod 600 key.pem | |
| ssh -i key.pem ec2-user@ec2...compute.amazonaws.com | |
| # update |
| (ns todo-spec-issue | |
| (:require | |
| [clojure.spec :as s] | |
| [clojure.spec.test :as stest] | |
| [clojure.spec.impl.gen :as gen])) | |
| (s/def ::id int?) | |
| (s/def ::name string?) | |
| (s/def ::todo (s/keys :req-un [::id ::name])) | |
| (s/def ::todos (s/and |
I hereby claim:
To claim this, I am signing this object:
| [CmdletBinding()] | |
| param ( | |
| [Parameter(Position=0, ValueFromPipeLine=$true, Mandatory=$false)] | |
| [string] $ProjectNameToBuild = '', | |
| [Parameter(Mandatory=$false)] | |
| [string] $SolutionDir, | |
| [Parameter(Mandatory=$false)] | |
| [string] $BuildDirectory | |
| ) |
| ====================================== | |
| In/IN | |
| [ an/DT Oct./NNP 19/CD review/NN ] | |
| of/IN ``/`` | |
| [ The/DT Misanthrope/NN ] | |
| ''/'' at/IN |
| (defn get-clipboard [] | |
| (.getSystemClipboard (java.awt.Toolkit/getDefaultToolkit))) | |
| (defn slurp-clipboard [] | |
| (try | |
| (.getTransferData (.getContents (get-clipboard) nil) (java.awt.datatransfer.DataFlavor/stringFlavor)) | |
| (catch java.lang.NullPointerException e nil))) | |
| (defn spit-clipboard [text] | |
| (.setContents (get-clipboard) (java.awt.datatransfer.StringSelection. text) nil)) |