Skip to content

Instantly share code, notes, and snippets.

#! /usr/bin/env bash
# BuildCompatible: KitCreator
version='0.11.0'
url="https://github.com/RubyLane/rl_json/archive/refs/tags/${version}.tar.gz"
sha256='5f711c3196da5acec01bb24a76404a7f25f5f2f4b939aaa874bd7a7e94e482e1'
@mpcjanssen
mpcjanssen / introrx.md
Created July 6, 2018 18:44 — forked from staltz/introrx.md
The introduction to Reactive Programming you've been missing
@mpcjanssen
mpcjanssen / introrx.md
Created July 6, 2018 18:44 — forked from staltz/introrx.md
The introduction to Reactive Programming you've been missing
implicit class BetterDate(x: Date){
def yesterday: Date = {
val y = new Date(x.getTime)
y.setDate(-1)
y
}
}
val today = new Date()
val yesterday: Date = today.yesterday
@mpcjanssen
mpcjanssen / lisp-setup.md
Last active August 8, 2023 12:21 — forked from tshatrov/lisp-setup.md
Setting up Common Lisp on Windows 7

1. Install a Common Lisp implementation, or several of them

2. Install Emacs. Official GNU Emacs Windows binaries should work: http://ftp.gnu.org/gnu/emacs/windows/

3. Create a directory where you will store your Lisp projects (you could use Quicklisp's default one but screw that, "c:/lisp" is better than "c:/users/<username>/quicklisp/local-projects")

@mpcjanssen
mpcjanssen / gist:c504d3d9fda9ad341fde
Created October 25, 2014 14:33
Autoload packages
;; list the packages you want
(setq package-list '(org
pkg-info
dash
molokai-theme
solarized-theme
htmlize
helm
helm-ls-git
helm-ls-hg