45 lines
1.5 KiB
HTML
45 lines
1.5 KiB
HTML
---
|
|
layout: page
|
|
title: Projects
|
|
permalink: /projects/
|
|
|
|
projects:
|
|
|
|
- title: How2Pizza
|
|
image: how2pizza.png
|
|
description: Simple tool to help large groups of friends order pizza.
|
|
url: http://how2pizza.com
|
|
|
|
- title: Potato Ipsum
|
|
image: potatoipsum.png
|
|
description: Lorem ipsum for potato fans.
|
|
url: http://potatoipsum.com
|
|
|
|
- title: SMS Fixer
|
|
image: sms-fixer.png
|
|
description: Simple recovery script and Web service to convert Google Voice HTML logs into the Android app <a href="https://play.google.com/store/apps/details?id=com.riteshsahu.SMSBackupRestore&hl=en">SMS Backup & Restore</a>.
|
|
url: http://sms-fixer.ianonavy.com
|
|
|
|
- title: ACM Linux Mirrors
|
|
image: mirrors.png
|
|
description: Friends at WPI wanted to <code>apt-get upgrade</code> and <code>pacman -Syu</code> at lightning speed, so I made it happen.
|
|
url: http://mirrors.acm.wpi.edu/
|
|
|
|
- title: MathHammer 40k
|
|
image: mathhammer.png
|
|
description: Damage stats calculator app for WarHammer 40k I made in high school for my physics teacher. My first paid gig!
|
|
url: https://play.google.com/store/apps/details?id=com.mathhammer40k.mathhammer&hl=en
|
|
|
|
---
|
|
{% for project in page.projects %}
|
|
<div class="projects-project">
|
|
<h2>{{ project.title }}</h2>
|
|
|
|
<a href="{{ project.url }}"><img class="projects-screenshot" src="{{ "/img/" | append: project.image | prepend: site.baseurl }}"></a>
|
|
|
|
<p>{{ project.description }}</p>
|
|
|
|
<p><a href="{{ project.url }}">Go to site →</a></p>
|
|
</div>
|
|
{% endfor %}
|