2013-06-23 22:57:28 -04:00

49 lines
2.6 KiB
HTML

{% extends "base.html" %}
{% block title %} | About{% endblock %}
{% block nav-about %} class="selected" {% endblock %}
{% block extrastyle %}<link rel="stylesheet" href="{{ STATIC_URL }}css/about.css" type="text/css" media="screen" />{% endblock %}
{% block main %}
<img id="me" src="{{ STATIC_URL }}img/ian.jpg" alt="Picture of Ian Naval" />
<section id="skills">
<h3>Skills</h3>
<h4>General Programming</h4>
<ul>
<li>I specialize in clean, well-documented and efficient code.</li>
<li>I work quickly.</li>
<li>I am great at collaborating with other developers and have made contributions to the open-source community.</li>
<li>I am proficient in Java, Javascript, Python, HTML5, CSS3, Ruby, PHP, SQL, and C++.</li>
<li>I have years of experience with Linux and UNIX-based Web servers.</li>
</ul>
<h4>Web</h4>
<ul>
<li>My primary expertise in back-end Web development is with the Django Python framework.</li>
<li>I am comfortable working with multiple programming languages.</li>
<li>I always write <a href="http://validator.w3.org/check?uri=http%3A%2F%2Fianonavy.com%2F">valid HTML</a> and <a href="http://jigsaw.w3.org/css-validator/validator?uri=http%3A%2F%2Fwww.ianonavy.com%2Fstatic%2Fcss%2Fstyle.css&profile=css3&usermedium=all&warning=1&vextwarning=">CSS</a>.</li>
</ul>
<h4>Android</h4>
<ul>
<li>I write code that takes is very DRY and takes advantage of Java's Object-Oriented structure.</li>
<li>My XML layouts are functional, simple and effective.</li>
<li>I optimize my apps for compatibility with multiple devices.</li>
</ul>
<h4>Administrative</h4>
<ul>
<li>I own any problems that may arise and am very driven to resolve them as quickly as possible.</li>
<li>I configure Web servers from scratch.</li>
<li>I am paranoid about database backups.</li>
<li>I love optimizing processes on VPSes for speed and storage efficiency.</li>
<li>I hate repetitive tasks and write scripts to solve many problems.</li>
</ul>
</section>
<section id="about-me">
<h3>About Me</h3>
<p>My name is Ian. I make things with computers. Sometimes you'll find me
doing various other activities like playing the piano or ukulele, but more
often then not I am sitting in front of a screen working on my long list
of projects. Hope to see you around the Web.</p>
</section>
{% endblock main %}