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
## Version 4 UUIDs have the form xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx | |
## where x is any hexadecimal digit and y is one of 8, 9, A, or B | |
## e.g., f47ac10b-58cc-4372-a567-0e02b2c3d479 | |
uuid <- function(uppercase=FALSE) { | |
hex_digits <- c(as.character(0:9), letters[1:6]) | |
hex_digits <- if (uppercase) toupper(hex_digits) else hex_digits | |
y_digits <- hex_digits[9:12] |
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
%!TEX TS-program = xelatex | |
%!TEX encoding = UTF-8 Unicode | |
\documentclass[letterpaper, 12pt]{article} | |
\usepackage{amsmath,amsfonts,amssymb,fontspec} | |
\defaultfontfeatures{Mapping=tex-text} | |
\setmainfont{Adobe Caslon Pro} | |
\title{\Large\sc title goes here} | |
\author{Jonathan M. Sterling} |
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
弟子规 | |
总 叙 信 | |
弟子规 圣人训 首孝弟 次谨信 凡出言 信为先 诈与妄 奚可焉 | |
泛爱众 而亲仁 有余力 则学文 话说多 不如少 惟其是 勿佞巧 | |
奸巧语 秽污词 市井气 切戒之 | |
入 则 孝 见未真 勿轻言 知未的 勿轻传 | |
事非宜 勿轻诺 苟轻诺 进退错 | |
父母呼 应勿缓 父母命 行勿懒 凡道字 重且舒 勿急疾 勿模糊 |
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
(require 'org-zotxt) | |
(require 'org-pdcite) | |
(setq org-zotxt-link-description-style :betterbibtexkey) | |
(org-add-link-type | |
"zotero" | |
(lambda (rest) | |
(zotxt-select-key (substring rest 15))) | |
#'aj/org-zotero-link)) |
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
# 0 is too far from ` ;) | |
set -g base-index 1 | |
# Automatically set window title | |
set-window-option -g automatic-rename on | |
set-option -g set-titles on | |
#set -g default-terminal screen-256color | |
set -g status-keys vi | |
set -g history-limit 10000 |