(require '[clojure.string :as str]
'[clojure.core.match :refer [match]]
'[clojure.math.combinatorics :as combo])
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
EL=`cat <<EL | |
(load-theme 'modus-vivendi) | |
(setq initial-scratch-message nil) | |
;; Squelch the creation of .#<filename> files | |
(setq create-lockfiles nil) | |
;; Emacs auto-backups feel nicer when they collect in my ~/.emacs.d/backups |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(fn assert-tail [tail-sym body] | |
"Asserts that the passed in tail-sym function is a tail-call position of the | |
passed-in body. | |
Throws an error if it is in a position to be returned or if the function is | |
situated to be called from a position other than the tail of the passed-in | |
body." | |
(fn last-arg? [form i] | |
(= (- (length form) 1) i)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
extra-keys = [ \ | |
['Z', '7', 'UP', '9', '\\\''], \ | |
['TAB', 'LEFT', '5', 'RIGHT', '*'], \ | |
['=', '1', 'DOWN', '3', 'ENTER'] \ | |
] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <errno.h> | |
#include <stdlib.h> | |
#include <unistd.h> | |
#include <asm-generic/unistd.h> | |
#include <sys/procfs.h> | |
#include <sys/ptrace.h> | |
#include <sys/types.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
KEYMAP=$1 | |
if [ -z "$KEYMAP" ]; then | |
KEYMAP=default | |
fi | |
if [ -f "$HOME/.termux/keymaps/$KEYMAP.properties" ]; then | |
echo "Setting keymap: $KEYMAP" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
extra-keys = [ \ | |
['ESC', '7', 'UP', '9', '\\\''], \ | |
['TAB', 'LEFT', '5', 'RIGHT', '*'], \ | |
['=', '1', 'DOWN', '3', 'ENTER'] \ | |
] |
NewerOlder