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 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
| ;;;; numbat-mode.el --- Major mode (non-tree-sitter) for modifying numbat source code | |
| ;;; Currently this just provides basic syntax highlihgting. | |
| ;;; Hooks are provided here to allow users to add extra functionality later, | |
| ;;; and those may be rolled in at a later time. | |
| ;;; Code: | |
| ;; allow users to have hooks with this mode | |
| (defvar numbat-mode-hook nil "Hook run after `numbat-mode'.") |
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
| (define-derived-mode numbat-ts-mode prog-mode "Numbat[ts]" | |
| "Major mode for editing Numbat source code wtih tree-sitter." | |
| (setq-local font-lock-defaults nil) | |
| (when (treesit-ready-p 'numbat) | |
| (treesit-parser-create 'numbat) | |
| (numbat-ts-setup))) | |
| (defun numbat-ts-setup () | |
| "Set up treesit for numbat-ts-mode" | |
| (setq-local treesit-font-lock-feature-list |
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
| from enum import Enum | |
| import yaml | |
| import pytesseract | |
| import re | |
| import io | |
| import os | |
| from PIL import Image | |
| import subprocess | |
| def clipboard(): |
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 | - | - | - | - | |
|---|---|---|---|---|---|
| 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 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
| #!/usr/sbin/perl | |
| use strict; | |
| use warnings; | |
| use Image::Magick; | |
| use POSIX "strftime"; | |
| binmode STDIN, ":utf8"; | |
| binmode STDOUT, ":utf8"; |
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
| ;;; 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) |
NewerOlder