Skip to content

Instantly share code, notes, and snippets.

View ajm113's full-sized avatar
😀

Andrew McRobb ajm113

😀
View GitHub Profile
@ajm113
ajm113 / Dockerfile
Created November 9, 2017 00:25
Simple Erlang/Rebar3 Dockerfile Container Configuration
############################################################
# Dockerfile BASE for Erlang and Rebar3
############################################################
FROM alpine:3.6
MAINTAINER Andrew McRobb
# Include important deps.
RUN apk update && apk add --no-cache \
@ajm113
ajm113 / .vimrc
Created May 8, 2017 10:41
My .vimrc!
syntax on
set noswapfile
set backspace=indent,eol,start
set number
set incsearch
set hlsearch
set ignorecase
@ajm113
ajm113 / ackermannFunction.go
Created June 13, 2016 01:33
Ackermann Function In Go Lang
/**
Ackermann Function in Go!
@see https://en.wikipedia.org/wiki/Ackermann_function
@author Andrew McRobb
*/
package main