runnane Everything that matters ++

27Jun/100

iPad research

I got a iPad 16GB WiFi in San Fransisco this summer, so the first steps was:

Step 1, Jailbreaking
Jailbreak it: http://spiritjb.com/

Step 2, Set root password
Default root passord is 'alpine'. The regular user 'mobile' has the same passord. Change these.

Step 3, The best software
AirVideo - lets you stream movies from any pc/mac. On-the-fly converting. A #1 purchase.
iTap RDP - RDP client XBMC - remote control XBMC
Angry Birds HD - The best game for iPad so far

Step 4, Accessorize
http://www.dealextreme.com/search.dx/search.ipad

18Apr/100

Some to addictive game

http://games.adultswim.com/robot-unicorn-attack-twitchy-online-game.html

Tagged as: , No Comments
22Mar/100

New music solution

Top app using grooveshark and last.fm: GrooveWalrus
Kicks spotifys ass anyday.

runnane @ last.fm

11Mar/100

Nagios

Setting up a new nagios-solution at work, I am using a tool called check_mk. Together with some php config generation script, I am automaticly discovering new devices and services.
check_mk is a rather new app, check it out!

25Nov/090

Default Searchprovider in IE8

I am currently trying to do a MCITP on Windows Server 2008. Today: IE GPO
http://blog.stevienova.com/2006/11/07/ie7-adding-default-search-provider-through-the-windows-registry/
Very handy.

25Nov/090

Test Exchange Settings

Test your Exchange server:
https://www.testexchangeconnectivity.com/

24Sep/090

Updating self-signed certificate on Exchange 2007

Had to update the self-signed certificate to a new permanent temporary one :) on my exchange-test installation. Followed the guide at exchangepedia - worked like a charm:

http://exchangepedia.com/blog/2008/01/exchange-server-2007-renewing-self.html

18Aug/090

Custom ROM on HTC Touch Pro (Raphael)

Installed custom TPL + ROM on my Raphael today:

SPL: (1.90.OliNex)
http://forum.xda-developers.com/showthread.php?t=410150

Rom: (EnergyROM Series 2.0Build 41609)
http://www.mobilematt.net/NRGZ28/EnergyROM/ROMs/Raphael/Older%20Releases/2.0%20Final/EnergyROM%202.0%2041609.rar 

Norwegian keyboard settings:
http://forum.xda-developers.com/showpost.php?p=3510941&postcount=3 

18Jul/080

Checking checkboxes, not always a breeze

So, I was sitting here and debugging some code for more than three hours. And finally, I figured it out: You cannot set a checkbox as checked until you have appended it to a container.

Code that does not work:

var newEl = document.createElement('input');
newEl.type = 'checkbox';
newEl.value = 'yes';
if(value == '1'){
   newEl.checked = "checked";
}
                               
$('AttributeValue_Container').appendChild(newEl);

Working code:

var newEl = document.createElement('input');
newEl.type = 'checkbox';
newEl.value = 'yes';

$('AttributeValue_Container').appendChild(newEl);
if(value == '1'){
  newEl.checked = "checked";
}

Really annoying ;)

Filed under: HTML/JS No Comments
21Mar/080

Hardboot linux machine from console

http://blog.air4web.com/linux-force-reboot.html

Pretty handy when my server hangs on umounting a drive:

echo 1 > /proc/sys/kernel/sysrq
echo b > /proc/sysrq-trigger

Filed under: Linux No Comments