Oscar’s Multi-Monitor taskBar.
Superb in what is says – adds an independent taskbar to each monitor in a multimonitor setup.
Worth the download.
The website is up, and running on a brand new OS – Ubuntu 9.04 Server. Supercool to configure, has pre-configured LAMP, OpenSSH out-of-the-box.
Using the UFW was too easy than messing with iptables, or routing.
Feeling great having refreshed up my home server with a mature OS.
I came across an interesting cron issue recently. The requirement was to run a job every _first_ Sunday at 12:00PM of each month.
After searching across various sites, skimming through cron manpages, I finally found the following one-liner
0 0 1-7 * 0 <user> <job>
Can you believe this simple solution? The reasoning is that Sun will be between 1 to 7th of each month. Once a Sun comes, the job will execute between 1st and 7th just once. After that any further Sundays will have a date greater than 7, and thus never execute!
Sometimes, the simplest solution is the most elegant. BTW, I had read about many other complicated solutions, such as having your own logic to determine the day, apple script, bash script solutions. I was about to give up, when I hit the jackpot! 😀