2020-05-10 01:36:58 +00:00
{% extends "base.html" %}
2020-09-04 00:40:33 +00:00
{% block head %}
2022-07-15 21:04:24 +00:00
{{ super() }}
2024-09-18 20:45:11 +00:00
< meta name = "description" content = "Hi, I'm Tanner! I like home automation, sensors, bots, Python, Debian, climbing, and makerspaces." / >
< meta name = "summary" content = "Hi, I'm Tanner! I like home automation, sensors, bots, Python, Debian, climbing, and makerspaces." / >
2021-04-09 00:36:39 +00:00
{% endblock %}
2020-05-10 01:36:58 +00:00
{% block content %}
2022-07-15 21:04:24 +00:00
< div class = "content index" >
2022-07-21 21:26:09 +00:00
< p >
2024-09-18 20:45:11 +00:00
Hi, I'm < a href = "/about" > Tanner< / a > ! I like < a href = "/secret-garden" > growing plants< / a > , home automation, < a href = "/sensors" > sensors< / a > , bots, Python, Debian, climbing, and makerspaces.
2022-07-15 21:04:24 +00:00
< / p >
2021-04-28 08:49:34 +00:00
2023-03-02 17:15:42 +00:00
< p >
2024-03-18 23:21:45 +00:00
Email: < a href = "mailto:site@tanner.vc" > site@tanner.vc< / a > < br / >
2023-03-02 17:15:42 +00:00
< / p >
2022-07-21 21:26:09 +00:00
< h2 > Projects< / h2 >
2022-07-15 21:04:24 +00:00
< p >
My main hobby is working on software projects. I typically design websites or
build tools that make my life easier.
< / p >
2024-01-25 23:29:59 +00:00
{% for article in articles_page.object_list|selectattr('category.name', '==', 'Projects') %}
2022-07-15 21:04:24 +00:00
< h3 > < a href = "{{ article.url }}" > {{ article.title }}< / a > < / h3 >
< div class = "summary" >
{{ article.summary }}
< / div >
{% endfor %}
2024-09-28 02:29:03 +00:00
< h3 >
< a class = "external" href = "https://github.com/tannercollin/sharenote-py" target = "_blank" rel = "noreferrer noopener" > sharenote-py< / a >
< / h3 >
< div class = "summary" >
< p > An implementation of the Obsidian Share Note API server in Python.< / p >
< / div >
2022-07-15 21:04:24 +00:00
< h3 >
< a class = "external" href = "https://github.com/tannercollin/standardnotes-fs" target = "_blank" rel = "noreferrer noopener" > standardnotes-fs< / a >
< / h3 >
< div class = "summary" >
< p > A filesystem that mounts your Standard Notes account as a directory of text files that you can edit.< / p >
< / div >
< h2 > Creations< / h2 >
< p > Sometimes I create art or interactive tech.< / p >
{% for article in articles_page.object_list if article.category.name == 'Creations' %}
< h3 > < a href = "{{ article.url }}" > {{ article.title }}< / a > < / h3 >
{% endfor %}
< h2 > Writing< / h2 >
2021-06-16 07:36:09 +00:00
2022-07-15 21:04:24 +00:00
< p > Various articles, mostly about computers.< / p >
2021-06-16 07:36:09 +00:00
2022-07-15 21:04:24 +00:00
{% for article in articles_page.object_list if article.category.name == 'Writing' %}
< h3 > < a href = "{{ article.url }}" > {{ article.title }}< / a > < / h3 >
2021-06-16 07:36:09 +00:00
2022-07-15 21:04:24 +00:00
{% endfor %}
2022-07-21 18:42:26 +00:00
< h2 > Resume< / h2 >
< ul >
< li > Firmware Engineer at < a class = "external" href = "https://cabanablockchain.com" target = "_blank" rel = "noreferrer noopener" > Cabana Blockchain< / a > , 2018– < / li >
< li > Lead Hardware Engineer at < a class = "external" href = "https://criticalcontrol.com/" target = "_blank" rel = "noreferrer noopener" > Critical Control< / a > , 2016– 2018< / li >
2024-12-13 01:22:57 +00:00
< li > Electrical Engineer at < a class = "external" href = "https://pivotal.aero/" target = "_blank" rel = "noreferrer noopener" > Pivotal Aero< / a > , 2016– 2016< / li >
2022-07-21 18:42:26 +00:00
< li > Electrical Engineer Intern at < a class = "external" href = "https://www.pason.com/" target = "_blank" rel = "noreferrer noopener" > Pason Systems< / a > , 2014– 2015< / li >
< li > BSc. Electrical Engineering from University of Calgary< / li >
< / ul >
2021-06-16 07:36:09 +00:00
< / div >
2020-05-10 01:36:58 +00:00
{% endblock %}