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

{% extends "base.html" %}



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



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



{% block content %}

<h4>About Me</h4>

<p>Have you ever looked at the way things are done and just wanted to make it <em>better</em>? I
feel like that all the time. It's not even a matter of introducing something new. The field of
computing is littered with ideas that are well researched, have working prototypes, 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. Expect a bunch
of smaller less useful pieces before I get to the good stuff. But also expect electronics, civics,
foreign languages... basically anything catching my interest about which I can say something data
driven or otherwise interesting.</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 problems. Practical problems.
</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.freenode.net</td>
    </tr>
</table>

{% endblock %}