Skip to content

Instantly share code, notes, and snippets.

View isoraqathedh's full-sized avatar

isoraqathedh

View GitHub Profile
@isoraqathedh
isoraqathedh / numbat-mode.el
Created April 27, 2026 09:35
Numbat mode (no tree-sitter)
;;;; 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'.")
@isoraqathedh
isoraqathedh / numbat-ts-mode.el
Created April 7, 2026 07:59
Numbat mode for Emacs
(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
from enum import Enum
import yaml
import pytesseract
import re
import io
import os
from PIL import Image
import subprocess
def clipboard():
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 - -

Unnamed vTuber story

A story of four vtubers through their journey into the astoundingly dualist showbiz industry that is vtubing.

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),

Octovexillology I – Motivation & Origins

Try for Yuri Chess

Rule zero applies for any item not stated here.

Setup

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
@isoraqathedh
isoraqathedh / mkimg.pl
Last active May 5, 2022 12:50
Collect your wordle clones into one single image for easy posting.
#!/usr/sbin/perl
use strict;
use warnings;
use Image::Magick;
use POSIX "strftime";
binmode STDIN, ":utf8";
binmode STDOUT, ":utf8";
@isoraqathedh
isoraqathedh / README.org
Last active May 30, 2021 21:29
The infobox environment and an example

infobox

This is a LaTeX package that allows authors to create informational boxes

@isoraqathedh
isoraqathedh / dbus-org-clock.el
Last active March 6, 2020 15:48
Let's see how much code is needed to get this function exposed via dbus.
;;; 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)