Skip to content

Instantly share code, notes, and snippets.

View rfdickerson's full-sized avatar
:octocat:
Reticulating splines

Robert F. Dickerson rfdickerson

:octocat:
Reticulating splines
View GitHub Profile
#!/bin/sh
set -e
if [ -z "${CONFIGURATION}" ]; then
CONFIGURATION=debug
fi
# Create the development toolchain.
PLATFORM_KEY=linux-x86_64
@staltz
staltz / introrx.md
Last active May 3, 2024 13:00
The introduction to Reactive Programming you've been missing
@simonista
simonista / .vimrc
Last active May 1, 2024 19:47
A basic .vimrc file that will serve as a good template on which to build.
" Don't try to be vi compatible
set nocompatible
" Helps force plugins to load correctly when it is turned back on below
filetype off
" TODO: Load plugins here (pathogen or vundle)
" Turn on syntax highlighting
syntax on