<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Kaiser Soze's Blog &#187; Mobile</title>
	<atom:link href="http://www.kaisersblog.com/category/mobile/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.kaisersblog.com</link>
	<description>Not your usual suspect!</description>
	<lastBuildDate>Tue, 27 Dec 2011 20:49:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Quick and easy iPad homescreen tip for your website</title>
		<link>http://www.kaisersblog.com/2011/01/quick-and-easy-ipad-homescreen-tip-for-your-website/</link>
		<comments>http://www.kaisersblog.com/2011/01/quick-and-easy-ipad-homescreen-tip-for-your-website/#comments</comments>
		<pubDate>Fri, 28 Jan 2011 22:42:49 +0000</pubDate>
		<dc:creator>KaiserSoze</dc:creator>
				<category><![CDATA[javascript]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[hint]]></category>
		<category><![CDATA[homescreen]]></category>
		<category><![CDATA[ipad]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[tip]]></category>

		<guid isPermaLink="false">http://www.kaisersblog.com/?p=883</guid>
		<description><![CDATA[For websites it isn&#8217;t so easy as it is for apps to get some attention on a users iPad homescreen. Apps get an icon on the iPad homescreen when installed but it isn&#8217;t very likely a user will bookmark your website when visiting it on an iPad. Because of this you might want to show [...]]]></description>
			<content:encoded><![CDATA[<p>For websites it isn&#8217;t so easy as it is for apps to get some attention on a users iPad homescreen. Apps get an icon on the iPad homescreen when installed but it isn&#8217;t very likely a user will bookmark your website when visiting it on an iPad. Because of this you might want to show your iPad visitors how easy it is to add your website as a favorite with a little hint at the top of your website.This tutorial shows you how to add a quick and easy iPad homescreen tip to your website using jQuery. Before adding the Javascript and CSS to your website don&#8217;t forget to upload an apple-touch-icon to your websites root directory! <a title="ipad-homescreen-tip.zip" href="http://www.kaisersblog.com/wp-content/uploads/2011/01/ipad-homescreen-tip.zip">Download all files mentioned, a css3 variant and a working example.</a></p>
<p><a href="http://www.kaisersblog.com/wp-content/uploads/2011/01/ipad-tip.png" class="highslide-image" onclick="return hs.expand(this);"><img title="ipad-tip" src="http://www.kaisersblog.com/wp-content/uploads/2011/01/ipad-tip.png" alt="" width="330" height="48" /></a></p>
<p><span id="more-883"></span>Javascript:</p>
<pre class="brush: javascript">

$(document).ready(function(){
var userAgent = navigator.userAgent.toLowerCase();
if ( userAgent.search(&#039;ipad&#039;) &gt; 1 ) {
if (!localStorage.ipadTip){
localStorage. setItem(&quot;ipadTip&quot;, &quot;on&quot;);
}
if  (localStorage.ipadTip==&#039;on&#039;){
// CHANGE DOCUMENT TITLE TO YOUR DOMAIN
document.title = &quot;Kaisersblog.com&quot;;
$(&#039;body&#039;).prepend(&#039;&lt;div id=&quot;ipad-tip&quot;&gt;&lt;span&gt;Add to homescreen &lt;a href=&quot;#&quot;&gt;x&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&#039;);
}
}
});

$(&#039;body&#039;).delegate(&#039;#ipad-tip a&#039;,&#039;click&#039;, function(){
$(&quot;#ipad-tip&quot;).hide();
localStorage.setItem(&quot;ipadTip&quot;, &quot;off&quot;);
return false;
});
</pre>
<p>CSS:</p>
<pre class="brush: css">

#ipad-tip { background:url(&#039;ipad-bg.jpg&#039;) repeat 0 0 #ccc; width:100%; height:50px; }
#ipad-tip span {
font-family: Arial, Helvetica, sans-serif;
font-size: 15px;
background:url(&#039;ipad-tip.png&#039;) no-repeat 0 0;
width: 190px;
height: 40px;
display: block;
position: relative;
left: 111px;
padding: 17px 10px 0;
text-shadow: 0 1px 0 #fff;
-webkit-border-radius: 5px;
}
@media (orientation:portrait) {     #ipad-tip p { left: 173px; }    }

#ipad-tip span a {
background: url(&quot;ipad-close.png&quot;) no-repeat scroll 0 0 transparent;
bottom: 22px;
display: block;
height: 21px;
left: 163px;
position: absolute;
text-indent: -9999px;
width: 21px;
}
</pre>
<p><strong>Note for WordPress users: </strong><em>WordPress uses jQuery in no-conflict mode. So you will need to replace all the $ jquery calls to &#8216;jQuery&#8217;. Example: $(&#8220;#ipad-tip&#8221;).hide(); needs to be editted to: jQuery(&#8220;#ipad-tip&#8221;).hide();</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kaisersblog.com/2011/01/quick-and-easy-ipad-homescreen-tip-for-your-website/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to play video on your TomTom navigation device</title>
		<link>http://www.kaisersblog.com/2010/01/how-to-play-video-on-you-tomtom-navigation-device/</link>
		<comments>http://www.kaisersblog.com/2010/01/how-to-play-video-on-you-tomtom-navigation-device/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 19:44:25 +0000</pubDate>
		<dc:creator>KaiserSoze</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[audio]]></category>
		<category><![CDATA[divx]]></category>
		<category><![CDATA[entertainment]]></category>
		<category><![CDATA[mp3]]></category>
		<category><![CDATA[mpeg]]></category>
		<category><![CDATA[mpg]]></category>
		<category><![CDATA[ogg]]></category>
		<category><![CDATA[player]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[tomplayer]]></category>
		<category><![CDATA[tomtom]]></category>
		<category><![CDATA[videoplayer]]></category>
		<category><![CDATA[xvid]]></category>

		<guid isPermaLink="false">http://www.kaisersblog.com/?p=790</guid>
		<description><![CDATA[After my good old TomTom Go 700 passed away I got a new TomTom Go 740 Live and soon found out it&#8217;s really easy to play video on a TomTom navigation device. This way you can use your navigation as an in-car entertainment centre. With TomPlayer you are able to watch full screen video&#8217;s in [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.kaisersblog.com/wp-content/uploads/2010/01/tomtom_video.png" class="highslide-image" onclick="return hs.expand(this);"><img class="size-full wp-image-798 alignleft" style="margin-right: 5px; margin-left: 5px; margin-top: 0px; margin-bottom: 0px;" title="tomtom_video" src="http://www.kaisersblog.com/wp-content/uploads/2010/01/tomtom_video.png" alt="" width="300" height="192" /></a></p>
<p>After my good old TomTom Go 700 passed away I got a new TomTom Go 740 Live and soon found out it&#8217;s really easy to play video on a TomTom navigation device. This way you can use your navigation as an in-car entertainment centre. With TomPlayer you are able to watch full screen video&#8217;s in AVI (divx or xvid) or MPEG video and listen to mp3 or ogg audio files.</p>
<p>The documentation on <a title="TomPlayer.net" href="http://www.tomplayer.net/" target="_blank">tomplayer.net</a> can be a bit confusing and installation is not the same for all TomTom models. In this post I will explain how to install and configure TomPlayer on an external MicroSD memory card. This method will work for models Go 740/750/930 Live and will probably work for a lot of other models. At the end I will explain another configuration which might work for your model.</p>
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;"><span id="more-790"></span></p>
<h2>Installation</h2>
<ol>
<li>Insert SD-card into TomTom slot</li>
<li>Download the <a title="tomplayer.zip" href="http://sourceforge.net/projects/tomplayer/">Tomplayer zip archive</a> and extract it</li>
<li>Connect TomTom to PC and quit TomTom Home</li>
<li>Copy The Following folders to your external SD-card: audio, tomplayer, video</li>
<li>Rename the folder &#8220;SDKRegistry&#8221; to &#8220;SdkRegistry&#8221; and copy this folder to the root of your TomTom internal memory</li>
</ol>
<p>I&#8217;ve read the different descriptions for installing on the internal memory and on an SD card, and I was still a little confused by the terminology&#8230; especially references to /mnt/movinand and to /mnt/sdcard.</p>
<p>It seems like:<br />
1 &#8211; /mnt/movinand refers to the removable storage (i.e., SD-card)<br />
2 &#8211; /mnt/sdcard refers to the internal memory.</p>
<p>On Windows PC, these show up as external drives H: and I: respectively. So when we modify the configuration files taking these assumptions into consideration, Tomplayer worked correctly.</p>
<p style="text-align: center;"><script type="text/javascript"><!--
google_ad_client = "pub-5424021306856340";
google_ad_channel = "blog-artikelen";
google_ui_features = "rc:0";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "text_image";
google_alternate_ad_url = "?adsensem-benice=468x60";
google_color_border = "000000";
google_color_bg = "FFFFFF";
google_color_link = "abd202";
google_color_text = "000000";
google_color_url = "FF21AD";

//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
</p>
<h2>Configuration</h2>
<ol>
<li>Open tomplayer.ini (the file is in tomplayer/conf/ folder)</li>
<li>Change:<br />
video_dir                      = /mnt/sdcard/video<br />
audio_dir                      = /mnt/sdcard/audio<br />
to:<br />
video_dir                      = /mnt/movinand/video<br />
audio_dir                      = /mnt/movinand/audio</li>
<li>Open tomplayer.cap (the file is in SdkRegistry folder)</li>
<li>Change:<br />
AppPath|/mnt/sdcard/tomplayer/|<br />
to:<br />
AppPath|/mnt/movinand/tomplayer/|</li>
<li>Disconnect your TomTom from PC and restart it</li>
</ol>
<p>Now you will have a fourth screen in your TomTom main menu. Start TomPlayer by pressing the icon. On first start TomPlayer will start with screen calibration. Touch the crosses and proceed. Last thing to do is to copy some audio and video to their respective folders on the SD-card. Have fun!</p>
<p>An alternative method is to copy all files of the distrib folder to your external SD-card. The ttfilesytem (do not copy this to your TomTom internal memory!) will load your TomPlayer as soon as the SD-card is inserted and normal TomTom will load when it&#8217;s ejected. This didn&#8217;t work on my TomTom Go 740 Live, even worse it made it crash, but I have read this method should work on most TomTom models. You can also install TomPlayer to your TomTom internal memor. I did not do this because I don&#8217;t to run out my internal flash read/write cycles. If you have any problems installing or configuring TomPlayer visit the <a title="Tomplayer.net forum" href="http://www.tomplayer.net/forum/" target="_blank">tomplayer.net forum</a> for more help.</p>
<p>If you want to watch video on your TomTom convert your video&#8217;s to avi or mpeg. Try <a title="MediaCoder" href="http://www.mediacoderhq.com/">MediaCoder</a> as it&#8217;s free and it has everything you need. TomTom screen resolutions are 480*272 for the widescreen models (TomTom XL or GO) and 320*240 for fullscreen models (TomTom ONE).</p>
<p style="text-align: center;"><a href="http://www.kaisersblog.com/wp-content/uploads/2010/01/splash_480.png" class="highslide-image" onclick="return hs.expand(this);"><img class="size-medium wp-image-796" title="splash_480" src="http://www.kaisersblog.com/wp-content/uploads/2010/01/splash_480-300x168.png" alt="" width="250" height="142" /></a> <a href="http://www.kaisersblog.com/wp-content/uploads/2010/01/main_480.png" class="highslide-image" onclick="return hs.expand(this);"><img class="size-medium wp-image-795" title="main_480" src="http://www.kaisersblog.com/wp-content/uploads/2010/01/main_480-300x170.png" alt="" width="250" height="142" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kaisersblog.com/2010/01/how-to-play-video-on-you-tomtom-navigation-device/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Stop all inbound sms on symbian mobiles</title>
		<link>http://www.kaisersblog.com/2009/01/stop-all-inbound-sms-on-symbian-mobiles/</link>
		<comments>http://www.kaisersblog.com/2009/01/stop-all-inbound-sms-on-symbian-mobiles/#comments</comments>
		<pubDate>Fri, 02 Jan 2009 19:27:04 +0000</pubDate>
		<dc:creator>KaiserSoze</dc:creator>
				<category><![CDATA[Mobile]]></category>
		<category><![CDATA[block]]></category>
		<category><![CDATA[code of silence]]></category>
		<category><![CDATA[exploit]]></category>
		<category><![CDATA[s60]]></category>
		<category><![CDATA[sms]]></category>
		<category><![CDATA[symbian]]></category>

		<guid isPermaLink="false">http://clnet.nl/blog/?p=317</guid>
		<description><![CDATA[A symbian s60 hack called `curse of silence´ is released. By using a specially crafted SMS message, you can block the recipient from getting any future SMS messages. The attacker changes their Protocol Identifier to “Internet Electronic Mail” and then uses any email address 32 characters or more in their message. The recipient will receive [...]]]></description>
			<content:encoded><![CDATA[<p>A symbian s60 hack called `curse of silence´ is released. By using a specially crafted SMS message, you can block the recipient from getting any future SMS messages. The attacker changes their Protocol Identifier to “Internet Electronic Mail” and then uses any email address 32 characters or more in their message. The recipient will receive no indication that they got the message and no other messages will be allowed until the phone is factory reset. <a href="http://berlin.ccc.de/%7Etobias/cos/">You can see a demo video here</a>. This affects many different varieties of S60 phones and no fix is known other then `hard resetting´ your mobile phone. How it works?</p>
<ul>
<li>set in SMS settings: Protocol Identifier to: &#8220;Internet Electronic Mail&#8221;</li>
<li>Format message like this: &lt;email-address&gt;&lt;space&gt;&lt;message body&gt;</li>
<li>Make sure &lt;email-adress&gt; contains more than 32 characters</li>
</ul>
<p>More info <a title="curse of silence link extra info mobile hack" href="http://berlin.ccc.de/~tobias/cos/s60-curse-of-silence-advisory.txt" target="_blank">here.</a></p>
<p style="text-align: center;"><script type="text/javascript"><!--
google_ad_client = "pub-5424021306856340";
google_ad_channel = "blog-artikelen";
google_ui_features = "rc:0";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "text_image";
google_alternate_ad_url = "?adsensem-benice=468x60";
google_color_border = "000000";
google_color_bg = "FFFFFF";
google_color_link = "abd202";
google_color_text = "000000";
google_color_url = "FF21AD";

//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kaisersblog.com/2009/01/stop-all-inbound-sms-on-symbian-mobiles/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Track and trace your mobile phone</title>
		<link>http://www.kaisersblog.com/2008/11/track-and-trace-your-mobile-phone/</link>
		<comments>http://www.kaisersblog.com/2008/11/track-and-trace-your-mobile-phone/#comments</comments>
		<pubDate>Fri, 07 Nov 2008 15:16:46 +0000</pubDate>
		<dc:creator>KaiserSoze</dc:creator>
				<category><![CDATA[Mobile]]></category>
		<category><![CDATA[blackberry]]></category>
		<category><![CDATA[device]]></category>
		<category><![CDATA[gps]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[lost]]></category>
		<category><![CDATA[nokia]]></category>
		<category><![CDATA[phone]]></category>
		<category><![CDATA[stolen]]></category>
		<category><![CDATA[symbian]]></category>
		<category><![CDATA[tool]]></category>
		<category><![CDATA[trace]]></category>
		<category><![CDATA[track]]></category>
		<category><![CDATA[tracking]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://clnet.nl/blog/?p=262</guid>
		<description><![CDATA[Wow, this really is starting to look like that the NSA tricks used in &#8220;Enemy of the State&#8221; are becoming reality. With the new InstaMapper software and website everybody is able to track his own mobile device trough satellite images! It might not be as fancy as in the movies, but it sure is usefull [...]]]></description>
			<content:encoded><![CDATA[<p>Wow, this really is starting to look like that the NSA tricks used in &#8220;Enemy of the State&#8221; are becoming reality. With the new <a title="InstaMapper" href="http://www.instamapper.com/" target="_blank">InstaMapper</a> software and website everybody is able to track his own mobile device trough satellite images! It might not be as fancy as in the movies, but it sure is usefull when needed.</p>
<p>I lost my Nokia N95-8GB a while ago when I went home after a party. Since I, maybe, had a little bit to much to drink I couldn&#8217;t really remember where I could have lost it, I wasn&#8217;t even sure of the last time I really had it. Fortunatly for me there are still lot&#8217;s of honest people walking this earth and so I was called (on my home phone) the next day to hear somebody had found my phone in an empty train&#8230;.. Oops! It slipped out of my pocket!</p>
<p>I know not everyone will be as lucky as me, and if it is stolen the one who did it probably won&#8217;t give you a ring either. Because of this I started a search for a GPS-tracker with web and/or database functionality. After viewing and testing a few I found InstaMapper was the best solution for me. Easy to setup and use.</p>
<p>How does it work?</p>
<ol>
<li>Install the software for your mobile OS (Symbian, iPhone, Blackberry and Windows Mobile supported)</li>
<li>Sign up for an account at <a title="InstaMapper" href="http://www.instamapper.com/" target="_blank">InstaMapper.com</a></li>
<li>Make a trip and send some data</li>
<li>Login at <a title="InstaMapper" href="http://www.instamapper.com/" target="_blank">InstaMapper.com</a> and watch it on Google Maps!</li>
</ol>
<p style="text-align: center;"><script type="text/javascript"><!--
google_ad_client = "pub-5424021306856340";
google_ad_channel = "blog-artikelen";
google_ui_features = "rc:0";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "text_image";
google_alternate_ad_url = "?adsensem-benice=468x60";
google_color_border = "000000";
google_color_bg = "FFFFFF";
google_color_link = "abd202";
google_color_text = "000000";
google_color_url = "FF21AD";

//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
</p>
<p style="text-align: left;">PS. <a title="the mobile tracker" href="http://www.themobiletracker.com/english/index.html" target="_blank">This</a> is another fun cell phone tracker, haha</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kaisersblog.com/2008/11/track-and-trace-your-mobile-phone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free live tv on your mobile phone</title>
		<link>http://www.kaisersblog.com/2008/10/free-live-tv-on-your-mobile-phone/</link>
		<comments>http://www.kaisersblog.com/2008/10/free-live-tv-on-your-mobile-phone/#comments</comments>
		<pubDate>Thu, 02 Oct 2008 21:14:41 +0000</pubDate>
		<dc:creator>KaiserSoze</dc:creator>
				<category><![CDATA[Mobile]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[live]]></category>
		<category><![CDATA[livestream]]></category>
		<category><![CDATA[livetv]]></category>
		<category><![CDATA[mobiletv]]></category>
		<category><![CDATA[n95]]></category>
		<category><![CDATA[nokia]]></category>
		<category><![CDATA[p2p]]></category>
		<category><![CDATA[p2ptv]]></category>
		<category><![CDATA[streaming]]></category>
		<category><![CDATA[symbian]]></category>
		<category><![CDATA[television]]></category>
		<category><![CDATA[tv]]></category>
		<category><![CDATA[windows mobile]]></category>

		<guid isPermaLink="false">http://clnet.nl/blog/?p=237</guid>
		<description><![CDATA[Every day in Switzerland, 40,000 people watch a 100-second television news broadcast on their cellphones. In Italy, a million people pay as much as 19 euros each a month to watch up to a dozen mobile TV channels and in the Netherlands Vodafone and KPN are also starting with mobile TV. Mobile TV, the kind [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://clnet.nl/blog/wp-content/uploads/2008/10/mobile-tv.jpg" class="highslide-image" onclick="return hs.expand(this);"><img class="alignleft size-thumbnail wp-image-238" style="float: left; margin: 5px;" title="mobile-tv" src="http://clnet.nl/blog/wp-content/uploads/2008/10/mobile-tv-150x130.jpg" alt="" width="100" height="86" /></a>Every day in Switzerland, 40,000 people watch a 100-second television news broadcast on their cellphones. In Italy, a million people pay as much as 19 euros each a month to watch up to a dozen mobile TV channels and in the Netherlands Vodafone and KPN are also starting with mobile TV.</p>
<p>Mobile TV, the kind that is watched on a cellphone, is spreading beyond Japan and South Korea, where it has been available for about three years. Mobile operators across Europe and the United States are investing in new broadcasting towers, mobile devices, and television programming and promotions, even though it is not yet clear that profit will follow.</p>
<p>The European video broadcasts use a standard called DVB-H, short for Digital Video Broadcasting for Hand-helds, which was developed by the DVB Project, a group of 275 media , entertainment and telecommunications companies based in Geneva. But for this DVB-H standard you need a phone that has a DVB tuner inside and you’ll need to pay for it.</p>
<p><strong>But what if you got your brand new device and it hasn’t got a DVB-H tuner or you don’t want to spend a lot of money on just a few channels?</strong> Well the solution might P2P tv. This phenomenon has been going on for years now on the internet. Programs like TVUplayer, TVants, SOPcast and PPlive/PPstream are well known and very popular. Most people use these programs to view television that is not available in their country or to watch and share movies, sports and pay-to-view channels. A lot of popular channels are available in different quality streams. FOX, ABC, Eurosport, Sky Sports, it’s all there.</p>
<p>Other solutions are also available. Applications that serve you internet livestreams of your favorite tv stations. Vimio, LiveTV and dailyme.tv are doing already and it seems to be working very well. They offer livestreams in low, med and high quality so you can choose according to your current internet connection.</p>
<p>Below are some of the applications you could use to have live tv on your mobile device:</p>
<p>Symbian</p>
<ul>
<li><a title="nokia live tv application symbian nseries" href="http://kaisersoze.ath.cx/files/mobile/livetv_pacdw8wt.sisx" target="_blank">LiveTV</a> – <a title="livetv application nokia nseries" href="http://www.zimbio.com/Nokia/articles/2903/Mobile+live+TV+application+Nokia+Nseries" target="_blank">more info</a></li>
<li><a title="vimio live mobile tv application symbian nokia nseries" href="http://www.vimio.com/index.cfm?fuseaction=Software" target="_blank">Vimio</a> – <a title="vimio live mobile tv application symbian nokia nseries" href="http://www.vimio.com/index.cfm?fuseaction=main" target="_blank">more info</a></li>
<li><a title="dailyme.tv live tv mobile symbian nokia nseries" href="http://www.dailyme.tv/" target="_blank">Dailyme.tv</a> – (germany, Austria, Switzerland only)</li>
</ul>
<p>Windows Mobile</p>
<ul>
<li><a title="tvumobile player live mobile tv windows" href="http://dl.tvunetworks.com/TVUMobile.v0.0.6.zip" target="_blank">TVUplayer </a>– <a title="tvumobile player live mobile tv windows" href="http://pages.tvunetworks.com/labs/mobile.html" target="_blank">more info</a></li>
<li><a title="pcoket livetv live tv windows mobile phone device" href="http://www.makayama.com/pocketlivetv.html" target="_blank">Pocket LiveTV</a> – <a title="pocketconsole pocketcmd windows mobile" href="http://www.makayama.com/pocketlivetv.html" target="_blank">more info</a></li>
</ul>
<p>iPhone</p>
<ul>
<li>iTV – (search for it in app store)</li>
</ul>
<p>Direct links to live channels:</p>
<ul>
<li><a href="mms://cnn-cnnlive-1-primary.wm.llnwd.net/cnn_cnnlive_1_primary">CNN International</a> &#8211; Major (original) US cable news network.</li>
<li><a href="mms://cnn-cnnlive-2-primary.wm.llnwd.net/cnn_cnnlive_2_primary">CNN Feed 2</a></li>
<li><a href="mms://cnn-cnnlive-3-primary.wm.llnwd.net/cnn_cnnlive_3_primary">CNN Feed 3</a></li>
<li><a href="mms://cnn-cnnlive-4-primary.wm.llnwd.net/cnn_cnnlive_4_primary">CNN Feed 4</a></li>
<li><a href="mms://a1482.v373745.c37374.g.vm.akamaistream.net/7/1482/37374/475fe432/clipdownloads.bbc.co.uk/windowsmedia-acl/news/n5ctrl/summaries/world/bb/video/world_bb.wmv">BBC News</a> &#8211; World news.</li>
<li><a href="mms://a1598.l2489858165.c24898.n.lm.akamaistream.net/D/1598/24898/v0001/reflector:58165">Bloomberg TV</a> &#8211; 24-hour business and financial news network.</li>
<li><a href="mms://a1873.l2639649579.c26396.g.lm.akamaistream.net/D/1873/26396/v0001/reflector:49579">CNBC</a> &#8211; Business headlines and provide live coverage of financial markets.</li>
<li><a href="http://msnbc.wmod.llnwd.net/a275/e1/video/100/vh.asf">MSNBC</a> &#8211; 24-hour cable news.</li>
<li><a href="mms://live1.wm.skynews.servecast.net/skynews_wmlz_live300k">Sky News</a> &#8211; UK and world news.</li>
<li><a href="mms://a1729.l2168647534.c21686.g.lm.akamaistream.net/D/1729/21686/v0001/reflector:36819">ABC News</a> &#8211; Major US broadcast news network.</li>
</ul>
<p style="text-align: center;"><script type="text/javascript"><!--
google_ad_client = "pub-5424021306856340";
google_ad_channel = "blog-artikelen";
google_ui_features = "rc:0";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "text_image";
google_alternate_ad_url = "?adsensem-benice=468x60";
google_color_border = "000000";
google_color_bg = "FFFFFF";
google_color_link = "abd202";
google_color_text = "000000";
google_color_url = "FF21AD";

//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kaisersblog.com/2008/10/free-live-tv-on-your-mobile-phone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Console command prompt on windows mobile 6</title>
		<link>http://www.kaisersblog.com/2008/09/console-command-prompt-on-windows-mobile-6/</link>
		<comments>http://www.kaisersblog.com/2008/09/console-command-prompt-on-windows-mobile-6/#comments</comments>
		<pubDate>Fri, 05 Sep 2008 21:56:57 +0000</pubDate>
		<dc:creator>KaiserSoze</dc:creator>
				<category><![CDATA[Mobile]]></category>
		<category><![CDATA[6]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[console]]></category>
		<category><![CDATA[device]]></category>
		<category><![CDATA[pocket]]></category>
		<category><![CDATA[pocket console]]></category>
		<category><![CDATA[pocketcmd]]></category>
		<category><![CDATA[prompt]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://clnet.nl/blog/?p=227</guid>
		<description><![CDATA[Pocket Console is a very nice piece of software that provides a console device and/or command prompt for windows mobile systems. Combine it with PocketCmd and you can control your windows mobile device from the command line &#8211; truly geek heaven! It seems that pocket console website is with us no more and so it [...]]]></description>
			<content:encoded><![CDATA[<p><a rel="lightbox" href="http://clnet.nl/blog/wp-content/uploads/2008/09/pocketconsole.gif" class="highslide-image" onclick="return hs.expand(this);"><img class="alignleft size-thumbnail wp-image-228" style="float: left; margin-left: 5px; margin-right: 5px;" title="pocketconsole" src="http://clnet.nl/blog/wp-content/uploads/2008/09/pocketconsole-150x150.gif" alt="" width="150" height="150" /></a>Pocket Console is a very nice piece of software that provides a console device and/or command prompt for windows mobile systems. Combine it with PocketCmd and you can control your windows mobile device from the command line &#8211; truly geek heaven!</p>
<p>It seems that pocket console website is with us no more and so it can be difficult to find both pocket console and pocket cmd on the web. In order to help people who are still looking for them I have uploaded both packages in one zip file.</p>
<p>There could be problems if Pocket Console and Pocket CMD are installed to a memory card. You may receive the following error message:</p>
<p>“CMD Cannot start. There are too many console windows open. Please close some console applications and try again.”</p>
<p>Solution is installing them to internal memory rather than a memory card &#8211; they are quite small so this is no big issue.</p>
<p>download <a title="pocketconsole pocketcmd windows mobile" href="http://www.clnet.nl/blog/wp-content/uploads/2008/09/Pocketcmd_andConsole_windows_mobile6.zip" target="_blank">here</a>.</p>
<p style="text-align: center;"><script type="text/javascript"><!--
google_ad_client = "pub-5424021306856340";
google_ad_channel = "blog-artikelen";
google_ui_features = "rc:0";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "text_image";
google_alternate_ad_url = "?adsensem-benice=468x60";
google_color_border = "000000";
google_color_bg = "FFFFFF";
google_color_link = "abd202";
google_color_text = "000000";
google_color_url = "FF21AD";

//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kaisersblog.com/2008/09/console-command-prompt-on-windows-mobile-6/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>New V30 firmware out for N95 8GB! Including Nokia&#8217;s new music service</title>
		<link>http://www.kaisersblog.com/2008/09/new-v30-firmware-out-for-n95-8gb-including-nokias-new-music-service/</link>
		<comments>http://www.kaisersblog.com/2008/09/new-v30-firmware-out-for-n95-8gb-including-nokias-new-music-service/#comments</comments>
		<pubDate>Thu, 04 Sep 2008 13:41:48 +0000</pubDate>
		<dc:creator>KaiserSoze</dc:creator>
				<category><![CDATA[Mobile]]></category>
		<category><![CDATA[8gb]]></category>
		<category><![CDATA[comes]]></category>
		<category><![CDATA[firmware]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[n95]]></category>
		<category><![CDATA[n95-8gb]]></category>
		<category><![CDATA[nokia]]></category>
		<category><![CDATA[symbian]]></category>
		<category><![CDATA[v30]]></category>
		<category><![CDATA[with]]></category>

		<guid isPermaLink="false">http://clnet.nl/blog/?p=225</guid>
		<description><![CDATA[Today brings us the good news that the much rumoured V30 firmware has finally landed for the Nokia N95 8GB. The update is not yet available on NSU, you can currently only get it by going to your local service centre OR by downloading the firmware HERE and then loading it onto your N95 with [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://clnet.nl/blog/wp-content/uploads/2008/09/1220530236.jpg" class="highslide-image" onclick="return hs.expand(this);"><img class="alignleft size-thumbnail wp-image-226" style="margin: 5px; float: left;" title="1220530236" src="http://clnet.nl/blog/wp-content/uploads/2008/09/1220530236-150x150.jpg" alt="" width="150" height="150" /></a>Today brings us the good news that the much <a href="http://www.finestfones.com/2008/05/rumoured-v30-firmware-brings-new-ui-to.html">rumoured</a> V30 firmware has finally landed for the Nokia N95 8GB. <span class="fullpost">The update is not yet available on NSU, you can currently only get it by going to your local service centre OR by downloading the firmware <a href="http://rapidshare.com/files/142349708/RM-320_MEA_30.0.018_V5.0.exe">HERE</a> and then loading it onto your N95 with Phoenix. </span><span class="fullpost">V30 is apparently to be made widely available on NSU sometime in the next 2 weeks.</span></p>
<p><strong>Comes with Music</strong></p>
<p>Probably the most interesting news of the new firmware is the &#8220;<a title="nokia comes with music" href="http://www.nokia.com/A4136001?newsid=1172937" target="_blank">Comes with music</a>&#8221; integration. This new Nokia music service allows users to download as much music as they like with a monthly subscription. The addition of the comes with music service is remarkable because the service hasn&#8217;t even been launched yet. Even better, the only thing known about it is that the service should be available in the UK later this year, probably December.</p>
<p><strong>Changelog</strong></p>
<p><strong><em>- New features: </em></strong><strong><br />
</strong></p>
<ul>
<li>- Maps 2.0 (e.g. Pedestrian navigation, Traffic info, Multimedia city guides, satellite imagery)</li>
<li>- Full N-Gage</li>
<li>- Nokia Search 4.0 with Google plug-in</li>
<li>- Share on Ovi <em>(Share Online 3.0)</em></li>
<li>- Enablers for “Comes With Music”</li>
<li>- Mosh &amp; Ovi Bookmarks added to Browse</li>
</ul>
<p><em> </em></p>
<p><em><strong>- Changes/Improvements: </strong></em></p>
<ul>
<li>- Download! application updated (v 3.1.50)</li>
<li>- New baseline for Startup settings</li>
<li>- New baseline/upgrade to Music Player</li>
<li>- Baseline update for Flashlite3 (improved viewing of sites like YouTube)</li>
<li>- Current consumption improvements (for e.g. WLAN scanning)</li>
<li>- New baseline for VoIP (with significant error corrections)</li>
<li>- General error corrections</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.kaisersblog.com/2008/09/new-v30-firmware-out-for-n95-8gb-including-nokias-new-music-service/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hack the iPhone. Full iPhone software unlock tutorial</title>
		<link>http://www.kaisersblog.com/2008/07/hack-the-iphone-full-iphone-software-unlock-tutorial/</link>
		<comments>http://www.kaisersblog.com/2008/07/hack-the-iphone-full-iphone-software-unlock-tutorial/#comments</comments>
		<pubDate>Mon, 21 Jul 2008 12:35:38 +0000</pubDate>
		<dc:creator>KaiserSoze</dc:creator>
				<category><![CDATA[Mobile]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[kpn]]></category>
		<category><![CDATA[orange]]></category>
		<category><![CDATA[simlock]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[subscriber]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[unlock]]></category>
		<category><![CDATA[vodafone]]></category>

		<guid isPermaLink="false">http://clnet.nl/blog/?p=25</guid>
		<description><![CDATA[This is beta so run at your own risk! It should not do any damage to your phone anyway because you can easily reflash all the old original files. And you should not break any warranty. Would also be a good idea to backup any files you might need just incase! Dont blame me! First [...]]]></description>
			<content:encoded><![CDATA[<p><span style="color: #ff0000;">This is beta so run at your own risk! It should not do any damage to your phone anyway because you can easily reflash all the old original files. And you should not break any warranty. Would also be a good idea to backup any files you might need just incase! Dont blame me!</span></p>
<p class="style1">First of all im gonna warn you make sure your running version 1.02 firmware.</p>
<p class="style1"><em><strong>Settings → General → About → Version. Modem Firmware should also say 03.14.08_G</strong></em></p>
<p class="style1">Your phone will also need to be jailbroken you can use <a href="http://ibrickr.com/downloads/ibrickr_v0.8.zip">iBrickr</a> for this!</p>
<p class="style1"><a title="jailbreak iphone ibrickr" href="http://www.google.nl/search?hl=nl&amp;client=firefox-a&amp;rls=org.mozilla%3Anl%3Aofficial&amp;hs=hVu&amp;q=jailbreak+iBrickr+tutorial&amp;btnG=Zoeken&amp;meta=" target="_blank">Google</a> on how to do so!</p>
<p class="style1">
<p class="style1">Next Download these files from on of the following mirrors</p>
<p class="style1"><a href="http://rs160tl2.rapidshare.com/files/55201526/dl/Unlock.app.zip" target="_blank">http://rs160tl2.rapidshare.com/files/55201526/dl/Unlock.app.zip</a><br />
<a href="http://rs160cg2.rapidshare.com/files/55201526/dl/Unlock.app.zip" target="_blank">http://rs160cg2.rapidshare.com/files/55201526/dl/Unlock.app.zip</a><br />
<a href="http://rs160cg2.rapidshare.com/files/55201526/dl/Unlock.app.zip" target="_blank">http://rs160l33.rapidshare.com/files/55201526/dl/Unlock.app.zip</a><br />
<a href="http://rs160cg2.rapidshare.com/files/55201526/dl/Unlock.app.zip" target="_blank">http://rs160l3.rapidshare.com/files/55201526/dl/Unlock.app.zip</a><br />
<a href="http://rs160tl2.rapidshare.com/files/55201526/dl/Unlock.app.zip" target="_blank">http://rs160tl2.rapidshare.com/files/55201526/dl/Unlock.app.zip</a><br />
<a href="http://rs160l32.rapidshare.com/files/55201526/dl/Unlock.app.zip" target="_blank">http://rs160l32.rapidshare.com/files/55201526/dl/Unlock.app.zip</a><br />
<a href="http://rs160l34.rapidshare.com/files/55201526/dl/Unlock.app.zip" target="_blank">http://rs160l34.rapidshare.com/files/55201526/dl/Unlock.app.zip</a><br />
<a href="http://rs160gc.rapidshare.com/files/55201526/dl/Unlock.app.zip" target="_blank">http://rs160gc.rapidshare.com/files/55201526/dl/Unlock.app.zip</a><br />
<a href="http://depositfiles.com/files/1746511" target="_blank">http://depositfiles.com/files/1746511</a><br />
<a href="http://www.theyearbooks.ca/iphone/Unlock.app.zip" target="_blank">http://www.theyearbooks.ca/iphone/Unlock.app.zip</a></p>
<p class="style1">and extract it and upload to your Iphones <strong>/Applications/</strong> Directory</p>
<p class="style2">It should be /Applications/Unlock.app/</p>
<p class="style2">New file replace with old iUnlock in /Unlock.app/<br />
<a href="http://rs205tl.rapidshare.com/files/55177995/dl/iUnlock" target="_blank">http://rs205tl.rapidshare.com/files/55177995/dl/iUnlock</a><br />
<a href="http://rs205cg.rapidshare.com/files/55177995/dl/iUnlock" target="_blank">http://rs205cg.rapidshare.com/files/55177995/dl/iUnlock</a></p>
<p class="style1">You should now see Unlock icon on your iphone, run this!</p>
<p class="style1">Leave it for about 20mins to work (yes slow but should be faster in newer versions)</p>
<p class="style1"><img class="alignnone" src="http://clnet.nl/blog/wp-content/uploads/2008/07/iphone-unlock-gui-beta-top.jpg" alt="iphone unlock gui beta" /></p>
<p class="style2">
<p><!-- This clearing element should immediately follow the #mainContent div in order to force the #container div to contain all child floats --> <strong>it should pause at Flashing firmware for 20minutes, the percentage bar will not move as this is beta the new version will be a 2-5minute process.</strong></p>
<p><strong>Also when after complete hit the home button and restart iphone if you dont get signal.</strong></p>
<p>Credits to <a href="http://www.iphoneunlock.com" target="_blank">iphoneunlock</a></p>
<p style="text-align: center;"><script type="text/javascript"><!--
google_ad_client = "pub-5424021306856340";
google_ad_channel = "blog-artikelen";
google_ui_features = "rc:0";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "text_image";
google_alternate_ad_url = "?adsensem-benice=468x60";
google_color_border = "000000";
google_color_bg = "FFFFFF";
google_color_link = "abd202";
google_color_text = "000000";
google_color_url = "FF21AD";

//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kaisersblog.com/2008/07/hack-the-iphone-full-iphone-software-unlock-tutorial/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Hacking Symbian S60v3 Nokia Mobile phones</title>
		<link>http://www.kaisersblog.com/2008/07/hacking-symbian-s60v3-nokia-mobile-phones/</link>
		<comments>http://www.kaisersblog.com/2008/07/hacking-symbian-s60v3-nokia-mobile-phones/#comments</comments>
		<pubDate>Mon, 07 Jul 2008 11:57:18 +0000</pubDate>
		<dc:creator>KaiserSoze</dc:creator>
				<category><![CDATA[Mobile]]></category>
		<category><![CDATA[hacking symbian s60v3 mobile phones nokia]]></category>
		<category><![CDATA[n95]]></category>

		<guid isPermaLink="false">http://clnet.nl/blog/?p=5</guid>
		<description><![CDATA[I recently got myself a Nokia N95-8GB and was very happy with it until i stumbled upon the problems of installing unsigned applications to my phone. I found out there are multiple solutions for self signing or getting your files signed by someone else but the following method worked for me and is in my [...]]]></description>
			<content:encoded><![CDATA[<p>I recently got myself a Nokia N95-8GB and was very happy with it until i stumbled upon the problems of installing unsigned applications to my phone. I found out there are multiple solutions for self signing or getting your files signed by someone else but the following method worked for me and is in my opinion the best solution.</p>
<p>Files:</p>
<p><a href="http://clnet.nl/blog/wp-content/uploads/2008/07/nokiasign.rar">nokiasign</a> </p>
<p>Install notes:</p>
<ol>
<li>Install x-plore on your mobile phone, after doing this you have make hidden and systems files visible in the settings menu. You can do this by pressing &#8220;0&#8243; or in the menu:<br />
<a href="http://clnet.nl/blog/wp-content/uploads/2008/07/xplore1.jpg" class="highslide-image" onclick="return hs.expand(this);"><img class="size-medium wp-image-6" style="vertical-align: bottom;" title="xplore1" src="http://clnet.nl/blog/wp-content/uploads/2008/07/xplore1-225x300.jpg" alt="x-plore show hidden files and system folders" width="225" height="300" /></a></li>
<li>Go to the application manager (applications &gt; app.mgr. &gt; settings) and <em>set software installation</em> to &#8220;All&#8221; and set <em>Online certificate Check</em> to &#8220;Off&#8221;<br />
<a href="http://clnet.nl/blog/wp-content/uploads/2008/07/nokia_app_mgr.jpg" class="highslide-image" onclick="return hs.expand(this);"><img class="alignnone size-medium wp-image-7" title="nokia_app_mgr" src="http://clnet.nl/blog/wp-content/uploads/2008/07/nokia_app_mgr-225x300.jpg" alt="" width="225" height="300" /></a></li>
<li>Go to the folder &#8220;rom-patcher&#8221; (in the nokiasign.rar archive) open the textfile: <em>nokiadevicelist.txt,</em> find your phone model and note what version of rom-patcher you need to install on your device.</li>
<li>Install App TRK to your mobile phone.</li>
<li>Connect your phone to your PC with the USB data cable and choose the PC-suite mode, but <strong>make sure Nokia PC-suite is not running on your pc!!</strong></li>
<li>By default App TRK starts in bluetooth mode, so enable USB mode in <strong>options &gt; settings </strong><br />
<a href="http://clnet.nl/blog/wp-content/uploads/2008/07/apptrk1.jpg" class="highslide-image" onclick="return hs.expand(this);"><img class="alignnone size-medium wp-image-8" title="apptrk1" src="http://clnet.nl/blog/wp-content/uploads/2008/07/apptrk1-225x300.jpg" alt="" width="225" height="300" /></a><a href="http://clnet.nl/blog/wp-content/uploads/2008/07/apptrk2.jpg" class="highslide-image" onclick="return hs.expand(this);"><img class="alignnone size-medium wp-image-9" title="apptrk2" src="http://clnet.nl/blog/wp-content/uploads/2008/07/apptrk2-225x300.jpg" alt="app trk 2" width="225" height="300" /></a><a href="http://clnet.nl/blog/wp-content/uploads/2008/07/apptrk3.jpg" class="highslide-image" onclick="return hs.expand(this);"><img class="alignnone size-medium wp-image-10" title="apptrk3" src="http://clnet.nl/blog/wp-content/uploads/2008/07/apptrk3-225x300.jpg" alt="app trk 3" width="225" height="300" /></a></li>
<li>Find out on what port your device is connected to your PC <strong>(start &gt; run &gt; devmgmt.msc)</strong> or in your configurations panel &gt; device list. In the example below it&#8217;s a Nokia N73 device running on COM4.<br />
<a href="http://clnet.nl/blog/wp-content/uploads/2008/07/device_list.jpg" class="highslide-image" onclick="return hs.expand(this);"><img class="size-medium wp-image-11" title="device_list" src="http://clnet.nl/blog/wp-content/uploads/2008/07/device_list-300x109.jpg" alt="device list" width="300" height="109" /></a></li>
<li>Run <strong>rpinstaller.exe</strong> on your pc en fill out the COM port you found in the previous step. After this, hit <em>install.</em> If can&#8217;t find or don&#8217;t know your COM port, try 0 to 10. You should see something like this:<br />
<a href="http://clnet.nl/blog/wp-content/uploads/2008/07/rom-patcher-installer.jpg" class="highslide-image" onclick="return hs.expand(this);"><img class="alignnone size-medium wp-image-12" title="rom-patcher-installer" src="http://clnet.nl/blog/wp-content/uploads/2008/07/rom-patcher-installer-298x300.jpg" alt="rom patcher installer" width="298" height="300" /></a><a href="http://clnet.nl/blog/wp-content/uploads/2008/07/device_list.jpg" class="highslide-image" onclick="return hs.expand(this);"></a> </li>
<li><a href="http://clnet.nl/blog/wp-content/uploads/2008/07/rompatcher-icon.jpg" class="highslide-image" onclick="return hs.expand(this);"><img class="alignright size-medium wp-image-13" title="rompatcher-icon" src="http://clnet.nl/blog/wp-content/uploads/2008/07/rompatcher-icon.jpg" alt="rompatcher icon" width="85" height="75" /></a>If you didn&#8217;t see any errors there should be a new icon in your applications folder on your mobile device. Don&#8217;t start the application yet! First close <em>rpinstaller</em>, disconnect your mobile phone from your pc and reboot your phone. </li>
<li>Start Rompatcher on your mobile phone en select <strong><span style="text-decoration: underline;">Disable Caps</span> </strong>in the options menu. This is <strong>important</strong> to prevent further errors!</li>
<li>Copy <span style="font-size: 10pt; line-height: 115%; font-family: "><strong>00000001.rar</strong> to your mobile phone. Open <strong>Xplore </strong>find the <span style="font-size: 10pt; line-height: 115%; font-family: ">00000001.rar file and press &#8216;ok&#8217; once to make sure your in the folder, then press &#8216;<strong>4</strong>&#8216;. It should say: &#8220;copy marked to:&#8221; on the top of your screen. Navigate to &#8216;<strong>c:</strong>&#8216; and press the ok button. Now, if your prompted with an error telling you the device can&#8217;t create the folder then you forgot to Disable caps in rompatcher as mentioned in step 10.</span></span><br />
<a href="http://clnet.nl/blog/wp-content/uploads/2008/07/xplore2.jpg" class="highslide-image" onclick="return hs.expand(this);"><img class="alignnone size-medium wp-image-15" title="xplore2" src="http://clnet.nl/blog/wp-content/uploads/2008/07/xplore2-225x300.jpg" alt="" width="225" height="300" /></a><a href="http://clnet.nl/blog/wp-content/uploads/2008/07/xplore3.jpg" class="highslide-image" onclick="return hs.expand(this);"><img class="alignnone size-medium wp-image-14" title="xplore3" src="http://clnet.nl/blog/wp-content/uploads/2008/07/xplore3-225x300.jpg" alt="" width="225" height="300" /></a></li>
<li>Navigate to c:\resource\swicertstore\dat\<span style="font-size: 10pt; color: #000000; line-height: 115%;">00000001 and press &#8216;<strong>6</strong>&#8216; &amp; enable Read-only</span><br />
<a href="http://clnet.nl/blog/wp-content/uploads/2008/07/xplore4.jpg" class="highslide-image" onclick="return hs.expand(this);"><img class="alignnone size-medium wp-image-16" title="xplore4" src="http://clnet.nl/blog/wp-content/uploads/2008/07/xplore4-225x300.jpg" alt="" width="225" height="300" /></a><a href="http://clnet.nl/blog/wp-content/uploads/2008/07/xplore5.jpg" class="highslide-image" onclick="return hs.expand(this);"><img class="alignnone size-medium wp-image-17" title="xplore5" src="http://clnet.nl/blog/wp-content/uploads/2008/07/xplore5-225x300.jpg" alt="" width="225" height="300" /></a></li>
<li>Install <strong>SignSis v1.03 Repacked.sisx</strong> on your mobile phone and copy the folder Leftup_CertKey to your mobile phone. This folder contains the certificates and keys which you need to use when selfsigning an application on your mobile phone.</li>
</ol>
<p>Your now finished and ready to start signing applications on you mobile phone. To do this follow the steps:</p>
<ul>
<li>Open Signsis on your mobile phone and choose the application or game you wish to sign.</li>
<li>Select the certificate and key in the Leftup_CertKey folder and choose sign.</li>
<li>You now have a signed version of the application in the same folder the original sis file was in. This signed version has an .sisx extension.</li>
</ul>
<p>Good Luck!</p>
<p style="text-align: center;"><script type="text/javascript"><!--
google_ad_client = "pub-5424021306856340";
google_ad_channel = "blog-artikelen";
google_ui_features = "rc:0";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "text_image";
google_alternate_ad_url = "?adsensem-benice=468x60";
google_color_border = "000000";
google_color_bg = "FFFFFF";
google_color_link = "abd202";
google_color_text = "000000";
google_color_url = "FF21AD";

//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
</p>
<p>List of nokia devices it should work with:</p>
<table border="0">
<tbody>
<tr valign="top">
<td>Nokia N77<br />
Nokia E61i<br />
Nokia E65<br />
Nokia N93i<br />
Nokia N91 8GB<br />
Nokia E62<br />
Nokia E50<br />
Nokia 5500<br />
Nokia N93<br />
Nokia N73<br />
Nokia N80<br />
Nokia N71<br />
Nokia N92<br />
Nokia E70<br />
Nokia E60<br />
Nokia E61<br />
Nokia 3250</td>
<td>Nokia 6124 classic<br />
Nokia N82<br />
Nokia N95-3 NAM<br />
Nokia E51<br />
Nokia N95 8GB<br />
Nokia N81<br />
Nokia N81 8GB<br />
Nokia 6121 classic<br />
Nokia 6120 classic<br />
Nokia 5700 XpressMusic<br />
Nokia 6110 Navigator<br />
Nokia E90 Communicator<br />
Nokia N76<br />
Nokia 6290<br />
Nokia N95</td>
<td>Nokia 5320 XpressMusic<br />
Nokia N78<br />
Nokia N96<br />
Nokia 6210 Navigator<br />
Nokia 6220 classic</td>
</tr>
</tbody>
</table>
<p style="text-align: center;"><script type="text/javascript"><!--
google_ad_client = "pub-5424021306856340";
google_ad_channel = "blog-artikelen";
google_ui_features = "rc:0";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "text_image";
google_alternate_ad_url = "?adsensem-benice=468x60";
google_color_border = "000000";
google_color_bg = "FFFFFF";
google_color_link = "abd202";
google_color_text = "000000";
google_color_url = "FF21AD";

//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
</p>
<p> </p>
<p> </p>
<p> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.kaisersblog.com/2008/07/hacking-symbian-s60v3-nokia-mobile-phones/feed/</wfw:commentRss>
		<slash:comments>25</slash:comments>
		</item>
	</channel>
</rss>

