blob: 36d2231d306d881784afe9f0f784bd133f4ecac4 (
plain) (
blame)
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
|
html lang="en" {
head { HEAD }
body {
header {
div .head {
h1 {-Blog Posts}
INCLUDE(nav.gsp)
}
figure .quote {
blockquote {
p {=
Object-oriented programming is an exceptionally bad idea which could
only have originated in California.
}
}
figcaption {-Edsgar W. Dijkstra}
}
}
main {
p {=
On this section of the site you will find my blog. Most of what I post
here is related to software-development and -design, although maybe
you’ll find something unrelated on here too.
}
p {-Posts:}
ul {
ARTICLE(termios, {-Reading and Writing Terminal Attributes})
ARTICLE(windowing, {-Application Windowing is Bad})
ARTICLE(extend, {-Extensible Scripting})
ARTICLE(grab, {-Making Grep Better})
ARTICLE(gsp, {-Writing an HTML Preprocessor (feat. Tree-Sitter)})
ARTICLE(nvim-ts, {-Hacking with Tree-Sitter on Neovim})
}
}
footer { FOOT }
}
}
|