1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>2025 december adventure — aaoth.xyz</title>
<link href="style.css" rel="stylesheet"/>
</head>
<body>
<nav>
<ul>
<li><a href="/">home</a></li>
</ul>
</nav>
<section>
<h1>december adventure 2025</h1>
<div class="win">
<p><a href="https://eli.li/december-adventure">december adventure</a>
is a <b>low key</b> thingy by eli oat. the goal is to choose a project
and work on it in a relaxed pace.</p>
<p>in this year's decadv i want to work on a project that
i've been postponing for too long now. i'm fascinated
by scripts and writing aystems, both natural and
constructed. over the years i've accumulated a few
writing systems of my own. sadly, i haven't found the
time to document them, but this year i want to try to
change this.</p>
<p>in particular, i want not only to document each writing
system, but to make a computer font for each one.</p>
</div>
<h2 id="log">the log</h2>
<div class="win">
<p>here will be some log entries, in reverse chronological order.</p>
</div>
<!--
<h3 id="2025-12-xx">2025-12-xx</h3>
<div class="win">
<p>
</p>
</div>
-->
<h3 id="2025-12-03">2025-12-03</h3>
<div class="win">
<p>added pictures for <a href="ukarpanghooth.html">ukarpanghooth</a> script.
i planned to do another one, but didn't manage to find this little trinket i've cut writings on.
</p>
</div>
<h3 id="2025-12-02">2025-12-02</h3>
<div class="win">
<p>today i mostly tweaked the website. decided to make it look
like <a href="http://acme.cat-v.org">acme</a> window in which i'm currently writing this sentence :D</p>
<p>css is a bit questionable, but i'll tweak it more as i go.</p>
<p>as a sidenote, it's a bit challenging to work on something while also having
to go to a $dayjob...</p>
</div>
<h3 id="2025-12-01">2025-12-01</h3>
<div class="win">
<p>started working on <a href="ukarpanghooth.html">ukarpanghooth</a> description. couldn't do images today, sorry...</p>
<p>also came up with a rough scheme on how to make each font:</p>
<ol>
<li>draw each glyph and glyph variant (inkscape)</li>
<li>save glyphs as individual svg files</li>
<li>load glyphs (fontforge)</li>
<li>tweak position and size (fontforge)</li>
<li>export as ufo (fontforge)</li>
<li>add opentype fea</li>
<li>compile (fontmake/fontc)</li>
<li>test (browser, libreoffice, harfbuzz, pango), looping back to 1-7 as needed</li>
<li>verify metadata and upload</li>
</ol>
</div>
</section>
</body>
</html>
|