blob: 1bc446a357083b44c9a0216592dc28f1349c32e9 (
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
43
44
45
|
{% extends "base.html" %}
{% block title %}lemon's site{% endblock title %}
{% block content %}
<h1 class="title">lemon's site</h1>
<img width="256" src="/asset/moth.png">
<p>
I like tool-assisted speedruns, cats, compilers, bugs, ...
</p>
<h3>links</h3>
<ul>
<li><a href="/w">writings/blog</a> (last updated on {{ get_section(path="w/_index.md") | get(key="pages") | map(attribute="date") | first }})
<li><a href="https://git.sr.ht/~lsof/">git</a>
<li><img src="/asset/link.png" width="18" height="23">
<li><a href="https://www.youtube.com/channel/UCoZ8JbiXlq_Zh0DGvaGRTDQ">youtube</a>
<li><a href="https://github.com/lemon32767">github (abandoned)</a>
</ul>
<h3>projects</h3>
<ul>
<li><a href="https://github.com/lemon32767/ccleste/">ccleste</a> - a C source port of the PICO-8 game Celeste
<li><a href="/mips.html">web MIPS assembler/disassembler</a> (incomplete)
<li><a href="https://git.sr.ht/~lsof/cff">cff</a> - experimental systems programming language
<!--li><a href="https://git.sr.ht/~lsof/pez">pez</a> - toy embeddable programming language<--!>
</ul>
<h3>contact</h3>
<ul>
<li><code>lemon·#4203</code> on discord
<li>you can email me to say hi at <code>lsof@mailbox.org</code>
</ul>
<hr>
<img src="/asset/pommy.png">
<img src="/asset/nvim.png">
<img src="/asset/lynx.png">
<img src="/asset/linux.png">
{% endblock content %}
|