(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| #! /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' |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| 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 |
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")
| ;; list the packages you want | |
| (setq package-list '(org | |
| pkg-info | |
| dash | |
| molokai-theme | |
| solarized-theme | |
| htmlize | |
| helm | |
| helm-ls-git | |
| helm-ls-hg |