Standby problems figured out

My new computer would not go into standby for more than a second. I turned off all the wake-on-LAN options in the BIOS, still no luck. Then I had a look at the device manager: The entry for my network card has extra power management settings that override the BIOS ones: Turn those off as well.

Now the computer went to sleep, but the fans continued to run. Not good. More poking around in the device manager finds a power tab on the keyboard and mouse: Turn off the option to let those devices wake the computer from standby, and voila! the fans stop. Now the only way to wake it up is the power button, but that’s fair enough.

Why did this have to be so hard?

Eclipse RCP Patch 1 for 3.3.1 (3.3.1.v20071002_331) requires feature “org.eclipse.rcp”

I recently spent half a day trying to fix this Eclipse error message, which prevented me from updating/installing anything at all. So in case I ever trip over it again, here’s the solution:

  1. Help -> Software Updates -> Manage configurations -> Eclipse RCP Patch 1 -> disable
  2. restart
  3. Help -> Software Updates -> Find and Install -> Scan for updates of the currently installed features
  4. restart

Anarchy Online: New Engine.

New Engine (Alpha)

Funcom released a first preview video of the new rendering engine for Anarchy Online this week. This makes me proud and happy. I lobbied hard internally to see this project worked on, and after getting it approved and doing the initial research and test implementations, Osman took over and has done a tremendous job on it.

read more | digg story

Quad Power!

I caved in and bought a new PC. The thing that really strikes me is how long it takes to set up a new PC with Windows compared to Ubuntu. In any modern Linux distribution, I just insert the CD, select the software I want from a huge list and let it do the magic while I do something else. And in an hour, everything’s done.

Meanwhile’ I’m in the middle of day two of my Windows installation. Windows itself is a hassle to install: Missing RAID drivers mean I have to bake a new ISO image and can’t use the regular install CD. Which starts by finding a PC with a CD burner, finding the drivers on the net (because Intel only included 32 bit drivers, hooray), finding a floppy drive in the basement because the drivers are distributed as an executable that formats a floppy (oh, how convenient is that?), building the CD, blabla…
Continue reading

Prototyping Challenge Round-Up


The challenge posted earlier resulted in some interesting entries. The winner was Jesper, who sent in a Nintendo DS rom that played a Pacman that plays on the upper screen (and spouts lots of debug info to the lower one). The DS screen is too small to fit the entire level, so he made it scroll. His ghosts seemed a bit smarter than mine. Jesper wins my cherished papercraft leet.

Knut wrote his solution in Python with pygame. Steffen wrote it in C++ with SDL just like I did, but his ghosts respawn when they die, and blink before the pill timeout ends, so he went beyond the limits of the prototype requirements.

What have we learned? I learned that something like this takes no more than a few hours to put together, less time than I expected. Also, SDL is great for this stuff – except for the NDS solution, everyone used SDL. The resulting code is horrible – for example, I’m just redrawing the entire screen each frame. I think everyone agrees that it’s not possible to extend it much further, and shouldn’t go into production. Would I want to make the full game, I’d definitely start from scratch. Coding is quick, good coding takes time.

I’m definitely going to prototype more in the future, and try to get small ideas on the screen that can be completed inside of a day. I don’t think it should be longer than that, this is really about having something to show to either check how feasible something is, or sometimes to just get the sceptics of your back.

The Programming Challenge: Pacman!

The follwoing is a competition in speed-coding. Your task will be to implement a Pacman prototype. Mind you, not the entire Pacman game.

Your prototype game should have the following features:

  1. display a pacman level (one is enough)
  2. let the player move pacman around (keyboard input is enough)
  3. move 4 different-coloured ghosts around, and let them pick new directions when they get to an intersection.
  4. eat dots, and finish the game if you ate them all
  5. eat pills, and afterwards be able to eat ghosts for some time
  6. animate pacman and the ghosts,
  7. draw ghosts differently when pacman can eat them.
  8. pacman dies when he collides with a ghost and isn’t “on the pill”
  9. ghosts disappear when pacman is on the pill

Everything else is unnecessary. No need to count score, no need to make the ghosts smart, resurrect dead ghosts, implement fruit, death animations or any other UI. No sound required, either.

You are free to use any language you like, on any hardware and with any library that is convenient. There is a set of assets you can use that contains some bitmap sprites and the level data. You may modify these assets as much as you like.

Assets in this zipfile:

  • pac.bmp, 3 sprites that make up pacman’s animation in one direction
  • level1.bmp, this is how the level should look.
  • levelsprites.bmp, 8×8 sprites that the level is made of.
  • ghost.bmp, a ghost moving in four directions (see eyes)
  • frown.bmp, ghosts that can be eaten
  • level1.dat, the 28×32 cells that make up the first level. each cell is one byte containing an index into levelsprites.bmp, and they are written row by row from top to bottom

To win, you must be the first person to email me a .zip file containing the source, assets and compiled executable (if you’re not using an interpreted language) of your prototype that fulfills all the requirements above.

When did this happen?

The Desktop
When did Operating Systems stop being something that came on a bootable disk, and start being something you had to install before you could use it? When did the manufacturers of software decide that they had to send the user through a lenghty, complicated procedure, making them give hopeful answer to questions that in 90% of the cases, they had no chance of understanding? Do I want ALSA or OSS? Well, durr…
Continue reading

Where have all the virii gone?


Are there no more viruses? Or are we so protected from them that we no longer notice them? I honestly cannot remember the last time I got in contact with a virus – whether by mail, in a word document or otherwise. It must have been two years or more. And when did the last virus do any kind of damage to me? This was in a time of DOS and Windows 3.1, I assume, at least 15 years now, when I was trading floppy disks with less-than-trustworthy sources (teachers, mostly).

And still, virus scanners are everywhere. I vividly remember the last time I had a virus scanner wreak havoc to my PC: Overnight, the heuristics had decided that all my .class files were suspect and had to be deleted. Hilarity ensued.

So really, do I still need this thing?

Foxmarks rocks


Foxmarks is a more recent addition to my ever-growing list of Firefox Extensions, but it’s already proven itself many times. What it essentially does is upload my bookmarks to a server, and any time firefox starts, compare the local bookmarks to the server version to synchronize the two.

This makes a lot of sense if you have a scenario like me:

  • A computer dual-booting into Linux and Windows
  • A desktop and a laptop
  • A computer at home and one at work

Continue reading