blob: a46712b89b3104cacd064b01d0460a0b3aa23271 (
plain)
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
{{ template "base.html" . }}
{{ define "add-navigation" }}
<nav class="additional">
<a href="#current">current</a>
<a href="#posts">posts</a>
<a href="#notes">notes</a>
<a href="#sideprojects">side projects</a>
</nav>
{{ end }}
{{ define "content" }}
<div>
<p>{{ .Config.Description }}</p>
<h2><a name="current"></a>What I am currently working on</h2>
<p>Semi-live status of things to keep myself honest!</p>
<table>
<thead>
<tr>
<th width="5"></th>
<th>Project name</th>
<th>What is being worked on?</th>
<th>Last update</th>
</tr>
</thead>
<tbody>
<tr>
<td class="pstatus-red" title="Still in initial stage"></td>
<td><a href="https://github.com/mitjafelicijan/moonshine" target="_blank">Moonshine</a></td>
<td>Testing Alpine container, implementing first two rocks.</td>
<td>17th of July, 2023</td>
</tr>
<tr>
<td class="pstatus-green" title="Kinda works"></td>
<td><a href="https://github.com/mitjafelicijan/i3blocks" target="_blank">i3blocks</a></td>
<td>Testing blocks: cpu, ram, disk and nvidia gpu.</td>
<td>12th of July, 2023</td>
</tr>
<tr>
<td class="pstatus-orange" title="Somewhat works"></td>
<td><a href="https://github.com/mitjafelicijan/errand" target="_blank">Errand</a></td>
<td>Working on re-implementating the whole thing in C.</td>
<td>7th of July, 2023</td>
</tr>
<tr>
<td class="pstatus-green" title="Kinda works"></td>
<td><a href="https://github.com/mitjafelicijan/jbmafp" target="_blank">JBMAFP</a></td>
<td>Fixing minor issues and writing docs.</td>
<td>8th of July, 2023</td>
</tr>
<tr>
<td class="pstatus-red" title="Still in initial stage"></td>
<td><a href="https://github.com/mitjafelicijan/marionette" target="_blank">Marionette</a></td>
<td>Implementing HTTP server for viewing reports.</td>
<td>6th of July, 2023</td>
</tr>
</tbody>
</table>
<h2><a name="posts"></a>More long form, ramblings etc</h2>
<ul itemscope itemtype="https://schema.org/SiteNavigationElement" class="list">
<meta itemprop="name" content="Article list">
{{ range .Pages }}
{{ if eq .Type "post" }}
<li><a href="/{{ .RelPermalink }}">{{ .Title }}</a></li>
{{ end }}
{{ end }}
</ul>
<h2><a name="notes"></a>Notes?! Maybe useful</h2>
<h2></h2>
<ul itemscope itemtype="https://schema.org/SiteNavigationElement" class="list">
<meta itemprop="name" content="Note list">
{{ range .Pages }}
{{ if eq .Type "note" }}
<li><a href="/{{ .RelPermalink }}">{{ .Title }}</a></li>
{{ end }}
{{ end }}
</ul>
<h2><a name="sideprojects"></a>Side projects I work/worked on</h2>
<table>
<tbody>
<tr>
<td><a href="https://git.mitjafelicijan.com/cord.h.git/" target="_blank">cord.h</a></td>
<td>Small C library for handling strings</td>
</tr>
<tr>
<td><a href="https://git.mitjafelicijan.com/mprogress.git/" target="_blank">mprogress</a></td>
<td>Tiny utility that displays progress bar in terminal</td>
</tr>
<tr>
<td><a href="https://git.mitjafelicijan.com/journalctl-proxy.git/" target="_blank">journalctl-proxy</a></td>
<td>Exposes your systemd logs to web via web interface</td>
</tr>
<tr>
<td><a href="https://git.mitjafelicijan.com/redis-marshal.git/" target="_blank">redis-marshal</a></td>
<td>Lightweight Redis data exploration tool</td>
</tr>
<tr>
<td><a href="https://git.mitjafelicijan.com/dna-encoding.git/" target="_blank">dna-encoding</a></td>
<td>Tools for encoding files to DNA sequence</td>
</tr>
<tr>
<td><a href="https://git.mitjafelicijan.com/vertex.git/" target="_blank">vertex</a></td>
<td>Create mock API's and add basic logic to simplify prototyping</td>
</tr>
<tr>
<td><a href="https://git.mitjafelicijan.com/scarecrow.git/" target="_blank">scarecrow</a></td>
<td>Minimal configuration reverse proxy</td>
</tr>
</tbody>
</table>
</div>
{{ end }}
|