Handy Perl Modules
Just a list - starting very short - keeping an eye on modules I've found that I've found useful.
IO::File::AtomicChange
Solving the problem of writing to files safely - after a nasty bug caused by trying to write to a state file during a disk-full incident. Splendid - it works! (IoFileAtomicChangeTest)Capture::Tiny
Super-simple way to capture STDOUT/STDERR from internal code blocks, XS and external program calls. (Even easier than IPC::Open3)
And not so handy...
IO::AtomicFile
Solving the problem of writing to files safely - after a nasty bug caused by trying to write to a state file during a disk-full incident.
BUT - I've found that aborting causes the changes to be written and "appending" doesn't, it overwrites the file as new.