Developed by Josh Kill (joshkill.com)
Light text on dark background...primarily designed for front-end web work - html/css/js
Preview here: <a href="http://joshkill.squarespace.com/storage/kolor-preview.png">http://joshkill.squarespace.com/storage/kolor-preview.png</a>
function f($x)
{
return sqrt(abs($x)) + 5*pow($x, 3);
}
$items = array();
for ($i = 0; $i < 11; $i++)
{
$items[] = $_GET[$i];
}
$items = array_reverse($items);
foreach ($items as $x)
{
$y = f($x);
if ($y > 400)
echo $x." TOO LARGE";
else
echo $x." ".$y;
}
?>
Much better preview here: http://joshkill.squarespace.com/storage/kolor-preview.png
> Josh Killthat link is broken (bad comment link parser)...see if this works:
http://joshkill.squarespace.com/storage/kolor-preview.png
Josh Kill