Sacrifice Revisited

A while ago I posted on this blog how you could resolve the “Insufficient page file space” problem in Sacrifice. Since then a few people have emailed me, saying that the fix described in that post does not longer work. After trying various things with various people (thanks for all …

Read more

Virtualbox: Expanding A Disk Drive

I love Virtualbox, it’s definitely my virtualization platform of choice for daily tasks [1] on a Linux-host, and it’s quickly replacing VMware on Windows hosts as well.

However, recently I had to expand a virtual partition of a Windows guest. There are already lots of options and methods …

Read more

ODBC Missing Driver On 64 Bit

Note to self, if you can’t find your installed ODBC-driver. It might be because you installed a 32-bit driver on a 64-bit system. Try looking in C:\Windows\SysWOW64\odbcad32.exe

That’s all.

Read more

Is w32codecs Freezing Your Ubuntu?

Wanted to play an Realmedia file? Installed w32codecs? Now Totem is freezing your Ubuntu Hardy? And by freezing, I mean: you can move the mouse, nothing else works, no ctrl-alt-backspace, no ctrl-alt-F1.

Then do the following:

  1. Make sure you have gstreamer0.10-pitfdll installed.
  2. Install (if you haven’t already) w32codecs …

Read more

Muxtape Downloader Shell Script

I got to confess something: I love Muxtape! Did you know there is a userscript which lets you download the songs? It’s not encouraged though…

I’ve been trying to learn Shell Scripting. So I decided: why not make a Muxtape downloader. This is my first shell script (longer …

Read more

Assembly Component {303994BA-6487-47AE-AF1D-7AF6088EEBDB}

I recently tried to install the Nokia Software Updater, but it gave me this error:

Error 1935. An error occured during the installation of assembly component{303994BA-6487-47AE-AF1D-7AF6088EEBDB}.

Quick research showed that this had something to do with MSXML 4.0. So I went here and downloaded …

Read more

Javascript Browser Detection Using DOM Capabilities

Just found this, pretty handy!

// browser detection
var isIE = document.all;
var isIE7 = isIE && window.XMLHttpRequest && window.ActiveXObject;
var isIE6 = isIE && document.implementation;
var isgteIE6 = isIE7 isIE6;
var isIE5 = isIE && window.print && !isgteIE6;
var isIEDOM2 = isIE5 isgteIE6;
var isIE4 = isIE && !isIEDOM2 && navigator.cookieEnabled;
var isIE3 = isIE && !isIE4 && !isIEDOM2;
var isNS …

Read more

Scrolling Unfocused Windows

I’ve been looking for a way to do this for some time now: scrolling unfocused windows, in Windows. You can do it with a Mac (movie here) and on Linux. I became accustomed to it after prolonged Ubuntu-use on my laptop. (It’s incredibly handy on lower resolutions too …

Read more

Simulating LIMIT With Offsets In SQL

How can you do this (x is number of rows to fetch, y is offset) (Mysql):

SELECT * FROM my_table LIMIT x, y

or this (PostgreSQL) :

SELECT * FROM my_table LIMIT x OFFSET y

in a DBMS that doesn’t support LIMIT statements (take Oracle for example).

In Oracle, you can use …

Read more

« Prev Page 11 of 13 Next »