templates/about.html
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
{{ define "about.html" }}
{{ template "head" . }}
{{ template "nav" . }}
<div id="main">
<h3>about</h3>
<img src="/static/scrombles.png" width="140" alt="pic of a one eyed cat named scrombles">
<pre>
Jes Olson
existential, kind, anxious, mentor,
tea drinker, sweet tooth,
former drug abuser & self harmer,
aimless empath, wanderer, slate cleaner,
reductionist, chaotic instigator
loves
poetry and horror films
smiling and listening
chips & cats & sushi & crepes &
friends & tights & warm summer nights
</pre>
<h3>contact</h3>
<pre>
i'm j3s pretty much everywhere
feel free to talk to me :3
email: <code>j3</code><code>s@c</code><code>3</code><code>f.n</code><code>et</code>
matrix: @j3s:cyberia.club</a>
mastodon: @j3s@merveilles.town
</pre>
<h3>values</h3>
<p>i have some values that i try my best to live by.</p>
<h4>simplicity</h4>
<li>minimal things</li>
<li>that are easy to learn</li>
<li>they exactly fit</li>
<li>whatever they were made for</li>
<li>and nothing more</li>
<h4>maintainability</h4>
<li>easy for one person to service</li>
<li>worked on honestly, in the open</li>
<li>low/no dependencies - especially on people</li>
<h4>speed</h4>
<li>produce quickly</li>
<li>move on from what doesn't work</li>
<li>embrace what does</li>
<li>start over often</li>
<li>fast things feel good</li>
<h4>reliability</h4>
<li>things so simple and focused</li>
<li>they can't help but work correctly</li>
<li>and obviously</li>
<li>every single time</li>
<h4>aesthetic</h4>
<li>white & black</li>
<li>utf8-centric</li>
<li>with emojis</li>
<li>retro and punk like</li>
<li>feels good</li>
<li>raw, existential, and honest</li>
<h4>design to die</h4>
<li>no commitment:</li>
<li>to release patterns</li>
<li>or maintenance</li>
<li>or fixes</li>
<li>or support</li>
<h3>creations</h3>
this page is a showcase for my many creations :3
<h4>pics</h4>
<ul><a href="https://snap.as/j3s">some pics i have taken :3</a></ul>
<h4>handy j3s.sh links</h4>
<ul><a href="/age.html">/age - age encryption tool</a></ul>
<ul><a href="/feeds.html">/feeds - my rss reader</a></ul>
<ul><a href="/ip.html">/ip - get ur public ip</a></ul>
<ul><a href="/travel.html">/travel - my travel checklist</a></ul>
<h4>tools</h4>
<ul><a href="https://github.com/biox/shmoji">shmoji | a little shell-based emoji picker</a></ul>
<ul><a href="https://github.com/biox/pa">pa | a simple shell-based password manager that uses age</a></ul>
<ul><a href="https://git.cyberia.club/cyberia/nekobot">nekobot | 🐱 a little kitty robot for matrix</a></ul>
<ul><a href="https://git.j3s.sh/neoarkbot">neoarkbot | a very funny mumble bot</a></ul>
<ul><a href="https://git.j3s.sh/shitchat">shitchat | the worst chat app on planet earth</a></ul>
<ul><a href="https://git.j3s.sh/jrss">jrss | my personal rss feed reader lmao</a></ul>
<h4>websites</h4>
<ul><a href="https://vore.website">vore.website | an rss/atom feed reader</a></ul>
<ul><a href="https://git.j3s.sh/j3s.sh">j3s.sh | this website</a></ul>
<ul><a href="https://capsul.org">capsul | cyberia.club's VM service</a></ul>
<ul><a href="https://git.j3s.sh/existentialcrisis.sh">existentialcrisis.sh | existential crisis api (defunct due to domain expiry)</a></ul>
<ul><a href="https://git.j3s.sh/poop.is">poop.is | poop-themed link shortener</a> (defunct atm due to domain dispute)</ul>
<h4>misc</h4>
<ul><a href="https://git.j3s.sh/dotfiles">my dotfiles | neurotically curated</a></ul>
<h4>important quotes about me</h4>
<ul><i>the author's projects seem to have a consistent scatalogical theme -some hackernews user</i></ul>
<ul><i>very cute j3s style as always i love the lil ascii snail art -aynish</i></ul>
<ul><i>so energetic now!! love ya jes :3 -ckie</i></ul>
</div>
{{end}}