Log File Roller For Microsoft Windows

A simple log file roller, that rolls/rotates a file from FILENAME.0, to FILENAME.1, onwards to FILENAME.9. If FILENAME.9 exists, it is deleted. Can be used to keep log files small and managable, and delete old ones. The code is not pretty, I could not get it work with loops. If anyone has a better way […]

lotus.com/ldd no more :-(

IBM has removed the old redirect for the Lotus Developer Domain, I only get to Lotus Software using that old URL. Now is time to remember this: http://www.ibm.com/developerworks/lotus

MySQL Commands Cheat Sheet

Another memory-dump. The manual contains more information (that’s a surprise :-). mysql> delete from TABLE where id=X Removes the specified row mysql> describe TABLE; Shows the structure of the specified table mysql> select * from TABLE; Shows all rows in the specified table :-O mysql> show procedure status; Shows stored procedures mysql> show table status; […]

HOWTO: Install Lotus Domino 7.0.2 on Ubuntu 8.0.4

This minimalistic guide shows how to install Domino 7.0.2 on Ubuntu 8.0.4 server or workstation. I did this on Ubuntu 7, but did not write everything down, which meant learning/searching for the information once more. Please let me know if you have better ways of doing this! Create a domino user and group $ sudo […]

MySQL 5 Stored Procedures Cheat Sheet

I will add more when I stumble upon commands I can’t remember the syntax of. To list all stored procedures: mysql> SHOW PROCEDURE STATUS; Example output (with cropped dates and times for readable table): Db Name Type Definer Modified Created Security_type Comment mydb store_user PROCEDURE root 2007-0.. 2007-0.. DEFINER mydb store_cart PROCEDURE root 2007-0.. 2007-0.. […]