summaryrefslogtreecommitdiff
path: root/cont/unihome.html
blob: 953f0dd81fff233a58344ce13e1d47616eba67be (plain)
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
<!--
123456789-223456789-323456789-423456789-523456789-623456789-723456789-8234567890
一二三四-->[TITLE]                                                      [DATE]
--------------------------------------------------------------------------------
[SETTITLE]We Have Unicode at Home
[SETDATE]6-30-2023
Preface
	it's just uses more memory, handwriting in the 70s, arabic/farsi
	terminals, historically never existed an ascii only time. telegram codes
busybox
	bash
	sed
	awk
	grep
	bc
	iconv
	xxd
	read
	sort
	uniq
	cat
tmux
kbd
	console-braille
zpix bdf
	30M
zpix ttf
	4.5MiB
jizji
	1.3M
misaki
	747K
Google
	2.7 MB
LinBiolinumTI.pfb
	860KiB
HanaMinA
	22M,30M
unifont
	11.7MiB
Latex 2.9GiB
cm-super
	57.8MiB
		just european languages + cyrillic
cbfonts
	70.6MiB
ensembl human genome
	4.5GiB
Rant
	Aesthetics vs. Function
	cool-retro-term, pixel fonts, monospace of chinese vs english
	
	

	The text confusion
		In the beginning there was not the command line. There was wall
		paintings bone etc

		Inefficiency
			The only first class data types on a computer are int,
			uint, and float. Why is there not universal way to
			display/store them on posix systems, 256 combos per byte,
			only 9 used, less than 5% efficiency

			HTML v. inefficient, easy to grep kinda 
			Json, v. inefficient

		Data confusion
			IME
			table takes in keypresses, spits out unicode character
				keypresses should be own type, but is ascii,
				what happens when different keyboard layout?

				What happens if typing russiand and want to use
				vim or press C-c?

				Big table, very simple datatype, not first class

				Tree/files, super simple datatype, not first
				class, file argument woes

			Display:
				simply doing an OR required like 3 processes
				because every program required different text
				representation of the same data, even though
				first class data type
				
				no language has first class lexer, closest is
				awk

				bdf file ridiculously inefficient, keywords too
				long, actual data is 2x by hexadec
				representation

				bdf file is just a big table w/ 2d array as
				output , very simple data type, have to do 1000
				conversions for input (decimal codepoint vs
				32bit vs utf-8), and output (2d array of bits vs
				hex representation of the same)

			Big table no way to sort to make more efficient

		Representation
			Forced to represent all out data so that the lowest
			common denominator teletype in 1970s new jersey can
			print it if we were to send it directly over serial
				not just a bash issue: JSON, HTML, PDB, even
				PDF/postscript
			Ascii isn't event text, can't write accents or
			directiona quotes or nn or even a bar over a letter.
			Flipside, nobody who doesn't use posix knows or cares
			what ~ and | are.

			Regex, same basic thing, 30 different variants, because
			forced to represent as text with no specialized symbols

			same with code, every language has its own way of
			representing a code block, none of which are
			particularly legible

			if should be one key press and one byte

		In-band vs out of band
			no universal way to embed data, json has directional
			brackets, backslash hell is the norm, completely
			avoidable, but the text obsession means type info is
			ignored
		guis
			all based off of one dumb xerox experiment
			all have same issues
				lossy data display
				no interop of actual data
				no open loop input
				no way to store input as its own data/scripting
		
			in memory data:
				no interop, spend all your time using framework
				libraries to convert data around. It's not just
				a bash issue

				weird selection of first class data types, why
				is text 1st class and not a mesh or a linked
				list?
Rant
	In the beginning, there was not a command line. In the beginning, there
	was iron oxide pigment on torch lit cave walls, then there were stylus
	indentations on clay, patterns carved on turtle shell, knots
	tied in string, grooves cut in vinyl, and finally discrete states stored
	in a great multitude of mechanisms. The universal datatype is not text,
	it is uint_256, IEEE floating points.