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 window
| (ns app.application | |
| (:require | |
| [com.fulcrologic.fulcro.application :as app] | |
| [edn-query-language.core :as eql] | |
| [com.fulcrologic.fulcro.algorithms.tx-processing :as txn] | |
| [promesa.core :as p] | |
| [com.wsscode.pathom3.interface.eql :as p.eql] | |
| [com.wsscode.pathom3.connect.operation :as pco] | |
| [com.wsscode.pathom3.connect.indexes :as pci])) |
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 window| (ns parse.core | |
| (:require [instaparse.core :as insta])) | |
| (def parser | |
| (insta/parser | |
| "sexp = lparen operation rparen | |
| <lparen> = <'('> | |
| <rparen> = <')'> | |
| operation = operator + args | |
| operator = '+' |
| /* | |
| * V4L2 video capture example | |
| * | |
| * This program can be used and distributed without restrictions. | |
| * | |
| * This program is provided with the V4L2 API | |
| * see http://linuxtv.org/docs.php for more information | |
| */ | |
| #include <stdio.h> |