Update: iphone’s iMobsters & co in Browser

November 18th, 2009 24 comments

After a while if have found some time to write an update on this article.

Storm8 must have changed some things, because the original way in the first article does not work anymore.

I found another way, which follows the same principle.
Read more…

Google wave invitations

November 17th, 2009 No comments

This guy gives away invitations for googles newest communication-plattform “wave”

Blog of Laszlo Korte

Automatic generation of html-tables

November 17th, 2009 No comments

This class automatically generates html-tables from multi-dimensional arrays. The tables are completly customizable by assigning parameters to the standard-table tags like table, tr, th and td.

Download here.

Don’t try this at home

August 26th, 2009 No comments

ICrashThis is an iPhone 3G, which recently had some  ‘contact’ with a kerbstone. It did survive the impact, but not stepping on it afterwards.

After all it is still working with iTunes.

simple MySQL class for php

July 30th, 2009 No comments

Doing all this database-stuff in php is really a mess. For that case I started a simple MySQL class. At the moment there is not more than connecting and making simple selects. Will be updated soon.

Documentation will (perhaps) follow. Its not that complicated. ;)

Download file here.

How to play iphone’s imobsters & co in firefox

June 17th, 2009 54 comments

See an update of this article here.

The games iMobsters, Vampires Live and Kingdoms Live are widespread MMORPGs für the iPhone. The games are completly based on html but embedded into an app.

The user-authentication is made via a guid in combination with the cellphone-number.

So the first task is to get the complete url with parameters for your iPhone.

Therefore you have to install a package-dumper like wireshark and a proxy server on your machine. If your internet-gateway is a linux-box skip this and simply use ngrep.

Read more…

Remote control of snom phone leds

June 8th, 2009 No comments

This video shows some playing-around with the button-leds on a snom 320 VoIP-phone. I know the quality is really really crappy, but when I bought this webcam Neil Armstrong just had landed on the moon.

The special about this is, that the requests don’t come from the local network but from a server in the internet. It is done with sipsak through a ser router. This stuff works with every kind of natted environment. The basic how-to can be found here. Thanks to Benjamin Stocker for that.

Tomorrow I will buy a new webcam…

quick import constructor

May 12th, 2009 No comments

This snipplet shows how to automatic import parameters into a class, restricted to the variables defined in the head of the class.

class Demo
{
  var $a, $b, $c
 
  function Demo($data)
  {
    while(list($key,$value)=each($data)){
      if(isset($this->$key)){
        $this->$key = $value;
      }
    }
  }
}

Finally… Hello world!

May 12th, 2009 No comments

Finally I managed to set up a blog. This will be the place where I publish some snipplets and hints concerning the IT stuff I deal with. The contents may vary from programming-code to geek-stuff like the IPhone.

The main reason to start this blog is to archive all the stuff I create and periodically loose due to my not-existing self-organization. :-)