blob: 18924c7083bbf75ba3bfe804b3141c167607c79d (
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
|
{% extends "base.html" %}
{% block title %}lemon's site{% endblock title %}
{% block content %}
<h1 class="title">lemon's site</h1>
Hi, I'm lemon (she/her). I like compilers, tool-assisted speedruns and low level
programming among other things. I do stuff sometimes. Occasionally I might
share some of that stuff here.
<h3>links</h3>
<ul>
<li><a href="/mips.html">web MIPS assembler/disassembler (incomplete)</a>
<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 (old projects)</a>
</ul>
<h3>contact</h3>
<ul>
<!--li><strong>lemon#8558</strong> on discord </li--!>
<li><img src="/asset/mailto.png" width="128" height="21">
</ul>
<hr>
<img src="/asset/nvim.png">
<img src="/asset/lynx.png">
<img src="/asset/linux.png">
{% endblock content %}
|