2022.08.25 in #579How I use Emacs to write Perl
"I personally like to build my own IDE by bringing together unrelated packages, which is in contrast to full blown IDE packages, such as Devel::PerlySense or Perl::LanguageServer. These packages just aren't for me."
2022.09.08 in #581Create a Daemon in Perl with Schedule::Cron
A daemon is a program that runs in the background for an indefinite period of time. An important daemon on Unix-like operating systems is the cron scheduler that can be configured to perform tasks periodically.
2023.03.23 in #609An Interesting Perl Pattern That Doesn't Work
A pattern that is supposed to use a closure to protect a configuration hash from being mutated by its callers. Unfortunately this pattern has a terrible flaw.