Everyone, I created a monster. A user script turning all the numbers on the page into their #Kaktovik numeral representation:

// ==UserScript==
// @name Forced Kaktovik
// @description Turn all the numbers on the page into Kaktovik numerals
// @version 0.0.0
// @author Artyom Bologov
// @include *://*/**
// @run-at document-end
// ==/UserScript==
(function () {
const dig2k = {
0: '𝋀',
1: '𝋁',
2: '𝋂',
3: '𝋃',
4: '𝋄',
5: '𝋅',
6: '𝋆',
7: '𝋇',
8: 'π‹ˆ',
9: '𝋉',
10: 'π‹Š',
11: '𝋋',
12: 'π‹Œ',
13: '𝋍',
14: 'π‹Ž',
15: '𝋏',
16: '𝋐',
17: '𝋑',
18: '𝋒',
19: '𝋓',
}
function toK(num) {
if (typeof num === 'string')
num = parseInt(num)
let kak = ''
do {
const rem = num % 20
kak = dig2k[rem] + kak
num = (num - rem) / 20
} while (num !== 0)
return kak
}
document.body.innerHTML = document.body.innerHTML.replaceAll(/\b[0-9]{1,30}\b/g, toK)
}());

I'm going to run it for a while, until it breaks something important.

#theWorkshop

Do you also sometimes obsessively work towards realizing an idea/project despite it negatively affecting many other aspects of your life for a while? If so, have you found ways to make that burst of creativity more healthy?

#theWorkshop

I've added a Confirm program and a /proc/{pid}/dirty file to read/modify that state. If an external program wants to trigger a save, it can write to that file:

#theWorkshop

so that's *most* of the holes in this part done. still need to attach the Z ballscrew and servo bracket to it

the spindle mounts on a plate that will also have the rails for these bearing blocks, so they don't need to extend down any further than the current z position

(there are two more bearing blocks that go down there but I haven't put them on yet because they cover the screw holes for the other bearing blocks. dependency chains!)

#cnc #theWorkshop

Yaaay! Made time to finish the page ^^!

I am so inconsistent with the shading style XD (when comparing it with other pages)... but meh, I'm still very happy with the result.

https://kokorobot.ca/site/sabotage_study.html

#comics #theWorkshop

this is a demo of a track I'm working on named after the heaviest element

#theWorkshop #drumandbass #musodon #synth #electronicmusic

I have this nice heavy travel bag, but it's short strap makes it hard to carry around when it's full. I'm considering adding shoulder straps. I have a sewing awl, a roll of strong yarn and some basic sewing experience. Before I start, does anyone have tips for me? #theWorkshop

I have wikis in lots of places, and started to lose track, so I'm consolidating everything into https://m15o.net, and started a journal at https://m15o.net/journal.html. I've also added contextual menus for wom:

#theWorkshop

So if I move to #Gregg #shorthand for my writing, #Kaktovik numbers for calculations, start using a Commonplace book and physical #Zettelkasten notes, will I have any chance against digitized workflows’ speed? I actually want to try that life to see how far computerless life can get one.

Spreadsheets on paper anyone? Abstracting numeric operations by remembering the graphics of them (reminds me of the #APL #ACM paper by Iverson?)

#theWorkshop