Fri, Sep 26, 13:52 CET I'm back!

Yeah baby!

Tue, Sep 09, 22:59 CET The linuxgods.com address might stop working.

It seems our hosting for the linuxgods.com DNS and e-mail is going away.

That wouldn't be much fun for me, but if it happens, the backup address for this site is http://kreiger.homelinux.org, and my backup e-mail address is kreiger@telia.com.

Sun, Aug 24, 23:44 CET Holy fucking shit! Unbelievable!

Nick Pitera has the most amazing range i think i've ever heard in a male singer.

I still can't believe it's him singing!

Fri, Aug 15, 11:33 CET Back to work.

I had a wonderful vacation, possibly my best ever, and the medieval week was definitely my best ever.
I can't remember the last time i was so happy. That is how life should always be.

My current obsession is the music of Loke, especially "Sommarkatt" and "7 dar per år":


(I was there at Clematis when this video was shot, and it was so, so awesome.)

Thu, Jul 24, 00:23 CET Home!

I'm home from Madrid now.

Thu, Jul 17, 11:32 CET Vacation!

I'll be in Madrid from friday to tuesday.

Tue, Jul 01 2008, 18:04 CET How to undo "git rm".

If you have deleted some files from your git working directory (whether using "git rm" or not) and would like to have them back without manually typing their names or copying and pasting from "git status", some variation of this might do it:

git diff-index --relative --name-only HEAD .|xargs git checkout HEAD --

"git diff-index" lists the difference from the index and the working directory to the given tree (HEAD in this case).
You can say "git diff-index --cached" to get just the difference from the index to the given tree.
Older entries