2011.08.10 in #3Hunting a Padre bug
Sebastian Willing explains binary searching through SVN revisions in order to find a bug which is known as bisect in the git world.
2011.11.10 in #16Intelligent caching for all time statistics
Sebastian Willing show how to use Memcached to keep already computed data in memory in a way that survives even a restart to the web-server.
2011.12.04 in #19Memcached statistics (stats command)
Sebastian Willing collected some information on how to get statistics from memcached using Cache::Memcached.
2011.12.13 in #21When slower is better: Secure your passwords
Sebastian Willing (Sewi) explains how to store passwords in a very secure way and how to maintain or even increase the security level while cracking passwords is getting faster and faster.
2012.01.05 in #24Hunting down a memory leak
Sebastian Willing (Sewi) takes us on a tour of a simple looking Perl code that had a memory leak and shows us how to eliminate that.
2012.02.24 in #31Think looping
Frequent updates to a database and frequent opening of a file can be very time consuming. Sebastian Willing (Sewi) shows how he made his code much faster by some caching and by trading accuracy in the database, for speed.
2012.04.30 in #41Creating a crossword puzzle
Using Perl and some other glue Sebastian Willing explains how to create a crossword puzzle in German. I guess you could apply the same method in other languages as well.
2012.05.15 in #43Setting up Gearman
Gearman is a Job server originally written in Perl (though it also has a C and a Java implementation now). Sebastian Willing started a series writing about it.
2013.01.11 in #77Everybody is doing it
Sebastian Willing got frustrated (again?) by the people who think Perl is dead.
2013.04.03 in #89Connecting to Sybase ASE with Perl's DBI
A simple explanation by Sebastian Willing on how to connect to the Sybase ASE database from Perl using the DBI module.
2013.07.04 in #102Setting up MovableType on a basic webspace
Would you like to have a Perl-based blog engine? Sebastian Willing shares his experience setting up MovableType on a shared hosting account.
2013.07.09 in #103Retry failed Gearman jobs
Gearman manages your computational tasks and hands them out to available workers. It can do it in a fault tolerant way. Sebastian Willing is showing us how to retry failed jobs.
2013.07.15 in #104Converting a WordPress theme to MovableType
WordPress has tons of plugins and themes and what not. Many of these are open source, so if you have some other blogging engine, for example Movable Type, or even a simple, static 'blog engine', you could convert the nice WordPress themes to one of your own. This is what Sebastian Willing has been describing in his recent blog entry.
2013.12.02 in #124Data::ObjectDriver and JOIN
Sebastian Willing is experimenting with Data::ObjectDriver, and finds that the way it deals with foreign table joins is pretty darn good.