Why I Do NOT Ever Want To Write Yet Another Web Framework

Author: , December 30th, 2010

Any attempt to write yet another web framework would be an utter waste of time and effort. There are some significantly well-developed and well-supported Open-Source frameworks that would make any singular effort moot. Recent project efforts have taught me valuable lessons about trying to roll one’s own system. Much better to rely upon the many […]

Zoooooooooooooom

Author: , May 14th, 2010

That is what our new code engine is doing…

Another Glorious Spring Day

Author: , April 22nd, 2010

The past few days have seen some of the best improvements in my PERL coding skills in years. Thank you Jeremy and Carolyn for the chance to work with you on these projects! Today’s views from my office window:

Eureka!!

Author: , April 20th, 2010

Just had a major coding epiphany! Just getting a handle on self. Connecting the dots is fun!

How to Send Email in Perl the Easy Way

Author: , December 18th, 2009

[perl] use strict; use Email::Sender::Simple qw(sendmail); use Email::Simple; use Email::Simple::Creator; my $email = Email::Simple->create( header => [ To => ‘"Eric" <eric@example_human.com>’, From => ‘"Quota Monitor" <quotamon@example_web_server.com>’, Subject => "Automated Message from QuotaMon", ], body => "User foo is over quota\n", ); sendmail($email); [/perl]