-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
124 lines (105 loc) · 3.74 KB
/
index.html
File metadata and controls
124 lines (105 loc) · 3.74 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
---
---
<!doctype html>
<html lang="en">
<head>
{% include innerHead.html %}
<title>{{ site.title }}</title>
<link rel="stylesheet" href="/css/index.css">
</head>
<body>
{% include header.html %}
<section id="projects">
<div class="content_container">
<h2>Projects</h2>
<ul>
<li><a href="http://riptidesquids.com/">Website</a> for my Splatoon team (code <a href="https://github.com/calamarcat/riptide-website">here</a>)</li>
<li><a href="https://github.com/calamarcat/overlayprjct">Custom stream overlays</a></li>
</ul>
</div>
</section>
<div class="divider"></div>
<!-- <section id="work_experience">
<div class="content_container">
<h2>Work Experience</h2>
<h3><a href="https://www.tiny.cloud">Tiny</a></h3>
<ul>
<li>Software Engineer: Dec 2017 - now</li>
<li>Part-time QA Engineer: July 2017 - Nov 2017</li>
<li>QA Intern: Jun 2016 - Jun 2017</li>
</ul>
<h3>University of Queensland</h3>
<ul>
<li>Course tutor: Semester 2 2016 & 2017</li>
</ul>
<h3><a href="https://bettacarhire.com/">Betta Car & Ute Hire</a></h3>
<ul>
<li>Front desk customer service: Nov 2014 - Jul 2016</li>
</ul>
</div>
</section>
<div class="divider"></div>
<section id="education">
<div class="content_container">
<h2>Education</h2>
<h3>Bachelor of Engineering (Honours): 2013 - Jul 2017</h3>
<ul>
<li>University of Queensland</li>
<li>Major: Software Engineering</li>
<li>Thesis: “Analysing K-means” – an investigation of the K-means clustering algorithm and how the properties of the problems on which it’s run can affect its performance and results.</li>
<li>Electives: web design and development, networks, security, AI and machine learning.</li>
</ul>
<h3>Bachelor of Arts: 2016</h3>
<ul>
<li>University of Queensland</li>
<li>Major: Psychology</li>
</ul>
</div>
</section> -->
<!-- <div class="divider"></div> -->
<section id="post_list">
<div class="content_container">
<h2>Blog posts</h2>
<!-- <p>Occasionally, I write blog posts. Mostly for practice, sometimes for work or other things. The following is a (hopefully) complete list.</p> -->
<ul class="posts-list">
{% for post in paginator.posts %}
<li>
<p class="post-date">{{ post.date | date: "%-d %B %Y" }}</p>
{% if post.external_url %}
<h3><a class="external-url" rel="canonical" href="{{ post.external_url }}">{{ post.title }}</a></h3>
<p class="external-source">Published by <a href="{{ post.external_site_url }}">{{ post.external_site }}</a></p>
{% else %}
<h3><a rel="canonical" href="{{ post.url }}">{{ post.title }}</a></h3>
{% endif %}
</li>
{% endfor %}
</ul>
{% if paginator.total_pages > 1 %}
<div class="pagination">
<p>
{% if paginator.previous_page %}
<a class="pagination-skipper" href="{{ paginator.previous_page_path | relative_url }}">« Prev</a>
{% else %}
<span class="pagination-skipper">« Prev</span>
{% endif %}
{% for page in (1..paginator.total_pages) %}
{% if page == paginator.page %}
{{ page }}
{% elsif page == 1 %}
<a href="/">{{ page }}</a>
{% else %}
<a href="{{ site.paginate_path | relative_url | replace: ':num', page }}">{{ page }}</a>
{% endif %}
{% endfor %}
{% if paginator.next_page %}
<a class="pagination-skipper" href="{{ paginator.next_page_path | relative_url }}">Next »</a>
{% else %}
<span class="pagination-skipper">Next »</span>
{% endif %}
</p>
</div>
{% endif %}
</div>
</section>
</body>
</html>