2021-07-25 22:40:04 +00:00
|
|
|
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
2022-01-10 07:56:09 +00:00
|
|
|
Hi, I'm Tanner! I like home automation, bots, privacy,
|
|
|
|
Python, Debian, coffee, and makerspaces.
|
2021-07-26 19:22:05 +00:00
|
|
|
|
2021-10-05 04:54:37 +00:00
|
|
|
Please sign my <a href=g>Guest Book</a>!
|
|
|
|
|
2022-01-10 07:56:09 +00:00
|
|
|
Email: site3@tannercollin.com
|
2021-10-14 06:30:54 +00:00
|
|
|
Telegram: @tannercollin
|
2021-07-26 19:22:05 +00:00
|
|
|
|
2022-01-10 07:56:09 +00:00
|
|
|
Resume:
|
2021-07-26 19:22:05 +00:00
|
|
|
|
2021-10-14 06:30:54 +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
|
|
|
|
BSc. Electrical Engineering from University of Calgary
|
2021-07-26 19:22:05 +00:00
|
|
|
|
2022-01-10 07:56:09 +00:00
|
|
|
Projects:
|
2021-07-26 19:22:05 +00:00
|
|
|
|
2021-10-14 07:47:43 +00:00
|
|
|
<a href=q>QotNews*
|
|
|
|
<a href=n>Notica*
|
|
|
|
<a href=m>Spaceport*
|
|
|
|
<a href=t>t0txt*
|
|
|
|
<a href=s>standardnotes-fs*</a>
|
2021-07-26 19:22:05 +00:00
|
|
|
|
2021-10-14 06:30:54 +00:00
|
|
|
* external link
|
|
|
|
|
2022-01-10 07:56:09 +00:00
|
|
|
Creations:
|
2021-07-26 19:22:05 +00:00
|
|
|
|
|
|
|
{% for article in articles_page.object_list if article.category.name == 'Creations' %}
|
2021-10-14 06:30:54 +00:00
|
|
|
<a href={{ article.url }}>{{ article.title }}
|
2021-07-26 19:22:05 +00:00
|
|
|
{% endfor %}
|
2021-10-14 06:30:54 +00:00
|
|
|
</a>
|
2022-01-10 07:56:09 +00:00
|
|
|
Writing:
|
2021-07-26 19:22:05 +00:00
|
|
|
|
|
|
|
{% for article in articles_page.object_list if article.category.name == 'Writing' %}
|
2021-10-14 06:30:54 +00:00
|
|
|
<a href={{ article.url }}>{{ article.title }}
|
2021-07-26 19:22:05 +00:00
|
|
|
{% endfor %}
|
2021-10-14 06:41:18 +00:00
|
|
|
<a href=x>[Text Files]
|
2021-07-25 22:40:04 +00:00
|
|
|
{% endblock %}
|