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
|
{% extends 'base.html' %}
{% block content %}
<!-- Hey, NERD! Don't mess with my HTML source!
-->
<center>
<b>a domain run by an idiot, full of sound and fury, signifying
nothing</b>
<p>-- Shakespeare, probably --</p>
</center>
<p>Welcome to mjfer.net, my space for an email server, organizing some files
and organizing myself.</p>
<h3><b>You can access this site as a hidden service through Tor, here:
<br>
<div class="longboi">
<a href="http://xoq44d2ignfuf4z23nm5oedrjxckxxquxwi4cx3ryi3lenfpmpoegoyd.onion">
xoq44d2ignfuf4z23nm5oedrjxckxxquxwi4cx3ryi3lenfpmpoegoyd.onion
</a>
</div>
</b></h3>
<p>If you're looking to connect professionally, you can check out my resume
<a href="/site/files/RESUME.html">here</a>.
</p>
<p>If you think websites and servers are neat like I do and want to
learn the ins and outs of hosting your own, click
<a href="/site/tutorials/how-to-make-this-site.html">here</a>.
</p>
<p>If you're just here by chance and don't know where you are click
<a href="/site/about/whereami.html">here</a>.
</p>
<p>Otherwise, check out and explore the folders in the navbar above</p>
<h3><b>If you receive any abuse from this domain, it is not from me and
something has gone terribly wrong. Please contact me at
<a href="mailto:abuse@mjfer.net">abuse@mjfer.net</a>
so I can resolve the problem. If you prefer to encrypt your
email, please use <a href="/site/pgp.txt">this key</a>.
</b></h3>
<p><small>I made this site largely to get <i>off</i> social media, but I
do maintain the following profiles. (Icons from: <a href="https://icons.getbootstrap.com/"
target="_blank" rel="noopener noreferrer">bootstrap</a>)
</small></p>
<center>
<a href="https://www.linkedin.com/in/mike-fernez-357878108"
target="_blank" rel="noopener noreferrer"><img
src="/static/linkedin.svg" /></a>
<a href="https://github.com/mjfernez" target="_blank" rel="noopener noreferrer"><img
src="/static/github.svg" /></a>
<br>
Most of what I'm working on (including this site) is kept at
<a href="https://git.mjfer.net" target="_blank" rel="noopener noreferrer">
git.mjfer.net</a>
so you don't require any non-free JS to access it at github.
Use git:// to clone; I couldn't figure out HTTPS with cgit.
Besides, git is faster.
</center>
{% endblock %}
|