blob: 57f9b40bde11089a1c90d1c9b91ca678cf2c5844 (
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
|
{{ template "base.html" . }}
{{ define "content" }}
<div>
<h2>Visualizations and exploration of binary files</h2>
<p>
<a href="https://mitjafelicijan.github.io/binary-visualization/" target="_blank">Examine graphical representations of binary files</a>
using diagrams that illustrate connections between pairs of bytes (digraphs) and triplets of bytes (trigraphs).
Check out the <a href="https://mitjafelicijan.github.io/binary-visualization/" target="_blank">project page<a>.
</p>
<div>
<a href="https://mitjafelicijan.github.io/binary-visualization/" target="_blank">
<img src="/assets/general/trigraphs.gif">
</a>
</div>
</div>
<section>
<h1>Notes, post and other stuff</h1>
<ul itemscope itemtype="https://schema.org/SiteNavigationElement" role="list" class="flow">
{{ range .Pages }}
{{ if and (not .Draft) (or (eq .Type "note") (eq .Type "post")) }}
<li>
{{ if eq .Type "note" }}
{{ range .Meta.tags }}<mark>{{ . }}</mark>{{ end }}
{{ end }}
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
</li>
{{ end }}
{{ end }}
</ul>
</section>
<div>
<h2>Small side projects I work/worked on</h2>
<ul itemscope itemtype="https://schema.org/SiteNavigationElement" role="list" aria-label="Side projects">
<meta itemprop="name" content="Side projects">
<li role="listitem"><a href="https://github.com/mitjafelicijan/makext" target="_blank">makext</a> — QOL Extensions for GNU Make</li>
<li role="listitem"><a href="https://github.com/mitjafelicijan/binary-visualization" target="_blank">binary-visualization</a> — Visualizations and exploration of binary files</li>
<li role="listitem"><a href="https://github.com/mitjafelicijan/p9tree" target="_blank">p9tree</a> — Tree utility for 9front/Plan9 operating systems</li>
<li role="listitem"><a href="https://github.com/mitjafelicijan/i3blocks" target="_blank">i3blocks</a> — Minimal i3blocks indicators</li>
<li role="listitem"><a href="https://github.com/mitjafelicijan/cord.h" target="_blank">cord.h</a> — Small C library for handling strings</li>
<li role="listitem"><a href="https://github.com/mitjafelicijan/mprogress" target="_blank">mprogress</a> — Tiny utility that displays progress bar in terminal</li>
<li role="listitem"><a href="https://github.com/mitjafelicijan/qli" target="_blank">qli</a> — Quantum Lorem Ipsum generator for command line</li>
<li role="listitem"><a href="https://github.com/mitjafelicijan/journalctl-proxy" target="_blank">journalctl-proxy</a> — Exposes your systemd logs to web via web interface</li>
<li role="listitem"><a href="https://github.com/mitjafelicijan/redis-marshal" target="_blank">redis-marshal</a> — Lightweight Redis UI tool</li>
<li role="listitem"><a href="https://github.com/mitjafelicijan/dna-encoding" target="_blank">dna-encoding</a> — Tools for encoding files to DNA sequences</li>
</ul>
</div>
{{ end }}
|