124 projects tagged "BSD Revised"
EventedObject is a simplistic yet highly useful Perl base class that allows you to attach event callbacks to an object (also known as a blessed hash reference) and then fire events on that object. Event fires are much like method calls. However, there can be many handlers, many return values, and many responses rather than just one of each. EventedObject is designed to be highly extensible and features callback priorities, dynamic adding and removing of callbacks, and more. It provides a whole new style of objective and event-driven programming in Perl.
While the OSS community converges to Git, with the Python bunch branching to Mercurial, the typical workplace is stuck with Subversion. The author's DVCS of choice is Fossil. These are all fine projects, with their own pros and cons, but what you usually want is just a tool to store your code tree snapshot in a safe place. They can all do that, but their language differs a tiny bit. repo brings them all down to the common root. It works by detecting which VCS are you using right now and calling that, applying necessary subcommand translation if needed.
x11vis is a visual and interactive tool for debugging X11 clients. Unlike other tools such as xtrace, it displays human readable IDs on all requests, no matter at which point in time the information becomes available. To help you cope with large amounts of data, it displays only the most important information by default, automatically folds sequences of boring requests, allows you to filter by packet type or client, and provides markers for navigation. Instead of assigning a number to each connection, it displays the command line with which that client was started.
PerlDaemon is a minimal Unix daemon framework. It can be programmed in Perl to perform any task. It supports automatic daemonizing, logging and logrotate support, clean shutdown, and PID files (including a check on startup). It's easy to configure and easy to extend by customizing the daemonloop subroutine.