diff options
| author | Mitja Felicijan <mitja.felicijan@gmail.com> | 2023-11-01 22:54:27 +0100 |
|---|---|---|
| committer | Mitja Felicijan <mitja.felicijan@gmail.com> | 2023-11-01 22:54:27 +0100 |
| commit | 2417a6b7603524dc5cd30d29b153f91024b9443d (patch) | |
| tree | 9be5ea8e5baba96dd9159217da6badf6157fb595 /index.html | |
| parent | 89ba3497f07a8ea43d209b583f39fcc286acc923 (diff) | |
| download | mitjafelicijan.com-2417a6b7603524dc5cd30d29b153f91024b9443d.tar.gz | |
Move to Jekyll
Diffstat (limited to 'index.html')
| -rw-r--r-- | index.html | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/index.html b/index.html new file mode 100644 index 0000000..3f7732c --- /dev/null +++ b/index.html | |||
| @@ -0,0 +1,30 @@ | |||
| 1 | --- | ||
| 2 | layout: index | ||
| 3 | --- | ||
| 4 | |||
| 5 | <p>You do not learn by relaxing. You learn by violently assaulting your problem | ||
| 6 | until it surrenders its mysteries to you.</p> | ||
| 7 | |||
| 8 | <h2>Articles, notes, ramblings etc</h2> | ||
| 9 | |||
| 10 | <ul itemscope itemtype="https://schema.org/SiteNavigationElement" role="list" aria-label="Articles" class="list"> | ||
| 11 | <meta itemprop="name" content="Article list"> | ||
| 12 | {% for post in site.posts %} | ||
| 13 | <li> | ||
| 14 | <a href="{{ post.url }}">{{ post.title }}</a> | ||
| 15 | </li> | ||
| 16 | {% endfor %} | ||
| 17 | </ul> | ||
| 18 | |||
| 19 | <h2>Side projects I work/worked on</h2> | ||
| 20 | |||
| 21 | <ul itemscope itemtype="https://schema.org/SiteNavigationElement" role="list" aria-label="Side projects" class="list"> | ||
| 22 | <meta itemprop="name" content="Side projects"> | ||
| 23 | <li role="listitem"><a href="https://git.mitjafelicijan.com/cord.h.git/" target="_blank">cord.h</a> — Small C library for handling strings</li> | ||
| 24 | <li role="listitem"><a href="https://git.mitjafelicijan.com/mprogress.git/" target="_blank">mprogress</a> — Tiny utility that displays progress bar in terminal</li> | ||
| 25 | <li role="listitem"><a href="https://git.mitjafelicijan.com/journalctl-proxy.git/" target="_blank">journalctl-proxy</a> — Exposes your systemd logs to web via web interface</li> | ||
| 26 | <li role="listitem"><a href="https://git.mitjafelicijan.com/redis-marshal.git/" target="_blank">redis-marshal</a> — Lightweight Redis data exploration tool</li> | ||
| 27 | <li role="listitem"><a href="https://git.mitjafelicijan.com/vertex.git/" target="_blank">vertex</a> — Create mock API's and add basic logic to simplify prototyping</li> | ||
| 28 | <li role="listitem"><a href="https://git.mitjafelicijan.com/dna-encoding.git/" target="_blank">dna-encoding</a> — Tools for encoding files to DNA sequence</li> | ||
| 29 | <li role="listitem"><a href="https://git.mitjafelicijan.com/scarecrow.git/" target="_blank">scarecrow</a> — Minimal configuration reverse proxy</li> | ||
| 30 | </ul> | ||
