Skip to content

Instantly share code, notes, and snippets.

Religion

Grade (1) inhabitants generally involve themselves in a semi-public display of polytheism. The total number of gods is overwhelming, perhaps more than three unique gods per individual worshipper, and as times go on the number inflates greatly. In a sense they are more like cards in a trading card game where you can make up your own cards, than objects of worship in their own right. Were there any other religions that have been believed in Grade (1),

@isoraqathedh
isoraqathedh / genned.tex
Created December 26, 2017 16:39
Generated text
%% Creator: Inkscape inkscape 0.91, www.inkscape.org
%% PDF/EPS/PS + LaTeX output extension by Johan Engelen, 2010
%% Accompanies image file 'phosym.pdf' (pdf, eps, ps)
%%
%% To include the image in your LaTeX document, write
%% \input{<filename>.pdf_tex}
%% instead of
%% \includegraphics{<filename>.pdf}
%% To scale the image, write
%% \def\svgwidth{<desired width>}
@isoraqathedh
isoraqathedh / clementine-i3.sh
Created December 5, 2017 17:45
A display script for Clementine.
#!/bin/bash
# prints now playing from Clementine
# Clicking on the button changes the output.
display=/tmp/clnp
case $BLOCK_BUTTON in
1) # Left click cycles the display
case "$(< $display)" in
"title") echo "album" > $display;;
"album") echo "artist" > $display;;
@isoraqathedh
isoraqathedh / custom.el
Created December 3, 2017 19:11
Spolsky white line fix
;; Add these faces to custom. I don't know how to set them otherwise.
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(window-divider ((t (:foreground "#161A1F"))))
'(window-divider-first-pixel ((t (:foreground "#161A1F"))))
'(window-divider-last-pixel ((t (:foreground "gray20")))))
@isoraqathedh
isoraqathedh / disp.py
Created December 3, 2017 14:38
Sun clock
#!/usr/bin/python3
import os
import sys
import ephem
import datetime
import pytz
import colorlover as colours
import yaml
import math
@isoraqathedh
isoraqathedh / Drsk-pages.txt
Created September 30, 2017 00:29
Filenames of all Drsk pages
./Book 23/01a-Dr-Introduction.jpg
./Book 23/02a-Dr-Inventory and syllable structure.jpg
./Book 23/03a-Dr-Vowel insertion.jpg
./Book 23/04a-Dr-Phonoruns.jpg
./Book 23/05a-Dr-Orthography.jpg
./Book 23/06a-Dr-Phonotactics.jpg
./Book 23/10a-Dr-Noun morphology.jpg
./Book 23/11a-Dr-Toponymy.jpg
./Book 23/12a-Dr-Digits.jpg
./Book 23/13a-Dr-CAT SMAJ and CAT STAR.jpg
@isoraqathedh
isoraqathedh / disp.sh
Created July 26, 2017 13:44
Reddit Karma Printer (+ coloured deltas)
#!/bin/zsh
here=$(dirname ${(%):-%N})
case $BLOCK_BUTTON in
1)
sed -i -n '2p;2p' $here/cache.conf;;
4)
i3-msg 'workspace prev_on_output'
exit 1
;;
#!/usr/bin/python3
import configparser
import os
try:
configFile = os.path.dirname(os.path.realpath(__file__)) + '/warnings.conf'
except NameError:
configFile = os.path.dirname(os.path.realpath(
"~/.config/i3blocks/blocks/wwarn")) + '/warnings.conf'
@isoraqathedh
isoraqathedh / get.lisp
Created July 16, 2017 16:49
Grab currency information.
#!/usr/local/bin/sbcl --script
(load "~/quicklisp/setup.lisp")
(ql:quickload '(:yason :drakma) :silent t)
(let ((drakma:*text-content-types* `(("application" . "json")
("text" . "json")
,@drakma:*text-content-types*))
(yason:*parse-object-as* :alist))
(with-open-file (s (make-pathname :name "cache"
:type "conf"
#!/bin/zsh
lunar |
sed -n "s/[^0-9]/ /g;4p;6p" |
xargs |
awk '{printf "%c%c%02i.%02i%c\n", $5 + 64, $6 + 64, $2, $3, $12 + 96}'
# Format: < Format string > < Year > <M> <D> < Hour >