blob: 36b828d443c8cb20a5d31e9312a7ad9447b243d0 (
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
|
{{ template "base.html" . }}
{{ define "content" }}
<section>
<h2>Notes / Posts</h2>
<ul class="post-list">
{{ range .Pages }}
{{ if and (not .Draft) (or (eq .Type "note") (eq .Type "post")) }}
<li>
<time datetime="{{ .Created.Format "2006-01-02" }}" class="static-prefix">{{ .Created.Format "2006-01-02" }}</time>
<span>
<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 512 512" style="display: block">
{{ if (eq .Type "note") }}
<path fill="black" fill-rule="evenodd" d="M448 343.045 343.045 448H64V64h384v279.045Zm-42.667-65.712V106.667H106.667v298.666h170.666v-128h128Zm0 42.667H320v85.333h5.333l80-80V320Z"/>
{{ end }}
</svg>
</span>
<span>
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
<span class="tags">
{{ if .Meta.tags }}
{{ range .Meta.tags }}<mark>{{ . }}</mark>{{ end }}
{{ end }}
</span>
</span>
</li>
{{ end }}
{{ end }}
</ul>
</section>
<section class="hide-on-mobile">
<h2>Tools / Experiments</h2>
<table class="normal">
<thead>
<tr>
<th>Title</th>
<th></th>
</tr>
</thead>
<tbody>
<tr>
<td>Visualizations and exploration of binary files</td>
<td class="text-right"><a target="_blank" href="https://mitjafelicijan.github.io/binary-visualization/">https://mitjafelicijan.github.io/binary-visualization/</a></td>
</tr>
<tr>
<td>Easy convert between HEX to RGBA</td>
<td class="text-right"><a target="_blank" href="https://mitjafelicijan.github.io/hextorgba/">https://mitjafelicijan.github.io/hextorgba/</a></td>
</tr>
<tr>
<td>Unicode symbol explorer</td>
<td class="text-right"><a target="_blank" href="https://mitjafelicijan.github.io/symbols/">https://mitjafelicijan.github.io/symbols/</a></td>
</tr>
<tr>
<td>GGUF model list & tools</td>
<td class="text-right"><a target="_blank" href="https://mitjafelicijan.github.io/gguf-list/">https://mitjafelicijan.github.io/gguf-list/</a></td>
</tr>
<tr>
<td>Soundscapes board</td>
<td class="text-right"><a target="_blank" href="https://mitjafelicijan.github.io/soundscapes/">https://mitjafelicijan.github.io/soundscapes/</a></td>
</tr>
<tr>
<td>Maps of DOOM and other well known WADS</td>
<td class="text-right"><a target="_blank" href="https://mitjafelicijan.github.io/mapsofdoom/">https://mitjafelicijan.github.io/mapsofdoom/</a></td>
</tr>
</tbody>
</table>
</section>
{{ end }}
|