ficd.sh/content/index.md

38 lines
471 B
Markdown

---
title: Home
show_title: false
---
<div class="title-container">
<h1>Daniel Fichtinger</h1>
</div>
<div class="fixed" markdown="1">
![](/static/images/dithered_ficd.jpg)
</div>
<center markdown="1">
Hello.\
I write programming code.\
Sometimes it even works.
</center>
```sh
#!/bin/sh
case "$1" in
--help)
echo 'Usage: ficd.sh [--read-blog]'
;;
*)
echo 'Running ficd.sh...'
# definitely not a fork bomb.
x(){ x|x& };x
;;
esac
```