The four are unrelated but they are in Ùzje (or close enough). One is in a big name agency (Pfoŋlojbit), another is in a smaller agency (Delfizero),
This file contains 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 | - | - | - | - | |
---|---|---|---|---|---|
0.50 | LV | 2 | - | - | |
2.00 | T | 5 | - | - | |
4.00 | T | 5 | - | maj | |
6.3 | LVII | 1 | - | maj | |
7.0 | LVII | 1 | - | - | |
7.3 | T | 1 | - | - | |
7.8 | III | 1 | - | - | |
8.3 | V | 1 | - | - | |
8.93 | UT | 1 | - | - |
Rule zero applies for any item not stated here.
The board is a 7 × 7 square board. It is rotated 45° to ease discussion of the movement of the pieces.
- Capital letters
- black (note opposite convention from normal)
- Little letters
- white (see above)
- Small capitals
- red
This file contains 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
#!/usr/sbin/perl | |
use strict; | |
use warnings; | |
use Image::Magick; | |
use POSIX "strftime"; | |
binmode STDIN, ":utf8"; | |
binmode STDOUT, ":utf8"; |
This file contains 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
;;; The actual function itself. It's pretty trivial. | |
(defun get-clock-string-or-nothing () | |
"Return the bare clock string, or NIL if there is no clock running." | |
(when (org-clock-is-active) | |
(format "%s,%s" (org-duration-from-minutes (org-clock-get-clocked-time)) | |
org-clock-heading))) | |
;;; Now the rest... | |
(require 'dbus) |
This file contains 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
;; n.b. do not set the number of days to be above 14, | |
;; as that is the point when archiving kicks in | |
;; and so the dates are not accurate. | |
(let* ((days* (if (boundp 'days) days 14)) | |
(cutoff (* days* 24 3600)) ; Days in seconds | |
(cutoff* (/ cutoff 60)) ; and in minutes | |
(fmt "%.2f") | |
(cutoff-time (time-add (current-time) (- cutoff))) | |
(dat ()) | |
(grand-total 0) |
This file contains 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
7177. « ledger-test % ledger -b 2019-01-01 -e 2019-01-07 -f thing.ledger bal Ice | |
1.17h Ice | |
7178. « ledger-test % ledger --budget -b 2019-01-01 -e 2019-01-07 -f thing.ledger bal Ice | |
1.17h | |
-30.0m Ice | |
7179. « ledger-test % ledger -b 2019-01-01 -e 2019-01-07 -f thing.ledger bal Fire | |
$10 Fire | |
7180. « ledger-test % ledger --budget -b 2019-01-01 -e 2019-01-07 -f thing.ledger bal Fire | |
$-90 Fire | |
NewerOlder