2021-07-25 22:40:04 +00:00
|
|
|
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
2021-07-26 19:22:05 +00:00
|
|
|
Hi, I'm Tanner! I do firmware and web development in Calgary.
|
|
|
|
|
|
|
|
Contact Info
|
|
|
|
============
|
|
|
|
|
2021-08-20 09:38:28 +00:00
|
|
|
Email: site2@tannercollin.com
|
|
|
|
Telegram: <a href=https://t.me/tannercollin>@tannercollin</a>
|
2021-07-26 19:22:05 +00:00
|
|
|
|
|
|
|
Resume
|
|
|
|
======
|
|
|
|
|
2021-08-20 09:38:28 +00:00
|
|
|
- Firmware Engineer at Cabana Blockchain, 2018-
|
|
|
|
- Lead Hardware Engineer at Critical Control, 2016-2018
|
|
|
|
- Electrical Engineer at Opener Aero, 2016-2016
|
|
|
|
- Electrical Engineer Intern at Pason Systems, 2014-2015
|
2021-07-26 19:22:05 +00:00
|
|
|
- BSc. Electrical Engineering from University of Calgary
|
|
|
|
|
|
|
|
Projects
|
|
|
|
========
|
|
|
|
|
2021-08-20 09:38:28 +00:00
|
|
|
<a href=q>QotNews</a>
|
|
|
|
<a href=n>Notica</a>
|
|
|
|
<a href=m>Spaceport</a>
|
|
|
|
<a href=t>t0txt</a>
|
|
|
|
<a href=s>standardnotes-fs</a>
|
2021-07-26 19:22:05 +00:00
|
|
|
|
|
|
|
Creations
|
|
|
|
=========
|
|
|
|
|
|
|
|
{% for article in articles_page.object_list if article.category.name == 'Creations' %}
|
2021-08-20 09:38:28 +00:00
|
|
|
<a href={{ article.url }}>{{ article.title }}</a>
|
2021-07-26 19:22:05 +00:00
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
Writing
|
|
|
|
=======
|
|
|
|
|
|
|
|
{% for article in articles_page.object_list if article.category.name == 'Writing' %}
|
2021-08-20 09:38:28 +00:00
|
|
|
<a href={{ article.url }}>{{ article.title }}</a>
|
2021-07-26 19:22:05 +00:00
|
|
|
{% endfor %}
|
2021-07-25 22:40:04 +00:00
|
|
|
{% endblock %}
|