Trac: Emptying a Wiki Database
A quick bit of shell magic to empty a Trac wiki database in a freshly installed Trac environment.
In this example /var/www/html/trac is assumed to be the Trac environment you created with trac-admin.
$ for page in `trac-admin /var/www/html/trac wiki list | cut -d' ' -f1 | grep "^[A-Z]" | grep -v "Title"`; do trac-admin /var/www/html/trac wiki remove $page; done;
;)
The Cutler.sg Newsletter
Weekly notes on AI, engineering leadership, and building in Singapore. No fluff.
A brief history of Red Hat, Fedora and CentOS
Confused by Red Hat's Linux ecosystem? Learn how RHEL, Fedora, and CentOS evolved from one distribution into three distinct solutions for different needs.
Patch to mod_evasive to Enhance Reporting Capabilities
Enhance Apache's mod_evasive security module with detailed environment variable reporting similar to mod_security for better attack analysis
Two Papers That Puncture the Hype
One paper shows frontier models degrade as context grows — even on trivial tasks. The other shows reasoning models hit a wall and think less as problems get harder. Read carefully, both point at the same engineering response.