monicao
3/5/2013 - 7:10 PM

home.html

<html>
  <head>
    <title>Things Aaron made</title>
    <link rel="stylesheet" type="text/css" href="style.css">
    <link href='http://fonts.googleapis.com/css?family=Sintony' rel='stylesheet' type='text/css'>
  </head>

  <body>
    <nav>
      <ul>
        <li>Home</li>
        <li>Articles</li>
        <li>Open Source Projects</li>
        <li>About Me</li>
      </ul>
    </nav>
    <div class="content">
      <div class="projects">
        <h2>Recent Projects</h2>
        <div class="project">
          <h3><a href="http://github.com/aarongough/flea">Flea</a></h3>
          <p>A programming language written in Ruby, designed as an example of how simple it can be to bootstrap a small Lisp.A programming language written in Ruby, designed as an example of how simple it can be to bootstrap a small Lisp.A programming language written in Ruby, designed as an example of how simple it can be to bootstrap a small Lisp.</p>
        </div>        
        <div class="project">
          <h3><a href="http://github.com/aarongough/sexpistol">Sexpistol</a></h3>
          <p>A fast and versatile S-Expression parser library written in pure Ruby.</p>
        </div>
        <div class="clear"></div>
        <div class="project">
          <h3><a href="http://github.com/aarongough/any-spec">Any-Spec</a></h3>
          <p>An experimental framework that makes writing executable language specifications easy.</p>
        </div>
        <div class="project">
          <h3><a href="http://github.com/aarongough/koi">Koi</a></h3>
          <p>A small programming language designed to teach the basics of programming language design & implementation.</p>
        </div>
        <div class="clear"></div>
      </div>
      <div class="articles">
        <h2>Recent Articles</h2>
      </div>
    </div>
  </body>
</html>