2016-09-06 16:44:06 -05:00
---
layout: default
title: The Paper Pilot
nocard: true
2018-03-16 11:11:55 -05:00
featured: [Babble Buds]
2016-09-06 16:44:06 -05:00
---
2016-09-06 18:19:50 -05:00
< div class = "card" >
2017-01-11 20:04:47 -06:00
< div class = "card-content" >
< span class = "card-title" > Hello!< / span >
2018-03-16 11:11:55 -05:00
< p > I'm Anthony Lawn, or "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 plan to go on to earning a Masters degree in the same, with a focus on Data Science.< / p >
< p > I really liked playing free online games growing up, but most of those sites have died- Armor games peaked in 2010! I do not believe mobile games have the same effect since you can't develop on a phone. I believe there needs to be a new generation of these kinds of sites, with those kinds of games, to inspire the next generation of game developers and computer scientists. That's why I want to make free online games anyone can play, and see how they work. No credit cards or even admin privileges required. All free, and open source. Enjoy :)< / p >
2017-01-11 20:04:47 -06:00
< / div >
2016-09-06 18:19:50 -05:00
< / div >
2018-03-16 11:11:55 -05:00
< h4 > Active Projects< / h4 >
2017-10-24 19:32:48 -05:00
2017-01-11 20:04:47 -06:00
{% for project in page.featured %}
{% assign post = site.posts | where:"title",project | first %}
2018-03-16 11:11:55 -05:00
< div class = "card" style = "padding-bottom: calc(1rem + 40px);" >
2017-01-11 20:04:47 -06:00
< div class = "card-image" >
< img src = "/assets/banners/{{ post.banner }}.png" >
< span class = "card-title" style = "font-weight: 500;" > {{ project }}< / span >
< / div >
< div class = "card-content" >
{{ post.content }}
< / div >
< div class = "card-action" style = "position: absolute; bottom: 0; width: 100%;" >
< a href = "{{ post.url }}" > read more< / a >
< / div >
< / div >
2016-09-06 16:44:06 -05:00
{% endfor %}
2018-03-16 11:11:55 -05:00
< h4 > Featured Projects< / h4 >
2017-10-24 19:32:48 -05:00
2016-09-06 16:44:06 -05:00
< div class = "card" >
2018-03-16 11:11:55 -05:00
{% assign projects = site.posts | where:"featured","true" %}
{% for project in projects %}
< div class = "accordion" >
{{ project.title }}
{% for tag in project.tags %}
< div class = "chip" > < a href = "/tags/#{{ tag | slugify }}" > {{ tag }} < / a > < / div >
{% endfor %}
< / div >
< div class = "panel" >
< div class = "card-image" >
< img src = "/assets/banners/{{ project.banner }}.png" >
< / div >
< div class = "card-content desc" markdown = "1" >
{{ project.content }} < a href = "{{ project.url }}" > read more< / a >
< / div >
< / div >
{% endfor %}
< / div >
< h4 > All Projects (by tag)< / h4 >
< div class = "card container" >
< div class = "card-content" >
{% assign rawtags = "" %}
{% for post in site.posts %}
{% assign ttags = post.tags | join:'|' | append:'|' %}
{% assign rawtags = rawtags | append:ttags %}
2017-01-11 20:04:47 -06:00
{% endfor %}
2018-03-16 11:11:55 -05:00
{% assign rawtags = rawtags | split:'|' | sort %}
{% assign tags = "" %}
{% for tag in rawtags %}
{% if tag != "" %}
{% if tags == "" %}
{% assign tags = tag | split:'|' %}
{% endif %}
{% unless tags contains tag %}
{% assign tags = tags | join:'|' | append:'|' | append:tag | split:'|' %}
{% endunless %}
{% endif %}
2017-01-11 20:04:47 -06:00
{% endfor %}
2018-03-16 11:11:55 -05:00
{% for tag in tags %}
< div class = "chip" > < a href = "/tags/#{{ tag | slugify }}" > {{ tag }} < / a > < / div >
2016-09-06 19:55:47 -05:00
{% endfor %}
2018-03-16 11:11:55 -05:00
< / div >
2016-09-06 16:44:06 -05:00
< / div >