Skip to content

Instantly share code, notes, and snippets.

View nullstyle's full-sized avatar
💭
There is a Downside.

Scott Fleckenstein nullstyle

💭
There is a Downside.
View GitHub Profile
@nullstyle
nullstyle / atom_clojure_setup.md
Created December 5, 2016 05:21 — forked from jasongilman/atom_clojure_setup.md
This describes how I setup Atom for Clojure Development.

Atom Clojure Setup

This describes how I setup Atom for an ideal Clojure development workflow. This fixes indentation on newlines, handles parentheses, etc. The keybinding settings for enter (in keymap.cson) are important to get proper newlines with indentation at the right level. There are other helpers in init.coffee and keymap.cson that are useful for cutting, copying, pasting, deleting, and indenting Lisp expressions.

Install Atom

Download Atom

The Atom documentation is excellent. It's highly worth reading the flight manual.

@nullstyle
nullstyle / Dockerfile
Created November 17, 2016 17:28 — forked from alexellis/Dockerfile
ZCash Dockerfile - installs and builds ZCash tool and pulls proving cert.
FROM ubuntu:latest
RUN apt-get update -q && apt-get -qy install \
build-essential pkg-config libc6-dev m4 g++-multilib \
autoconf libtool ncurses-dev unzip git python \
zlib1g-dev wget bsdmainutils automake
WORKDIR /root/
RUN git clone https://github.com/zcash/zcash.git
WORKDIR /root/zcash/