All prefixed by local leader, which is \ in my case.
:disconnect "cd"
:connect-port-file "cf"
:interrupt "ei"
:last-exception "ex"
:view-source "es"| /* | |
| * John Conway's Game of Life. | |
| * | |
| * This is written for POSIX, using Curses. Resizing of the terminal is not | |
| * supported. | |
| * | |
| * By convention in this program, x is the horizontal coordinate and y is | |
| * vertical. There correspond to the width and height respectively. | |
| * The current generation number is illustrated when show_generation is set. | |
| * |
| (ns db | |
| (:require [tick.alpha.api :as t] | |
| [next.jdbc.result-set :as rs]) | |
| (extend-protocol rs/ReadableColumn | |
| String | |
| (read-column-by-index [val rsmeta idx] | |
| (case (.getColumnTypeName ^ResultSetMetaData rsmeta idx) | |
| "DATE" (t/date val) | |
| "DATETIME" (t/date-time (s/replace val " " "T")) |
| # Hello, and welcome to makefile basics. | |
| # | |
| # You will learn why `make` is so great, and why, despite its "weird" syntax, | |
| # it is actually a highly expressive, efficient, and powerful way to build | |
| # programs. | |
| # | |
| # Once you're done here, go to | |
| # http://www.gnu.org/software/make/manual/make.html | |
| # to learn SOOOO much more. |