Browse by Category "Software"

Restarting a crashed Apple Remote Desktop

Sep 16th, 2005   6:37 pm

Using VNC from a Windows box, I sometimes find that Apple Remote Desktop (ARD) crashes, and I can’t reconnect. So, I came across a nugget[*] that restarts ARD for me, so that I can reconnect.
Read More…

6 Creative Audigy 2 Platinum driver issues on Windows XP

Jun 9th, 2005   12:24 pm

So the problem was that with a fresh install of Windows XP Service Pack 2, the Audigy software was installing but failing to work properly after install. Using the original Installation CD, it would go through the install just fine, but on reboot, trying to open any of the Audigy applications (such as Speaker Calibration, EAX Console) would result in an error hinting at installation / hardware recognition issues. For example “Surround Mixer” “Unable to load needed components”. Diagnostics was failing all bar DirectSound 3D.
Read More…

Quicktime 7 for Windows

Jun 7th, 2005   3:11 pm

So I downloaded the public preview, and I have to say it’s pretty impressive indeed. I only had a quick toy around with the Apple HD Gallery samples.. but the difference (over their regular movie trailer downloads, say) is pretty amazing. File size is quite respectable too. I just wonder how good streaming is going to be.

Issue with window icon and system variables, when launching CygWin with a keyboard shortcut key

May 17th, 2005   10:27 am

The scenario is this. I have a Microsoft Natural Pro keyboard (to encourage me to type better, but we all know the concept, in itself, is ridiculous, let alone the practicing of it). I’ve redefined the Back key (meant to be used with a web browser) to launch a Cygwin shell. All works fine, except 2 things. Firstly, the icon, displayed in the window title bar, is not the CygWin icon, but rather the generic Command.exe icon. Also, system variables set (using the environment variables dialog in Computer/System properties) don’t reflect in new shell windows opened.
Read More…

Wondering why parseInt( “08” ) returns 0, in Javascript?

Apr 21st, 2005   9:14 pm

Well it looks like JS is defaulting to base 8 in it’s parseInt routine. There are 2 workarounds that I’ve come across (once you get over the initial reaction of what the hell use is base8 in a scripting language):

  1. use parseInt( strExpression, 10 ) .. to force decimal
  2. use Number( strExpression ) .. if you’re doing simple numerics
css.php