blob: 7f6399a7b7493ceb8f7da5b4c36d7d608eec1307 (
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
|
{{ define "body" }}
<p>
This here's my little corner of the web, where I publish
<a href="{{ BlogURL "posts" }}">posts</a>
about projects I'm working on and things that interest me (which you can
<a href="{{ BlogURL "follow" }}">follow</a>,
if you like).
</p>
<h2>Social</h2>
<p>Feel free to hmu over email or Signal if you'd like to get in touch.</p>
<ul>
<li>Email: <a href="mailto:me@mediocregopher.com">me@mediocregopher.com</a></li>
<li><a href="{{ StaticURL "me@mediocregopher.com.gpg" }}">GPG Key</a></li>
<li>Signal:
<a href="https://signal.me/#eu/x5psueq2E3WfFwwEgFDoWeSZx9k4u8vFBaiMSa4Lo0cvluHkb-dIpJp1wfdJsdie">
mediocregopher.01
</a>
</li>
</ul>
<h2>Dev</h2>
<ul>
<li>
<a href="https://dev.mediocregopher.com">dev.mediocregopher.com</a> is
for open-source projects I still care about.
<ul>
<li>
<a href="https://dev.mediocregopher.com/mediocre-blog/">mediocre-blog</a>
is the CMS I designed from scratch to run this site.
</li>
</ul>
</li>
<li>
<a href="https://github.com/mediocregopher">My GitHub</a> is a graveyard
of abandonware, with one exception.
<ul>
<li>
<a href="https://github.com/mediocregopher/radix">radix</a> is for
using redis with go.
</li>
</ul>
</li>
<li><a href="https://code.betamike.com/micropelago">micropelago</a> implements the foundation of a community infrastucture.</li>
</ul>
<h2>Other</h2>
<ul>
<li><a href="https://bgpicciano.com">bgpicciano.com</a> is my cover site/resume.</li>
<li><a href="https://news.cryptic.io">Cryptic News</a> aggregates interesting blogs.</li>
<li><a href="https://opensea.io/mediocregopher?tab=created">OpenSea</a> lists some NFTs I've made.</li>
</ul>
<hr/>
<p>I'm not affiliated with these, but they're worth listing.</p>
<ul>
<li><a href="https://search.marginalia.nu/">Marginalia</a> reminds me of the old internet.</li>
<li><a href="https://www.nts.live/">NTS</a> is a great internet radio station.</li>
<li><a href="https://yamakan.place/palestine/#">Radio alHara</a> is another great internet radio station.</li>
</ul>
{{ template "gemini-cta.html" . }}
{{ end }}
{{ template "base.html" . }}
|