Use it with KindleGen
kindlegen dic.opf
Use it with KindleGen
kindlegen dic.opf
;;; https://lists.ourproject.org/pipermail/implementations-list/2012-February/001513.html | |
(add-to-list 'load-path "~/programmingStuff/evil/") | |
(require 'evil) | |
;; remove all keybindings from insert-state keymap | |
(setcdr evil-insert-state-map nil) | |
;; but [escape] should switch back to normal state | |
(define-key evil-insert-state-map [escape] 'evil-normal-state) | |
(define-key evil-insert-state-map (kbd "jk") 'evil-normal-state) | |
(define-key evil-insert-state-map (kbd "jj") 'insert-jay) |
/** | |
* <b>Fixed Point Combinator is:</b> | |
* Y = λf.(λx.f (x x)) (λx.f (x x)) | |
* | |
* <b>Proof of correctness:</b> | |
* Y g = (λf . (λx . f (x x)) (λx . f (x x))) g (by definition of Y) | |
* = (λx . g (x x)) (λx . g (x x)) (β-reduction of λf: applied main function to g) | |
* = (λy . g (y y)) (λx . g (x x)) (α-conversion: renamed bound variable) | |
* = g ((λx . g (x x)) (λx . g (x x))) (β-reduction of λy: applied left function to right function) | |
* = g (Y g) (by second equality) [1] |
(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.
This is unmaintained, please visit Ben-PH/spacemacs-cheatsheet
SPC q q
- quitSPC w /
- split window verticallySPC w
- - split window horizontallySPC 1
- switch to window 1SPC 2
- switch to window 2SPC w c
- delete current windowNever touch your local /etc/hosts file in OS X again. Setup your computer to work with *.test domains, e.g. project.test, awesome.test and so on, without having to add to your hosts file each time.
#!/usr/bin/env bash | |
# Wineskin Engine Builder v1.0: create Wineskin engines from winehq.org | |
set -e | |
if [[ $# -ne 3 ]]; then | |
echo "usage: wsenginebuilder version branch arch" >&2 | |
echo "example 1: wsenginebuilder 3.11 devel osx64" >&2 | |
echo "example 2: wsenginebuilder 3.0.1 stable osx" >&2 | |
exit 1 |
// Sample logging-quickstart writes a log entry to Stackdriver Logging. | |
package main | |
import ( | |
"context" | |
"fmt" | |
"log" | |
"net/http" | |
"os" | |
"strings" |