Black Bean Crostini
River Levels Widget v.1.2.2 available

The RiverLevels widget provides an easy way to monitor the amount of water flowing in your favorite streams and rivers right from your Dashboard. The RiverLevels widget is of particular interest to whitewater kayakers and canoeists. Once any United States Geological Survey (USGS) stream-gauge station is selected, it is automatically…
Mission-Style Bookshelf
Git Tip: Grouping feature-branch commits when merging.
Mirroring a Subversion repository on Github
Bittersweet Falls

A hundred yards from the aptly-named Bittersweet Falls Road, the Beaver Brook cascades over a formation of marble and dolomite to create a beautiful 18 foot cascade. Above Bittersweet Falls, the Beaver Brook cuts a deep ravine through layers of black slate. The gorge can be difficult to traverse without…
BASH tip: Top web pages
Here is a quick command to generate a list of the top pages in the Apache web-server’s access log: gawk ‘{ print $7}’ /var/log/httpd/access_log | sort | uniq -c | sort -nr | head -n 20 Parts of the command explained: gawk ‘{ print $7}’ — return only the 7th…
Adding reverse-proxy caching to PHP applications
Note: This is a cross-post of documentation I am writing about Lazy Sessions. Why use reverse-proxy caching? For most public-facing web applications, the significant majority of their traffic is anonymous, non-authenticated users. Even with a variety of internal data-cache mechanisms and other good optimizations, a large amount of code execution…