summaryrefslogtreecommitdiff
path: root/project/templates/about.xhtml
blob: a982b0da7e801b0a675742a5cb1c8ecd1007892e (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

{%- extends "base_plain.xhtml" -%}



{%- block title -%}About{%- endblock -%}



{%- block style %}
    <link href="/css/about.css" rel="stylesheet" />
{% endblock -%}



{%- block content %}
<h4>About Me</h4>

<p>Does the massive gap between what is known and what is mainstream bother anyone else? It bothers
me. The field of computing is littered with ideas that are well researched, have working prototypes,
and would be very useful, yet ended up abandoned decades ago for no apparent reason. I expect other
fields are probably similar. One of my goals in life is to reduce this gap between what's known and
what's actually used. Mainly in software development, because that's what I'm most familiar with.
</p>

<p>So this website is primarily about hosting and talking about programming projects. But also
expect electronics, civics, foreign languages, food, videogames... basically anything catching my
interest about which I can say something data driven or otherwise interesting.</p>

<p>Details of where I grew up and whatnot are unimportant, but it is worth noting that in the first
half of 2021 I moved my place of residence from NSW, Australia to the South Island of New Zealand
due to extreme corruption and abuses of power going on in the Australian Federal Government. This
caused this website to go offline for a few months since it was being hosted on a home server at the
time, but it has since been moved to a VPS so that's all fixed now.</p>

<h4>Qualifications</h4>

<ul>
    <li>Bachelor of Computer Science, University of New England, 2011</li>
    <li>Accounts Administration AQF Certificate III, 2016</li>
    <li>Accounting AQF Certificate IV, 2017</li>
    <li>Library and Information Services AQF Certificate IV, 2018</li>
</ul>

<p>In 2012 I almost completed an extra honours year in computer science, before finding out that I'm
really not cut out for research. My mindset is too focused on solving practical problems and my
talent for prose is comparatively not so great.
</p>

<h4>Contact</h4>

<table>
    <tr>
        <td>Email:</td>
        <td>contact@<span style="display:none">REMOVETHIS</span>jedbarber.id.au</td>
    </tr>
    <tr>
        <td>IRC:</td>
        <td>jedb on irc.libera.chat</td>
    </tr>
</table>

<h4>Technical Details</h4>

<p>This website is best viewed with any browser compliant with XHTML 1.1, MathML 2.0, and CSS 3. If
your browser cannot handle those standards, tough. Get a better web browser.</p>

<p>This website will never require any form of Javascript for optimal viewing. The use of
Turing-complete client side scripting in web browsers is an abomination.</p>
{% endblock -%}