---
layout: default
title: The Paper Pilot
nocard: true
---
Hello!
I'm The Paper Pilot, and I develop free, open source programs and games, using a variety of languages and engines. I'm currently working towards my B.S. in Computer Science, after which I hope to go on to getting a Masters degree, with a focus on Data Science.
{% for post in paginator.posts %}
{{ post.title }}
{{ post.content }}
read more
{{ post.date | date: '%B %d, %Y' }}
{% for tag in post.tags %}
- {{ tag }}
{% endfor %}
{% endfor %}
{% if paginator.total_pages > 1 %}
{% if paginator.previous_page %}
- « Prev
{% endif %}
{% for page in (1..paginator.total_pages) %}
{% if page == paginator.page %}
- {{ page }}
{% elsif page == 1 %}
- {{ page }}
{% else %}
- {{ page }}
{% endif %}
{% endfor %}
{% if paginator.next_page %}
- Next »
{% endif %}
{% endif %}