New Site Address! http://blogs.msdn.com/b/jonathan_wise/

16Jan/090

Expression Blend (and other Expression Products) in a VM

Expression Blend doesn't work properly in a typical VMWare 6.* environment. Some people report lock-ups, I just get a garbled screen. Fortunately, the fix is easy: disable 3D graphics acceleration in the VM Settings...

vmsettings

Via this guy...

16Jan/090

Automating an Apple TV with Cron

Copy and enable Cron from 10.4.

Schedule Cron jobs using crontab at the command line. Use Ctrl+D to exit crontab once all your jobs are created.

Examples:

Restart the AppleTV at 8:10am every morning (say, to re-establish network connections with computers that were off during the night):

10 8 * * * sudo /sbin/reboot

Shutdown the AppleTV at 1:00am every morning:

0 1 * * * sudo /sbin/shutdown -h now

You'll need to enable the frontrow account to use sudo without a password.

Tagged as: , , No Comments