Finally, after having sent mails to people high up at Apple, signing petitions, joining groups and blogging about it for many years, iTunes movie rental and purchase is coming to Scandinavia, possibly the world. That is great, we have been missing it for ages. Thank you, Apple, for allowing us to send you money ;-) Like many other people, I’m looking forward to trying out this service, especially the rental service.

But what this makes me really happy about is that I now am actually optimistic about iTunes Match being not only a US product. So far, we have had no access to iTunes movies, tv-shows, Apple’s iBookstore and probably other similar features I forget. It even took for ages for the AppleTV to get to Denmark, I bought mine in Australia. But iTunes Match is exciting, and will hopefully be a really great showcase for iCloud. October 4th will be exciting in its own right, but the movies becoming available makes me excited that there will be less US-only services and more open-for-the-world services.


I don’t play that many games, but one that I’ve enjoyed for a number of years has been The Sims. Now that Lion is out and we can talk about it, I found the answer about what to do when it fails with an Unknown Error: Go to ~/Library/Preferences and delete the com.transgaming.* files and the “The Sims 3 Preferences” directory. This will make the game run again.


Some of you might have thought that I’m perhaps a bit too happy about the iMac, and of course too cheap to get a Mac Pro. (Yes, I’m just as excited as anyone to see what the new Pro will be like now that Thunderbolt is a great bus-alternative, but that’s for another topic) Let me dedicate this post to the minus points for the iMac.

To be clear, my complaints are with the top-of-the-line 27” i7 3.4 Ghz iMac with 16GB of RAM and SSD disk. Yes, my delivery agent messed up and it’s “only” 1GB of VRAM instead of two, but if you wanted to know what’s the trouble with the top-of-the-line iMac, this is it:

Heat, heat, heat…. yes, every computer I’ve had has been pushed to its limits, and this one will be no exception. But heat isn’t bad while running doing some crazy 8-virtual-core video-encoding with Handbrake, heat is a problem when the monitor is turned on! Try holding your hand on top of it after having used it for a couple of hours: I dare you! It’ll be scorched in no time!

The top of the monitor is where the heat vents are, and it gets crazy hot. My office is on the first floor, so it’s the hottest place in our house to start with, having a couple of other hot-running macs there to begin with doesn’t help, and my 24” Dell really knows how to warm up a room. But this iMac has really added a couple of centigrades to the room temperature. To make it short: I’m adding some vents to the room!

Next up: reflections, reflections, reflections…. man do I look good! I get to look at myself the entire day if I want to!! If I don’t want to, I need to look away, because the iMac is a 27” mirror! I’ve always gone with the matte / anti-glare options, except for the iPhone and iPad where it wasn’t available. I love using my iPad, and it doesn’t reflect THAT much, so I didn’t think much about it, until I packed the iMac out and turned it on! Crazy! I need to go shave!!!! A quick shave later, what I see on the screen looks way better, but it’s still me. I’ve got my Dell 24” matte display next to the iMac, and it takes the full blow of the window and the window-lit me, but still I see no reflection. On the iMac, though, did I mention I use it as a mirror, without turning the camera on?

But these, and the lack of a thunderbolt/USB KVM, are really the only objections I have. Throw in a 24” Dell in 90 degrees rotation, one of the upcoming MacBook Airs for using XCode on the road and a Mini and one of those nice HP airprint printers, and you have yourself a great both home and office setup!

So expecting the upcoming Mini and Air soon, and already knowing Lion and iOS 5, there is really no reason not to work with this and enjoy its benefits full time. This is an awesome setup for developers, media producers and probably your average Mac gamer alike.


Back when the new iMacs were released in may 2011 I ordered one with 4GB RAM, expecting to replace them with 32GB. However, getting four 8GB blocks turned out to be incredibly hard, and very expensive, so I settled for 4x4GB blocks for a total of 16GB RAM 1333Mhz SO-DIMM RAM. Two sets of 2x4GB from Crucial was very inexpensive (about 800 DKK plus tax), and they arrived a couple of days before the iMac.

While almost all servicing of parts for the iMac starts with having to remove the display and risk getting dust stuck under the glass, replacing the memory was very easy. Remove three screws on the bottom of the screen (surprisingly not Philips 1 screws, something a bit wider), take out some easy-to-use handles and pull. I was surprised at how hard I had to pull, I was afraid I’d break the handles, but no problem there, they didn’t even seem the least bit strained when the old memory came out with a pop. Gently take out the old memory, replace it with the new memory (again, push a bit harder than what I expected), screw it together again and voila, one memory maxed iMac. :-) Very easy, and very cheap.

So what is performance like with this memory? Well, I’m not a good case for comparing with as I run too much early-stage pre-release software, too much software at all and generally abuse my computer. And since I transferred my MacBook Pro setup to the iMac (after first deactivating Adobe’s CS5 suite) it’s just as messy as my setup always is. But it works beautifully. No lock-ups, and all the memory is in use! Perhaps a bit surprisingly, but I had 14GB of inactive memory before I started writing this post. That is, it’s loaded and ready to go, but not in use as I’ve quit whatever was using it. ;-) So a waste perhaps? No way…

Using the computer like this has been a breeze so far, but let’s see. Custom is that I’ll max out the memory within three months of using the computer. Yes, 16MB RAM in a 486DX was great, can’t remember what my Pentium 90 had, nor many of the AMD machines. The “lamp” iMac was also filled as much as it could (that was good fun servicing), as were my Powerbooks and subsequent MacBooks and Minis. That’s why I always wanted a Pro, but always opted for something else. Cheapskate me ;-)


Once upon a time I used a beanstalk repository in http mode. By that I mean I had it checked out from a http:// address, rather than the usual svn+ssh:// because Beanstalk didn’t support svn+ssh:// . Since then, no-one had touched the project, but today I wanted to do some changes. I went ahead to make them, and before committing I did a “svn up” just in case. It told me:

svn: Repository moved permanently to 'https://xxx.svn.beanstalkapp.com/project'; please relocate

Beanstalk had deprecated http-mode. Sounds like a good idea, really, I don’t remember why I was using http in the first place. But, if you, like me, have used SVN for a long time without really learning it, and get into the same pickle, this’ll be for you. To relocate, simply run

svn switch --relocate http://xxx.svn.beanstalkapp.com/project https://xxx.svn.beanstalkapp.com/project

That’s it. A “svn up” and “svn commit” later, the new changes are checked in.