Category Archives: linux

Frank’s Corner, Running Windows applications and games on Linux

Frank’s Corner, Running Windows applications and games on Linux
This website provides a brief on how to get games running on Linux… I’ll have to have a look and see if it is as easy as it looks… if it is, then I’ll be tempted to drop windows and get myself a decent router.

How to set max height using javascript

function update() {
var height = 0;
if (sIe()){
height = document.documentElement.clientHeight;
} else {
height = window.innerHeight;
}
div.style.height = (height-20) + “px”;
}

I’ve been trying to snatch this code from somewhere… so I was […]