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/ticket_numberer"><strong>ticket_numberer</strong></a><br />
        Numbers off tickets.  This thing has saved lives, you know.  It's my proudest achievement.
    </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/rusi"><strong>rusi</strong></a><br />
        A horrible abuse of method_missing. Attempts to make unit arithmetic and conversion in Ruby pretty or something.
    </li>
    <li>
        <a href="http://github.com/yjerem/listlace"><strong>listlace</strong></a><br />
        A Shoes music player that lets you tie your own shoelaces, where the shoelaces are your playlists. That's right, build a playlist using all the power and freedom of Ruby.
    </li>
</ul>

<?php

include 'include/footer.php';

?>