Kolor

Download

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>


<?php

	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;
	}
	
?>

that link is broken (bad comment link parser)...see if this works:

http://joshkill.squarespace.com/storage/kolor-preview.png

Josh Kill

Comment