IlyaM's JournalIlyaM's use Perl JournalExperiences of Using PHP in Large Websites- December 23, 2003 Quite good article which sums up pretty much all of my own complains about PHP: PHP is so inconvinient to use with "separation of presentation from business logic" model. Still possible but what's the point if you can use something better (Perl + TT2 :) if you want to develop using this model. PHP wasn't designed to be modular. No namespaces, everything is builtin, weak mechanisms for code reuse. Ugly builtin APIs. Arguable point probably but my feeling from day one I learned PHP is...http://use.perl.org/~IlyaM/journal/16473?from=rss Yet another go addict- December 1, 2003 If you never played go do not click this link, you still can be saved from this drug :)Just hacked this simple script to poll for my turns to move on http:www.dragongoserver.net. To my taste the script is a bit ugly but it works. !usrbinperl use strict;use warnings; my $go = DragonGoServer->new; $go->login($ENVDRAGONGO_LOGIN, $ENVDRAGONGO_PASSWORD); while(1) $go->read_status; sleep 480; package DragonGoServer; use base qw(WWW::Mechanize); sub redirect_ok 1 ..http://use.perl.org/~IlyaM/journal/16096?from=rss |