- Subscribe and get the new articles every now and then directly in your reader — I recommend using Google Reader
The 140 Characters Webapp Challenge Awards!
Read comments ‣ (4)
written by Marek Foss

After the final wrap-up of The Challenge, I gave you 4 weeks to vote. A lot of votes have been casted on different contenders. Big thanks to all who participated! Today I closed the voting and summed up the points. Here are the results.
The winner is

Fabien with a PHP web framework in 131 chars of PHP:
require __DIR__.’/c.php’;
if (!is_callable($c = @$_GET[‘c’] ?: function() { echo ‘Woah!’; }))
throw new Exception(‘Error’);
$c();
Homepage: http://www.twitto.org/
2nd place goes to

Isaac Van Name and his Micro-Twitter in 154 chars of PHP:
<form><input name=“a”><input type=“submit” value=“send”/></form>
<?php
if($_GET[‘a’]){
$q=fopen(‘micro.php’,‘a’);
fwrite($q,$_GET[‘a’].’<hr>’);
fclose($q);
}
?>
3rd place goes to

Keenora and his JPG resizer in 186 chars of PHP:
<?header(‘Content-type:’); list($w,$h)=getimagesize($_GET[a]); $b=imagecreatetruecolor($w/2,$h/2); imagecopyresized($b,imagecreatefromjpeg($_GET[a]),0,0,0,0,$w/2,$h/2,$w,$h); imagejpeg($b)?>
Jury pick

Hartog and the copy of Twitto.org web framework in 111 chars of Perl:
use CGI’:all’; ($a,$b)=path_info=~/.([^\/]+).(.*)/; eval"use $a”; print header.(!$@&&$a->can($b)?$a->$b():“no go”)
Votes distribution
As you can see, the majority of votes went to the winners, although 2nd and 3rd place had a close battle for quite some time. At the same time Twitto was out of reach.
Thank you to all of the awesome participants of 2009 edition of The 140 Characters Webapp Challenge. Thanks to all who voted and commented! It was an exciting event. And those who didn’t make it this time — follow this blog, and see you all next year!
Big thanks to Psychotic_Carp for the superb pixel art trophy icons!
Headline image golden guy by LuMaxArt
Comments
hehe twitto rules the world :D
i’m now migratting my symfony apps to twitto…
Congrats to all the winners ! And also kudos to Marek Foss for running this challenge. It feels good knowing that Marek was inspired in part to run challenge after he saw this tweet by me on Twitter : http://bit.ly/6qxt
Over 140 other characters for twitter.
—————————————————————————————
$c=$_GET[‘c’];$a=$_GET[‘a’];if(@include_once(‘c/’.$c.’.php’)){$c=new$c;if(method_exists($c,$a))$c->$a();else die(“A !f”);}else die(“C !f”);
Congrats to all the winners! Although I gotta say that I’m proud to finaly quit twitter. I no longer feel the need to spend 4 hour a day twitting (well I do but I try not to do it).


