Back to View Source Code
<?php

/* experiments.php
 *
 * A list of links to things I have made.
 */

$page_title 'Experiments';
include 
'include/header.php';

?>

<p>
    A list of little things I made.
</p>

<ul>
    <li>
        <a href="/experiments/picturebook"><strong>Picture Book</strong></a><br />
        Make your own picture book! Write a &lt;50-sentence story and it'll use Google Images to make it into a picture book.
    </li>
    <li>
        <a href="/experiments/parenthelighter"><strong>Parenthelighter</strong></a><br />
        Parentheses got you beat? Highlight them once and for all.
    </li>
    <li>
        <a href="http://gist.github.com/177904"><strong>Phi</strong></a><br />
        Look up PHP function synopses from the command line.
    </li>
    <li>
        <a href="http://github.com/yjerem/estate"><strong>estate</strong></a><br />
        Creates a static html archive that mixes external links with internal mirroring.  I use it for <a href="/why">_why's Estate</a>.
    </li>
    <li>
        <a href="http://github.com/yjerem/tetrellis"><strong>tetrellis</strong></a><br />
        Tetris with an antagonist.
    </li>
    <li>
        <a href="http://github.com/yjerem/EbFFA"><strong>EbFFA</strong></a><br />
        a musical plaything, a melodious calculator from the stranded gull underneath it all
    </li>
  <li>
    <a href="http://github.com/yjerem/4917"><strong>4917</strong></a><br />
    assembler & emulator for a simple machine
  </li>
</ul>

<?php

include 'include/footer.php';

?>