minimize website

This commit is contained in:
Rachel Lambda Samuelsson 2022-10-08 15:13:30 +02:00
parent fe6f7ebb58
commit 12ff557e77
6 changed files with 26 additions and 86 deletions

View File

@ -1,15 +0,0 @@
- name: "depsterr.com"
path: "/"
home: true
- name: "about"
path: "/about.html"
home: false
- name: "blog"
path: "/blog.html"
home: false
- name: "feed"
path: "/feed.xml"
home: false

View File

@ -2,15 +2,9 @@
layout: default
---
<header>
<nav>
<ul>
{% for nav in site.data.navs %}
<li {% if nav.home %} class="sitetitle" {% endif %}>
<a class="bigger" href="{{ nav.path }}">{{ nav.name }}</a>
</li>
{% endfor %}
</ul>
</nav>
<nav><ul>
<li class="sitetitle"><a class="bigger" href="/">depsterr.com</a></li>
</nav></ul>
<hr>
</header>
{{ content }}

View File

@ -1,39 +0,0 @@
---
layout: centered
title: "about"
---
# About
## Who am I?
I'm a first year at Chalmers University of Technology in Gothenburg. My interests include mathematics, programming languages, type theory and formal methods. Though I'm not necessarily particularly knowledgable in any of these fields. My dislikes include blockchain, machine learning, and bigots.
I currently mostly write Haskell, though I'd also consider myself proficient at C. I know a fair bit of Agda, Idris, Scheme, and ruby. I'm interested in learning APL, Ocaml, and Coq.
## What have I made?
Here are some of my "complete" projects.
* [bc](https://githug.xyz/depsterr/bc) - A brainfuck compiler for x86_64-linux that collapses consecutive +- and <> operations into single instructions.
* [mpdart](https://githug.xyz/depsterr/mpdart) - A X application which displays the album art of the song/album currently played by mpd.
* [viddl](http://viddl.depsterr.com) - A web interface to youtube-dl
* [kino](http://githug.xyz/depsterr/kino) - A tui client for [yts.mx](https://yts.mx)
* [hm](http://githug.xyz/depsterr/hm) - A hindley-milner type checker
## Contact Info
### Email
Personal email:
```c
int main(int argc, char** argv) {
do {
putchar(*("gcc thiscode.c; ./a.out" + (char)(*++argv)) ^ *(
"\x03\x06\x13\x53\x00\x0d\x1b\x01\x23\x1f\x16\x0a"
"\x5a\x0c\x55\x4d\x4f\x46\x0d\x00\x0c\x1a\x19\x0a"
+ (char)((*argv)++)));
} while ((char)*(--argv + 1) % (3 << 3));
}
```

View File

@ -59,6 +59,10 @@ figcaption {
color: $text;
}
.tcenter {
text-align: center;
}
pre code {
display: block;
}

View File

@ -1,14 +0,0 @@
---
layout: centered
title: "blog"
---
<ul>
{% for post in site.posts %}
<li class="post_listing">
<a class="bit_bigger" href="{{ post.url }}">{{ post.title }}</a>
<span class=right>{{ post.date | date_to_long_string }}</span>
<hr>
<p>{{ post.excerpt }}</p>
</li>
{% endfor %}
</ul>

View File

@ -1,9 +1,19 @@
---
layout: centered
title: "home"
---
<p class="bigger">
{% katexmm %}
A living $\bot$
{% endkatexmm %}
</p>
---
layout: centered
title: "blog"
---
{% katexmm %}
<p class="tcenter">A living $\bot$</p>
{% endkatexmm %}
<ul>
{% for post in site.posts %}
<li class="post_listing">
<a class="bit_bigger" href="{{ post.url }}">{{ post.title }}</a>
<span class="right">{{ post.date | date_to_long_string }}</span>
<hr>
<p>{{ post.excerpt }}</p>
</li>
{% endfor %}
</ul>