Evolved Simplicity
A reoccuring theme that arises is the return to the beginning, a cycle of sorts. Children want to be adults, and then when they become adults, they return to wanting to being children again. This is not to say the middle part is completely baggage, in some ways it’s needed to get to the state of what I call “Evolved Simplicity”.
#The Journey
- Start from a place of naivety
- Get entangled with complexity
- Return to simplicty with evolved context
An experience I’ve had with evolved simplicity is with the web. I’ve dabbled in web development before and it’s very stuck in the intermediate phase of Evolved Simplicy. The SPA phase where everything should be offloaded to the client in javascript because things wil be faster since there will be no more network requests. Well, it turns out the cost of parsing Javascript is prohibitively more expensive. There are times when you want to offload everything to the client, like if you’re making games, but for simple web pages like blog posts, the benefits are very neligable if not detriemental. See The Costs Of Javascript for more details.
#Back to plain html
We’ve all been given the advice to keep some form of a wiki, but most of them are written in PHP, with the exception of a slight few. For a while now I’ve used TiddlyWiki for blogging. It stores everything in one giant index.html file, which makes it very portable because you just drag 1 file to a flash drive and you’re done, however this does not scale well because there’s no segmentation. Everyone must download every post you have ever written even if they’re not going to read them. What I need from a wiki is a version history, fast load times, and a good markup language. Using git solves one of those problems but what about the other two?
#Pollen and Racket(Lisp)
I discovered Pollen! A programmable markup language. It’s awesome.
(2^ 4)
expands and renders nicely as 24 , which is a pain to write in plain html:
<span>2<sup>4</sup></span>
Generating tables turns from this:
<table>
<caption>4 in binary</caption>
<thead><tr><th>8</th><th>4</th><th>2</th><th>1</th></tr></thead>
<tbody><tr><td>0</td><td>1</td><td>0</td><td>0</td></tr></tbody>
</table>
to this function call:(deci->bin-table 4 4 #:caption “4 in binary”)
8 | 4 | 2 | 1 |
---|---|---|---|
0 | 1 | 0 | 0 |
It automates all the boring stuff with ease! The web should have adopted a LISP. All the problems of web development, e.g templating, css frameworks, frontend frameworks, etc, exist in part because HTML and CSS are not programmable. Rather than have the web split into 3 languages, we could have a unified extensible LISP. Today we suffer the consequences of Netscape culting around Java and rejecting Eichs idea for a LISP. A lot of people have misgivings about LISP and it’s parentheses, but I’d rather LISP than install and deal with ton of frameworks.
P.S: If you MUST use a frontend framework, use Svelte, because it has significantly less overhead by way of not having to diff everything using a virtual dom like react or vue does. Note that I am cheating a little by using prism.js for syntax highlighting because I don’t want to deal with dependencies.
Similar posts:
There’s more to mathematics than rigour and proofs
Jonathan Blow - How to program independent games - CSUA Speech