Time is up! The innebandy season for Bandydos is beginning next week. If you are in Sweden and want to play innebandy (aka floorbal) please visit our site on playing innebandy in Stockholm
It was driving me nuts!! After installing the latest 2.8 beta for mac I was getting one of those red notifications every time any of my contacts was changing his mood message. Luckily you can disable it in the Preferences->Advanced->Enable Mood Message Chat.
I got a new macbook (alu) and since I once happened to overwrite a file because the default file system for OS X is case-insensitive, I thought I would be smart in reformatting the hard-disk before installing anything and changing the partition to case-sensitive (use DiskUtility to do so just after booting from the Leopard cd). Unfortunately, it proved to be a bad choice since many applications are not written for a case-sensitive filesystem (see Adobe Photoshop Elements, f.i.). That pissed me off! Probably an ordinary Mac user will have an happy life with a case-insensitive fs but since I have a linux background it seems very unnatural to me. Nevermind, I tried to find a way to convert my fs to case-insensitive without having to reinstall everything. I first tried restoring with a TimeMachine backup, after having reformatted the disk case-insensitive but the backup restored the whole partition as case-sensitive. The solution seemed to be to fully reinstall OS-X from scratch and when i
If you need a compact way to use prototype and listen to on onresize event in a cross-browser manner, this is the way to go: [source:js] Event.observe(document.onresize ? document : window, "resize", function() {//dostuff}); [/source] As you can see, the event to listen is resize but depending on the browser, it may be fired on either the window or the document object. Quirksmode has as usual an explanation of which browser support the one or the other Of course, you should never use the apparently simpler [source:js] document.onresize = function() {}; [/source] if you want a robust solution since you will overwrite any other event listeners that can have been add by other libraries ( Bobobobo has a bad example)
Comments
Post a comment