Which Your?

One of my pet hates is the lack of knowledge about which your/you’re should be used in a particular context. From JB Hi-Fi’s website.

If your looking for batteries, headphones, plugs and leads or cleaning products, venture into any one of our stores and experience the JB - You’ve done it again philosophy.

Sony Headphones

I’m not totally happy with the standard iPod headphones. They don’t prevent much noise from outside, and they tend to make my ears sore after a few hours of listening. Quite by accident, I came across a review on Amazon.com for some Sony ‘in-ear’ headphones, that have silicon buds that actually seal quite well in the ear, increasing both comfort and noise reduction. I went into Sony Central in the city, and they have them, but at $99. I’m not quite sure I’m ready to buy $100 headphones.

The rise and rise of blogs

Drunken Batman has an interesting post about the failures of trackbacks, and how he is going to remove them from his site in the near future.

He actually makes an interesting point at one stage in the post:

I did put the trackbacks over the comments for a reason, and preferred them over the comments for a reason. In a small way, trackback encouraged people to do their own site, because, well, they had to have one in order to trackback and have their stuff right there front and center and maybe get some hits from it.

I found this quite amusing, especially after this comment I received some time ago:

Blogs have polluted the web. Now, every time I search for a topic, most of the links send me to blogs. I want real information, not some blogger’s thoughts on the matter. How boring.</blockquote>

The irony of this comment is that I originally started a blog so I can post the sort of information I had searched for, and struggled to find initially, and then worked out for myself. My “thoughts on the matter” are indeed egotistical, but I’m like that. People as good as me usually are.)

Novel Ideas

Of course, by this I mean ideas for my next novel, not NEW ideas. Biology: Removal of junk DNA as part of creating the perfect soldier. Switching on our tail gene. Black Comedy: Person who kills people for their annoying habits/actions. Phone ringtones, 8 items or less, driving slowly in right lane. Historical Fiction: Eighteen Hundred & Froze to Death. The year Summer never came. (1816).

We Are All Made Of Stars • 18Moby

I ARE THE WINNER!

I got a phone call from a guy from TransAdelaide, or the Adelaide Metro, or something like that yesterday. I won the weekly draw, or monthly draw, or whatever; and won 2 tickets to paradise either the MotoCross or Monster Trucks at the Adelaide Entertainment Center mid August. Now, neither of these really appeal to me, but I’ll go anyway - I guess the fans expect me to… So, according to the email I received from them “YOU ARE THE WINNER!”. Luckily I was expecting it, otherwise I would have likely dumped it, since it looks an awful lot like a heap of the SPAM I’ve been getting lately.

Freecycle not fun anymore

I’ve been a member of the freecycle-adelaide list for a few months now - I’ve given away some stuff, and picked up a few good things, including a push mower. Recently, A Current Affair did a story on it, and now the list is filled with people asking for stuff. The moderator posted a message reminding everyone that you are supposed to only rarely ask for things, and must offer before asking for anything. I haven’t asked for anything - I see it as a way to use other people’s stuff they need to get rid of, not prompt someone to give stuff away. Anyway, I’m thinking about unsubscribing, as I had 78 new emails today, and 77 of them were either SPAM or [freecycle-adelaide] things. And not much there that was that interesting.

Stopping an Application from appearing in the Dock

To stop an Application appearing in the Dock under Mac OS X add the following to the Contents/Info.plist:

    <key>NSUIElement</key>
    <string>1</string>

Camino Changes

I use the fantastic Camino browser for MacOS X, and the latest update has something nice: better looking tab panels.

Things MacOS could learn from Windows

Apple Matters has a story about what MacOS should ‘borrow’ from Windows. I’ll address them as I see the issue.

  1. Compatible control keys. These should be called Modifier Keys, and I think Apple does a better job. Control-C is used by every variety of Unix ever for sending a break: I'd like to see this remain. And Command is in a better position for reaching with one hand to get all of the keys. Try to do a Ctrl-T, and then a Cmd-T. Plus, I can use my thumb for the Command key, meaning I can continue to use the correct finger. Cmd-Q, versus Ctrl-Q.
  2. Save buttons on toolbars. I rarely use the Save Menu, let alone the Print toolbar button. Cmd-S always saves. The only time I use buttons is if I don't know the keyboard shortcut.Multi-button mouse. Every multi-button USB mouse I have ever tried worked first time. Even those that needed a driver for Windows. Like the wireless one that came with my Dell. Trying to use this with another computer without the software installed was hopeless - I had to use the Apple mouse instead. But yes, I'd like to see an Apple styled multi-button mouse.
  3. Only show relevant file types in open and save dialogs. I actually hate that Windows never shows all of the files it can see - Word sticks to only showing Word documents and not Plain Text files by default. And, every time a beginner uses Windows, and uses Excel for the first time instead of Word, they think they've lost all of their files. And freak out.
  4. Sort folders on top of directory listings. I'd be surprised there isn't a hidden setting using defaults for this one. Yes, I agree.
  5. More context sensitive help. Actually, my take on this is get rid of the stupid help key on the keyboard. I've hit this more times than I care to remember when I go to hit Delete. And then Help opens up, telling me stuff I already knew, and not deleting what I wanted to delete.

Overall, I disagree with just about everything said in the article.

How long have you iTunes-d?

I like the bit that appears at the bottom of iTunes, telling you how much music you have in your collection (or in the current playlist). iTunes Library Size I thought it might be fun to see how much music I had listened to. As it turns out: 5883 songs, 17:13:27:05 total time. Here is the script I wrote to find it out.

    #! /usr/bin/env python
    
    import Foundation
    import os
    
    library =  os.path.expanduser('~/Music/iTunes/iTunes Music Library.xml')
    
    db = Foundation.NSDictionary.dictionaryWithContentsOfFile_(library)
    tracks = db[u'Tracks'].itervalues()
    
    timecount = 0
    playcount = 0
    
    for track in tracks:
        try:
            timecount = timecount + track[u'Play Count'] * track[u'Total Time']/1000
            playcount = playcount + track[u'Play Count']
        except KeyError:
            pass
    
    days, timecount = timecount / (60 * 60 * 24), timecount % (60 * 60 * 24)
    hours, timecount = timecount / (60 * 60), timecount % (60 * 60)
    minutes, seconds = timecount / 60, timecount % 60
    
    print '%i songs, %i:%02i:%02i:%02i total time' % (playcount, days, hours, minutes, seconds)