Espresso X

Download

I really liked Cobalt theme in Textmate. Appears the download for the ported theme here is dead. So here is one that is similar to Cobalt


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

Comment