<?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>Colin Jensen</title>
	<atom:link href="http://www.colinjensen.co.uk/blog/feed" rel="self" type="application/rss+xml" />
	<link>http://www.colinjensen.co.uk/blog</link>
	<description>Technology, Gadgets, Website Design and Development, Windows Mobile.</description>
	<lastBuildDate>Thu, 13 Aug 2009 17:02:16 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Download Jungle Flasher Mirror</title>
		<link>http://www.colinjensen.co.uk/blog/general/download-jungle-flasher-mirror</link>
		<comments>http://www.colinjensen.co.uk/blog/general/download-jungle-flasher-mirror#comments</comments>
		<pubDate>Thu, 13 Aug 2009 17:02:16 +0000</pubDate>
		<dc:creator>Colin Jensen</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[download jungle flasher]]></category>
		<category><![CDATA[ixtreme]]></category>
		<category><![CDATA[jungle flasher]]></category>
		<category><![CDATA[jungle flasher mirror]]></category>
		<category><![CDATA[xbox 360]]></category>

		<guid isPermaLink="false">http://www.colinjensen.co.uk/blog/?p=122</guid>
		<description><![CDATA[I have hosted the latest Jungle Flasher here on my blog as I have found alot of the Jungle Flasher links are down.
Jungle Flasher V0.1.65 beta &#8211; http://www.colinjensen.co.uk/blog/download/JungleFlasher.0.1.65.Beta.rar
Jungle Flasher Tutorial &#8211; http://www.colinjensen.co.uk/blog/download/JungleFlasher.pdf
]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>I have hosted the latest Jungle Flasher here on my blog as I have found alot of the Jungle Flasher links are down.</p>
<p>Jungle Flasher V0.1.65 beta &#8211; <a href="http://www.colinjensen.co.uk/blog/download/JungleFlasher.0.1.65.Beta.rar" target="_blank">http://www.colinjensen.co.uk/blog/download/JungleFlasher.0.1.65.Beta.rar</a></p>
<p>Jungle Flasher Tutorial &#8211; <a href="http://www.colinjensen.co.uk/blog/download/JungleFlasher.pdf" target="_blank">http://www.colinjensen.co.uk/blog/download/JungleFlasher.pdf</a></p>
<!-- google_ad_section_end --><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.colinjensen.co.uk%2Fblog%2Fgeneral%2Fdownload-jungle-flasher-mirror&amp;linkname=Download%20Jungle%20Flasher%20Mirror"><img src="http://www.colinjensen.co.uk/blog/wp-content/plugins/add-to-any/share_save_171_16.gif" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.colinjensen.co.uk/blog/general/download-jungle-flasher-mirror/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to convert an array or object into a string in php</title>
		<link>http://www.colinjensen.co.uk/blog/web-related/php/how-to-convert-an-array-or-object-into-a-string-in-php</link>
		<comments>http://www.colinjensen.co.uk/blog/web-related/php/how-to-convert-an-array-or-object-into-a-string-in-php#comments</comments>
		<pubDate>Sun, 09 Aug 2009 14:56:47 +0000</pubDate>
		<dc:creator>Colin Jensen</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[convert array to string]]></category>
		<category><![CDATA[convert object to string]]></category>
		<category><![CDATA[how to convert an array or object into a string]]></category>
		<category><![CDATA[php arrays]]></category>
		<category><![CDATA[php converting arrays]]></category>
		<category><![CDATA[php converting objects]]></category>
		<category><![CDATA[php objects]]></category>
		<category><![CDATA[php serialize]]></category>
		<category><![CDATA[serialize]]></category>
		<category><![CDATA[unserialize]]></category>

		<guid isPermaLink="false">http://www.colinjensen.co.uk/blog/?p=109</guid>
		<description><![CDATA[I am asked &#8220;How do I convert an array or object into a string&#8221; very frequently so I thought I would put a quick little tutorial together explaining the various different methods.
Converting an array OR object into a string(BEST METHOD)
We are going to use the functions serialize and unserialize.
These functions are very easy to use, [...]]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>I am asked &#8220;How do I convert an array or object into a string&#8221; very frequently so I thought I would put a quick little tutorial together explaining the various different methods.</p>
<p><strong><span style="text-decoration: underline;">Converting an array OR object into a string(BEST METHOD)</span></strong></p>
<p>We are going to use the functions <a href="www.php.net/serialize">serialize</a> and <a href="www.php.net/unserialize">unserialize</a>.</p>
<p>These functions are very easy to use, for example converting an array or object you would do the following:</p>
<blockquote><p>
<code><br />
$string = serialize($objectorarray);<br />
</code>
</p></blockquote>
<p>Now to convert the string back into an object or array we would do:</p>
<blockquote><p>
<code><br />
$objectorarray = unserialize($string);<br />
</code>
</p></blockquote>
<p>It really is as simple as that, <strong>however sometimes the serialize function doesn’t do a good job at escaping characters so to get around this</strong> we do the following:</p>
<blockquote><p>
<code><br />
$string =base64_encode(serialize($objectorarray)); // This converts into a string</p>
<p>$objectorarray = unserialize( base64_decode($string)); // This converts a string into an array or object<br />
</code>
</p></blockquote>
<p><strong><span style="text-decoration: underline;">Converting an array into a string (OLD FASHIONED METHOD).</span></strong></p>
<p><a href="www.php.net/implode">Implode</a> and <a href="www.php.net/explode">Explode</a> can be used to convert an array.</p>
<p>Look at my example below.</p>
<blockquote><p>
<code><br />
$myarray[] = 'Apple';</p>
<p>$myarray[] = 'Orange';</p>
<p>$string = implode('|',$myarray);</p>
<p>echo $string; // This would return Apple|Orange<br />
</code>
</p></blockquote>
<p>Using the example above, the implode function takes two parameters.  First our separator and second our array.</p>
<p>To now convert the string BACK into an array we use explode. See the example below.</p>
<blockquote><p>
<code><br />
$string = 'Apple|Orange';</p>
<p>$myarray = explode('|',$string);</p>
<p>print_r($myarray);<br />
</code>
</p></blockquote>
<p>The explode function takes pretty much the same parameters as implode except it looks for a string rather then an array.</p>
<p><strong><span style="text-decoration: underline;">Why would you want to convert an array or object into a string?</span></strong></p>
<p>When saving vast amounts of data into a mysql table or even a text file, all you would need to do using the method above is save the string into the file or into a table row.  Very useful if you have plenty of dynamic data&#8230; No need to create lots of column names when you can save the object or array into a single row!</p>
<!-- google_ad_section_end --><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.colinjensen.co.uk%2Fblog%2Fweb-related%2Fphp%2Fhow-to-convert-an-array-or-object-into-a-string-in-php&amp;linkname=How%20to%20convert%20an%20array%20or%20object%20into%20a%20string%20in%20php"><img src="http://www.colinjensen.co.uk/blog/wp-content/plugins/add-to-any/share_save_171_16.gif" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.colinjensen.co.uk/blog/web-related/php/how-to-convert-an-array-or-object-into-a-string-in-php/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Sky Player on XBOX 360 Leaked Screenshots</title>
		<link>http://www.colinjensen.co.uk/blog/xbox-360/sky-player-on-xbox-360-leaked-screenshots</link>
		<comments>http://www.colinjensen.co.uk/blog/xbox-360/sky-player-on-xbox-360-leaked-screenshots#comments</comments>
		<pubDate>Sun, 09 Aug 2009 14:11:14 +0000</pubDate>
		<dc:creator>Colin Jensen</dc:creator>
				<category><![CDATA[xbox 360]]></category>
		<category><![CDATA[leaked sky player]]></category>
		<category><![CDATA[leaked sky player screenshots]]></category>
		<category><![CDATA[leaked sky screenshots]]></category>
		<category><![CDATA[sky player release date]]></category>
		<category><![CDATA[sky player xbox live]]></category>
		<category><![CDATA[xbox 360 sky player]]></category>

		<guid isPermaLink="false">http://www.colinjensen.co.uk/blog/?p=86</guid>
		<description><![CDATA[There are many leaked screenshots of the Sky Player available online. I have gathered a few and posted them here for you!

I really am excited about the Sky Player coming to the XBOX 360 &#8211; I really do think it will be a great addon! It is expected to be released around September 09.
Pricing has [...]]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>There are many leaked screenshots of the Sky Player available online. I have gathered a few and posted them here for you!<br />
<a href="http://www.colinjensen.co.uk/blog/wp-content/uploads/2009/08/p5280199.jpg" rel="lightbox[86]"><img class="size-full wp-image-101" title="p5280199" src="http://www.colinjensen.co.uk/blog/wp-content/uploads/2009/08/p5280199.jpg" alt="Cheering options" width="500" /></a><a href="http://www.colinjensen.co.uk/blog/wp-content/uploads/2009/08/multi.jpg" rel="lightbox[86]"><img class="alignnone size-full wp-image-100" title="multi" src="http://www.colinjensen.co.uk/blog/wp-content/uploads/2009/08/multi.jpg" alt="multi" width="500" /></a><a href="http://www.colinjensen.co.uk/blog/wp-content/uploads/2009/08/XBoxSkyPlayer4_thumb2.jpg" rel="lightbox[86]"><img class="alignnone size-full wp-image-99" title="XBoxSkyPlayer4_thumb2" src="http://www.colinjensen.co.uk/blog/wp-content/uploads/2009/08/XBoxSkyPlayer4_thumb2.jpg" alt="XBoxSkyPlayer4_thumb2" width="500" /></a><a href="http://www.colinjensen.co.uk/blog/wp-content/uploads/2009/08/XBoxSkyPlayer1_thumb3.jpg" rel="lightbox[86]"><img class="alignnone size-full wp-image-98" title="XBoxSkyPlayer1_thumb3" src="http://www.colinjensen.co.uk/blog/wp-content/uploads/2009/08/XBoxSkyPlayer1_thumb3.jpg" alt="XBoxSkyPlayer1_thumb3" width="500" /></a><a href="http://www.colinjensen.co.uk/blog/wp-content/uploads/2009/08/sky-player-comes-xbox-360-12.jpg" rel="lightbox[86]"><img class="alignnone size-full wp-image-97" title="sky-player-comes-xbox-360-12" src="http://www.colinjensen.co.uk/blog/wp-content/uploads/2009/08/sky-player-comes-xbox-360-12.jpg" alt="sky-player-comes-xbox-360-12" width="500" /></a><a href="http://www.colinjensen.co.uk/blog/wp-content/uploads/2009/08/sky-player-comes-xbox-360-11.jpg" rel="lightbox[86]"><img class="alignnone size-full wp-image-96" title="sky-player-comes-xbox-360-11" src="http://www.colinjensen.co.uk/blog/wp-content/uploads/2009/08/sky-player-comes-xbox-360-11.jpg" alt="sky-player-comes-xbox-360-11" width="500" /></a><a href="http://www.colinjensen.co.uk/blog/wp-content/uploads/2009/08/sky-player-comes-xbox-360-10.jpg" rel="lightbox[86]"><img class="alignnone size-full wp-image-95" title="sky-player-comes-xbox-360-10" src="http://www.colinjensen.co.uk/blog/wp-content/uploads/2009/08/sky-player-comes-xbox-360-10.jpg" alt="sky-player-comes-xbox-360-10" width="500" /></a><a href="http://www.colinjensen.co.uk/blog/wp-content/uploads/2009/08/sky-player-comes-xbox-360-9.jpg" rel="lightbox[86]"><img class="alignnone size-full wp-image-94" title="sky-player-comes-xbox-360-9" src="http://www.colinjensen.co.uk/blog/wp-content/uploads/2009/08/sky-player-comes-xbox-360-9.jpg" alt="sky-player-comes-xbox-360-9" width="500" /></a><a href="http://www.colinjensen.co.uk/blog/wp-content/uploads/2009/08/sky-player-comes-xbox-360-8.jpg" rel="lightbox[86]"><img class="alignnone size-full wp-image-93" title="sky-player-comes-xbox-360-8" src="http://www.colinjensen.co.uk/blog/wp-content/uploads/2009/08/sky-player-comes-xbox-360-8.jpg" alt="sky-player-comes-xbox-360-8" width="500" /></a><a href="http://www.colinjensen.co.uk/blog/wp-content/uploads/2009/08/sky-player-comes-xbox-360-7.jpg" rel="lightbox[86]"><img class="alignnone size-full wp-image-92" title="sky-player-comes-xbox-360-7" src="http://www.colinjensen.co.uk/blog/wp-content/uploads/2009/08/sky-player-comes-xbox-360-7.jpg" alt="sky-player-comes-xbox-360-7" width="500" /></a><a href="http://www.colinjensen.co.uk/blog/wp-content/uploads/2009/08/sky-player-comes-xbox-360-6.jpg" rel="lightbox[86]"><img class="alignnone size-full wp-image-91" title="sky-player-comes-xbox-360-6" src="http://www.colinjensen.co.uk/blog/wp-content/uploads/2009/08/sky-player-comes-xbox-360-6.jpg" alt="sky-player-comes-xbox-360-6" width="500" /></a><a href="http://www.colinjensen.co.uk/blog/wp-content/uploads/2009/08/sky-player-comes-xbox-360-5.jpg" rel="lightbox[86]"><img class="alignnone size-full wp-image-90" title="sky-player-comes-xbox-360-5" src="http://www.colinjensen.co.uk/blog/wp-content/uploads/2009/08/sky-player-comes-xbox-360-5.jpg" alt="sky-player-comes-xbox-360-5" width="500" /></a><a href="http://www.colinjensen.co.uk/blog/wp-content/uploads/2009/08/sky-player-comes-xbox-360-4.jpg" rel="lightbox[86]"><img class="alignnone size-full wp-image-89" title="sky-player-comes-xbox-360-4" src="http://www.colinjensen.co.uk/blog/wp-content/uploads/2009/08/sky-player-comes-xbox-360-4.jpg" alt="sky-player-comes-xbox-360-4" width="500" /></a><a href="http://www.colinjensen.co.uk/blog/wp-content/uploads/2009/08/sky-player-comes-xbox-360-3.jpg" rel="lightbox[86]"><img class="alignnone size-full wp-image-88" title="sky-player-comes-xbox-360-3" src="http://www.colinjensen.co.uk/blog/wp-content/uploads/2009/08/sky-player-comes-xbox-360-3.jpg" alt="sky-player-comes-xbox-360-3" width="500" /></a><a href="http://www.colinjensen.co.uk/blog/wp-content/uploads/2009/08/sky-player-comes-xbox-360-2.jpg" rel="lightbox[86]"><img class="alignnone size-full wp-image-87" title="sky-player-comes-xbox-360-2" src="http://www.colinjensen.co.uk/blog/wp-content/uploads/2009/08/sky-player-comes-xbox-360-2.jpg" alt="sky-player-comes-xbox-360-2" width="500" /></a></p>
<p>I really am excited about the Sky Player coming to the XBOX 360 &#8211; I really do think it will be a great addon! It is expected to be released around September 09.</p>
<p>Pricing has not been confirmed but people are speculating it will be based on similiar pricing of the actual <a title="Sky Player" href="https://skyplayer.sky.com/">Online Sky Player.</a></p>
<p><strong>Resources</strong></p>
<p>http://www.homecinemachoice.com/blogs/team+hcc/sky+tv+offer+sports+and+more+through+microsofts+xbox+360+29+05+09</p>
<p>http://xboxhornet.wordpress.com/2009/05/29/sky-tv-coming-to-xbox-360/</p>
<p>http://beighton360.spaces.live.com/blog/cns!873E0BCB08A3E4A!445.entry</p>
<p>http://www.pocket-lint.com/news/news.phtml/24407/gallery/sky-player-comes-xbox-360-1.html</p>
<p><strong><br />
</strong></p>
<!-- google_ad_section_end --><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.colinjensen.co.uk%2Fblog%2Fxbox-360%2Fsky-player-on-xbox-360-leaked-screenshots&amp;linkname=Sky%20Player%20on%20XBOX%20360%20Leaked%20Screenshots"><img src="http://www.colinjensen.co.uk/blog/wp-content/plugins/add-to-any/share_save_171_16.gif" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.colinjensen.co.uk/blog/xbox-360/sky-player-on-xbox-360-leaked-screenshots/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to upload an image to the internet</title>
		<link>http://www.colinjensen.co.uk/blog/web-related/how-to-upload-an-image-to-the-internet</link>
		<comments>http://www.colinjensen.co.uk/blog/web-related/how-to-upload-an-image-to-the-internet#comments</comments>
		<pubDate>Sun, 28 Dec 2008 22:52:51 +0000</pubDate>
		<dc:creator>Colin Jensen</dc:creator>
				<category><![CDATA[Web Related]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[free image hosting]]></category>
		<category><![CDATA[host image]]></category>
		<category><![CDATA[image uploading]]></category>
		<category><![CDATA[picture upload]]></category>
		<category><![CDATA[upload a picture]]></category>

		<guid isPermaLink="false">http://www.colinjensen.co.uk/blog/?p=76</guid>
		<description><![CDATA[I have recently put together a little website that allows anybody to upload an image for free!
Please note that if the image you upload is not viewed for any longer then 3 months it will be deleted.
Click here to visit the website TheImageDump.com
Spread the word please!
]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>I have recently put together a little website that allows anybody to upload an image for free!</p>
<p>Please note that if the image you upload is not viewed for any longer then 3 months it will be deleted.</p>
<p>Click here to visit the website <a href="http://www.theimagedump.com" target="_blank">TheImageDump.com</a></p>
<p>Spread the word please!</p>
<!-- google_ad_section_end --><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.colinjensen.co.uk%2Fblog%2Fweb-related%2Fhow-to-upload-an-image-to-the-internet&amp;linkname=How%20to%20upload%20an%20image%20to%20the%20internet"><img src="http://www.colinjensen.co.uk/blog/wp-content/plugins/add-to-any/share_save_171_16.gif" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.colinjensen.co.uk/blog/web-related/how-to-upload-an-image-to-the-internet/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ixtreme 1.5 Released Mirror Download</title>
		<link>http://www.colinjensen.co.uk/blog/general/ixtreme-15-released-mirror-download</link>
		<comments>http://www.colinjensen.co.uk/blog/general/ixtreme-15-released-mirror-download#comments</comments>
		<pubDate>Wed, 24 Dec 2008 04:39:47 +0000</pubDate>
		<dc:creator>Colin Jensen</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[download ixtreme]]></category>
		<category><![CDATA[ixtreme]]></category>
		<category><![CDATA[ixtreme 1.5]]></category>
		<category><![CDATA[lite-on]]></category>
		<category><![CDATA[liteon]]></category>
		<category><![CDATA[xbox 360]]></category>
		<category><![CDATA[xbox 360 firmware]]></category>
		<category><![CDATA[xbox flashing]]></category>

		<guid isPermaLink="false">http://www.colinjensen.co.uk/blog/?p=72</guid>
		<description><![CDATA[Ixtreme 1.5 is now out  
This is what many people have been waiting for!
CLICK HERE TO DOWNLOAD
This a big update: firmware is ready for the very latest Xbox 360 drives.
There are reports that people are having trouble using a VIA chipset with the Liteon
Click here for more information
]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p><strong>Ixtreme 1.5 is now out <img src='http://www.colinjensen.co.uk/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </strong></p>
<p>This is what many people have been waiting for!</p>
<p><a href="http://www.colinjensen.co.uk/blog/wp-content/uploads/2008/12/ixtreme_15.rar">CLICK HERE TO DOWNLOAD</a></p>
<p>This a big update: firmware is ready for the very latest Xbox 360 drives.</p>
<p>There are reports that people are having trouble using a VIA chipset with the Liteon</p>
<p><a href="http://pastebin.ca/1292480">Click here for more information</a></p>
<!-- google_ad_section_end --><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.colinjensen.co.uk%2Fblog%2Fgeneral%2Fixtreme-15-released-mirror-download&amp;linkname=Ixtreme%201.5%20Released%20Mirror%20Download"><img src="http://www.colinjensen.co.uk/blog/wp-content/plugins/add-to-any/share_save_171_16.gif" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.colinjensen.co.uk/blog/general/ixtreme-15-released-mirror-download/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>1.5 Ixtreme Lite on 20th December update</title>
		<link>http://www.colinjensen.co.uk/blog/general/ixtreme-lite-on-20th-december-update</link>
		<comments>http://www.colinjensen.co.uk/blog/general/ixtreme-lite-on-20th-december-update#comments</comments>
		<pubDate>Mon, 22 Dec 2008 03:55:49 +0000</pubDate>
		<dc:creator>Colin Jensen</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.colinjensen.co.uk/blog/?p=57</guid>
		<description><![CDATA[Release date is confirmed for the 24th of December!
Beta testing is going well!

2008-12-20
[07:29] &#60;c4eva&#62; ix15 for sammy,benq,liteon has been
marked final and are undergoing final testing!
[07:31] &#60;c4eva&#62; merry christmas everyone!
[07:32] &#60;c4eva&#62; happy new year as well!
[07:34] &#60;prankster&#62; c4eva: are the flash tools for liteon cli or gui?
[07:34] &#60;c4eva&#62; both
[07:35] &#60;c4eva&#62; liteon truely is the best drive! [...]]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><pre><strong>Release date is confirmed for the 24th of December!
Beta testing is going well!</strong>

2008-12-20
[07:29] &lt;c4eva&gt; ix15 for sammy,benq,liteon has been
marked final and are undergoing final testing!
[07:31] &lt;c4eva&gt; merry christmas everyone!
[07:32] &lt;c4eva&gt; happy new year as well!
[07:34] &lt;prankster&gt; c4eva: are the flash tools for liteon cli or gui?
[07:34] &lt;c4eva&gt; both
[07:35] &lt;c4eva&gt; liteon truely is the best drive! very impressed!

<a title="http://nopaste.com/p/aTNIovEQq" href="http://nopaste.com/p/aTNIovEQq" target="_blank">For more information and to view the chat log click here</a></pre>
<!-- google_ad_section_end --><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.colinjensen.co.uk%2Fblog%2Fgeneral%2Fixtreme-lite-on-20th-december-update&amp;linkname=1.5%20Ixtreme%20Lite%20on%2020th%20December%20update"><img src="http://www.colinjensen.co.uk/blog/wp-content/plugins/add-to-any/share_save_171_16.gif" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.colinjensen.co.uk/blog/general/ixtreme-lite-on-20th-december-update/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The best ftp client</title>
		<link>http://www.colinjensen.co.uk/blog/general/the-best-ftp-client</link>
		<comments>http://www.colinjensen.co.uk/blog/general/the-best-ftp-client#comments</comments>
		<pubDate>Mon, 15 Dec 2008 01:37:04 +0000</pubDate>
		<dc:creator>Colin Jensen</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[best ftp client]]></category>
		<category><![CDATA[bitkinex review]]></category>
		<category><![CDATA[download ftp client]]></category>
		<category><![CDATA[ftp client]]></category>
		<category><![CDATA[recommended ftp client]]></category>
		<category><![CDATA[the best ftp client]]></category>

		<guid isPermaLink="false">http://www.colinjensen.co.uk/blog/?p=39</guid>
		<description><![CDATA[If you are a website developer like me or just download files from FTP servers every now and then you will be using some kind of FTP client but does it really have any useful features?
After doing some hard core research I found some people mention BitKinex, the name doesn&#8217;t really do it any favours [...]]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>If you are a website developer like me or just download files from FTP servers every now and then you will be using some kind of FTP client but does it really have any useful features?</p>
<p>After doing some hard core research I found some people mention <a href="http://www.bitkinex.com/" target="_blank">BitKinex</a>, the name doesn&#8217;t really do it any favours as it doesn&#8217;t stand out to be an FTP client in any way but I thought hmm I will give it a shot.</p>
<p><span style="text-decoration: underline;"><strong>What I like about <a href="http://www.bitkinex.com/" target="_blank">BitKinex</a></strong></span></p>
<p>There are many FTP clients out there such as Smart FTP and File Zilla but they all lack one important feature for me:  <strong>FTP Websites Management</strong></p>
<p><a href="http://www.bitkinex.com/" target="_blank">BitKinex</a> has this awesome straight in your face window with a tree structure of all the saved ftp server profiles, you can organise them into folders which is very handy for being a website developer with all the different client websites I have access to.  Just take a look at the  screenshot below:</p>
<div id="attachment_41" class="wp-caption alignnone" style="width: 245px"><a href="http://www.colinjensen.co.uk/blog/wp-content/uploads/2008/12/ftp.jpg" rel="lightbox[39]"><img class="size-full wp-image-41" title="Tree structure of FTP sites" src="http://www.colinjensen.co.uk/blog/wp-content/uploads/2008/12/ftpsmall.jpg" alt="Click on the image to enlarge" width="235" height="453" /></a><p class="wp-caption-text">Click on the image to enlarge</p></div>
<p>Another great feature I love about <a href="http://www.bitkinex.com/" target="_blank">BitKinex</a> is if you need to have more then one FTP server open all you do is go back to the main tree window and double click the server and it opens a new window then automatically connects!</p>
<p>For each FTP Server window you can drag items in from windows explorer, drag between each window and also set a default directory for when you connect! The features are endless!</p>
<p>For speed you can set the amount of connections it will use on each ftp server so you can upload and browse files MUCH much faster.</p>
<p>You can specify rules, what to download and what not to download by the file types etc.</p>
<p>I did use <a href="http://www.smartftp.com/" target="_blank">Smart FTP</a> and <a href="http://filezilla-project.org/" target="_blank">Filezilla</a> for a very long time and I thought they were the best clients out there until I tried <a href="http://www.bitkinex.com/" target="_blank">BitKinex</a>.</p>
<p><span style="text-decoration: underline;"><strong>Want more information and the developer&#8217;s full description / features</strong>?</span></p>
<p><a href="http://www.bitkinex.com/why.php" target="_blank">Click here to view &#8220;Why use BitKinex&#8221;</a></p>
<p><span style="text-decoration: underline;"><strong>Where do I download BitKinex?</strong></span></p>
<p>If you are interested <a title="http://www.bitkinex.com/" href="http://www.bitkinex.com/" target="_blank">click here to download BitKinex</a>.<span style="text-decoration: underline;"><strong></strong></span></p>
<p><span style="text-decoration: underline;"><strong>What does FTP stand for?</strong></span></p>
<p>File Transfer Protocol<strong>.</strong></p>
<p><strong><br />
</strong></p>
<!-- google_ad_section_end --><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.colinjensen.co.uk%2Fblog%2Fgeneral%2Fthe-best-ftp-client&amp;linkname=The%20best%20ftp%20client"><img src="http://www.colinjensen.co.uk/blog/wp-content/plugins/add-to-any/share_save_171_16.gif" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.colinjensen.co.uk/blog/general/the-best-ftp-client/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>1.5 Ixtreme Lite on 15th December update</title>
		<link>http://www.colinjensen.co.uk/blog/xbox-360/15-ixtreme-15th-december-update</link>
		<comments>http://www.colinjensen.co.uk/blog/xbox-360/15-ixtreme-15th-december-update#comments</comments>
		<pubDate>Mon, 15 Dec 2008 00:52:22 +0000</pubDate>
		<dc:creator>Colin Jensen</dc:creator>
				<category><![CDATA[xbox 360]]></category>
		<category><![CDATA[15th december]]></category>
		<category><![CDATA[december]]></category>
		<category><![CDATA[ixtreme 1.5]]></category>
		<category><![CDATA[lite-on]]></category>

		<guid isPermaLink="false">http://www.colinjensen.co.uk/blog/general/15-ixtreme-15th-december-update</guid>
		<description><![CDATA[2008-12-13
[23:38] &#60;+c4eva&#62; ixtreme 1.5 benq &#8211; fixed all read issues, now reads same as liteon!
[04:14] &#60;+c4eva&#62; 0800 &#62; kreon always!
[04:16] &#60;+c4eva&#62; 0800 for sammy,benq or liteon is best, oops last one not released yet!  
[04:20] &#60;+c4eva&#62; benq ixtreme 1.5 reading backups flawlessly now! on par with sammy/liteon!
[04:21]  so what is left now c4eva?
[04:21] [...]]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>2008-12-13<br />
[23:38] &lt;+c4eva&gt; ixtreme 1.5 benq &#8211; fixed all read issues, now reads same as liteon!<br />
[04:14] &lt;+c4eva&gt; 0800 &gt; kreon always!<br />
[04:16] &lt;+c4eva&gt; 0800 for sammy,benq or liteon is best, oops last one not released yet! <img src='http://www.colinjensen.co.uk/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> <br />
[04:20] &lt;+c4eva&gt; benq ixtreme 1.5 reading backups flawlessly now! on par with sammy/liteon!<br />
[04:21]  so what is left now c4eva?<br />
[04:21] &lt;+c4eva&gt; sammy and always hitachi last <img src='http://www.colinjensen.co.uk/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> <br />
[04:25] &lt;+c4eva&gt; liteon is done coding, hence the benq update!<br />
[04:26]  hey c4eva is there new checks that MS can do to ban 1.41 benq or is it necessary to update to 1.5?<br />
[04:26] &lt;+c4eva&gt; there will be a 0800 for liteon, so yes<br />
[04:42] &lt;+canolyb1&gt; i guess samsung/benq doesnt give a fuck about booktype<br />
[04:42] &lt;+c4eva&gt; booktype is not required for some time</p>
<p>We are closing in on the release date of 24th of December.</p>
<p><a title="http://nopaste.com/p/aWOGsHl3" href="http://nopaste.com/p/aWOGsHl3" target="_blank">Click here for the log</a></p>
<!-- google_ad_section_end --><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.colinjensen.co.uk%2Fblog%2Fxbox-360%2F15-ixtreme-15th-december-update&amp;linkname=1.5%20Ixtreme%20Lite%20on%2015th%20December%20update"><img src="http://www.colinjensen.co.uk/blog/wp-content/plugins/add-to-any/share_save_171_16.gif" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.colinjensen.co.uk/blog/xbox-360/15-ixtreme-15th-december-update/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to control your Pocket PC / Windows Mobile from your computer</title>
		<link>http://www.colinjensen.co.uk/blog/windows-mobile/how-to-control-your-pocket-pc-windows-mobile-from-your-computer</link>
		<comments>http://www.colinjensen.co.uk/blog/windows-mobile/how-to-control-your-pocket-pc-windows-mobile-from-your-computer#comments</comments>
		<pubDate>Sun, 14 Dec 2008 01:37:05 +0000</pubDate>
		<dc:creator>Colin Jensen</dc:creator>
				<category><![CDATA[Windows Mobile]]></category>
		<category><![CDATA[control my pocket pc]]></category>
		<category><![CDATA[control my windows mobile]]></category>
		<category><![CDATA[control your pocket pc]]></category>
		<category><![CDATA[control your windows mobile]]></category>
		<category><![CDATA[download my mobiler]]></category>
		<category><![CDATA[download mymobiler]]></category>
		<category><![CDATA[htc kaiser]]></category>
		<category><![CDATA[mymobiler]]></category>
		<category><![CDATA[remote desktop pocket pc]]></category>
		<category><![CDATA[remote view]]></category>

		<guid isPermaLink="false">http://www.colinjensen.co.uk/blog/?p=27</guid>
		<description><![CDATA[Controlling your Pocket PC or Windows mobile device is very simple! For those of you who have used Remote Desktop to access a computer it is pretty much the same concept &#8211; It is just like remoting into your Pocket PC / Windows mobile device.
I currently have a HTC Kaiser, I found that when I [...]]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>Controlling your <a href="http://en.wikipedia.org/wiki/Pocket_pc" target="_blank">Pocket PC</a> or <a href="http://en.wikipedia.org/wiki/Windows_mobile" target="_blank">Windows mobile</a> device is very simple! For those of you who have used <a href="http://en.wikipedia.org/wiki/Remote_desktop" target="_blank">Remote Desktop</a> to access a computer it is pretty much the same concept &#8211; It is just like remoting into your <a href="http://en.wikipedia.org/wiki/Pocket_pc" target="_blank">Pocket PC</a> /<a href="http://en.wikipedia.org/wiki/Windows_mobile" target="_blank"> Windows mobile device</a>.</p>
<p>I currently have a <a href="http://en.wikipedia.org/wiki/HTC_Kaiser" target="_blank">HTC Kaiser</a>, I found that when I was sat at my computer and I wanted to do something on my <a href="http://en.wikipedia.org/wiki/HTC_Kaiser" target="_blank">HTC Kaiser</a> it was just annoying having to pick the device up each time from its cradle (Bought from <a href="http://www.ebay.com" target="_blank">Ebay</a>).</p>
<p>So I went in search for an application that would allow me to control my <a href="http://en.wikipedia.org/wiki/Windows_mobile" target="_blank">Windows Mobile</a> from my computer and that’s when I came across <a href="http://www.mymobiler.com" target="_blank">MyMobiler</a>.</p>
<p><a href="http://www.mymobiler.com" target="_blank">MyMobiler</a> is a very easy to use application! It works along side <a href="http://en.wikipedia.org/wiki/ActiveSync" target="_blank">ActiveSync</a> or <a href="http://en.wikipedia.org/wiki/Windows_Mobile_Device_Center" target="_blank">Windows Mobile Device Center</a> (Vista&#8217;s version of <a href="http://en.wikipedia.org/wiki/ActiveSync" target="_blank">ActiveSync</a>) &#8211; When it detects that <a href="http://en.wikipedia.org/wiki/ActiveSync" target="_blank">ActiveSync</a> finds your phone it fires up the <a href="http://www.mymobiler.com" target="_blank">MyMobiler</a> application instantly, this allowing you to view your mobile phone using your mouse AND keyboard!</p>
<p><span style="text-decoration: underline;"><strong>Screenshots</strong></span></p>
<div id="attachment_28" class="wp-caption alignnone" style="width: 257px"><img class="size-full wp-image-28" title="MyMobiler viewing HTC Kaiser Windows Mobile" src="http://www.colinjensen.co.uk/blog/wp-content/uploads/2008/12/phone.jpg" alt="MyMobiler viewing HTC Kaiser Windows Mobile" width="247" height="409" /><p class="wp-caption-text">MyMobiler viewing HTC Kaiser Windows Mobile</p></div>
<div id="attachment_29" class="wp-caption alignnone" style="width: 289px"><img class="size-full wp-image-29" title="MyMobiler detecting HTC Kaiser connection to computer" src="http://www.colinjensen.co.uk/blog/wp-content/uploads/2008/12/clock.jpg" alt="MyMobiler detecting HTC Kaiser connection to computer" width="279" height="158" /><p class="wp-caption-text">MyMobiler detecting HTC Kaiser connection to computer</p></div>
<p><strong>Ok, so where do I get this amazing <a href="http://www.mymobiler.com" target="_blank">MyMobiler</a>?</strong><br />
<a href="http://www.mymobiler.com" target="_blank">http://www.mymobiler.com</a> if for any reason the website is down (Which as of writing this article it seems to be) I have provided a mirror for the download.<br />
<a href="http://www.colinjensen.co.uk/blog/downloads/MyMobile123.exe" target="_blank">Click here to download MyMobiler 1.23 (516kb) </a></p>
<p><span style="text-decoration: underline;"><strong>Resources</strong></span></p>
<p><a href="http://www.wikipedia.com" target="_blank">http://www.wikipedia.com</a></p>
<p><a href="http://www.mymobiler.com" target="_blank">http://www.mymobiler.com</a></p>
<!-- google_ad_section_end --><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.colinjensen.co.uk%2Fblog%2Fwindows-mobile%2Fhow-to-control-your-pocket-pc-windows-mobile-from-your-computer&amp;linkname=How%20to%20control%20your%20Pocket%20PC%20%2F%20Windows%20Mobile%20from%20your%20computer"><img src="http://www.colinjensen.co.uk/blog/wp-content/plugins/add-to-any/share_save_171_16.gif" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.colinjensen.co.uk/blog/windows-mobile/how-to-control-your-pocket-pc-windows-mobile-from-your-computer/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to burn a Wii game / iso</title>
		<link>http://www.colinjensen.co.uk/blog/tips-and-tricks/how-to-burn-a-wii-game-iso</link>
		<comments>http://www.colinjensen.co.uk/blog/tips-and-tricks/how-to-burn-a-wii-game-iso#comments</comments>
		<pubDate>Thu, 11 Dec 2008 07:30:00 +0000</pubDate>
		<dc:creator>Colin Jensen</dc:creator>
				<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Wii Console]]></category>
		<category><![CDATA[burn iso]]></category>
		<category><![CDATA[burn wii games]]></category>
		<category><![CDATA[download wii games]]></category>
		<category><![CDATA[how to burn a iso]]></category>
		<category><![CDATA[how to burn a wii game]]></category>
		<category><![CDATA[how to burn a wii iso]]></category>
		<category><![CDATA[wii]]></category>
		<category><![CDATA[wii iso]]></category>

		<guid isPermaLink="false">http://www.colinjensen.co.uk/blog/?p=25</guid>
		<description><![CDATA[IMPORTANT: You should only ever burn a game that you already own. Downloading a burning games that you do not own is illegal.
What you need.

DVD Writer
High quality DVD-R discs &#8211; I use Verbatim they are by far the best quality (Click here to view)
The game ISO that you have downloaded from Usenet or Torrents.
Nero Burning [...]]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p><strong>IMPORTANT</strong>: You should only ever burn a game that you already own. Downloading a burning games that you do not own is illegal.</p>
<p><span style="text-decoration: underline;"><strong>What you need</strong></span>.</p>
<ul>
<li>DVD Writer</li>
<li>High quality DVD-R discs &#8211; I use Verbatim they are by far the best quality (<a title="http://www.burn-media.co.uk/great_value_Verbatim-16x-DVD-R-Full-Faced-(Wide)-Printable---50-Cake-Tub---VERBATI024-pr-23980-c-423-p-1.html" href="http://www.burn-media.co.uk/great_value_Verbatim-16x-DVD-R-Full-Faced-(Wide)-Printable---50-Cake-Tub---VERBATI024-pr-23980-c-423-p-1.html" target="_blank">Click here to view</a>)</li>
<li>The game ISO that you have downloaded from Usenet or Torrents.</li>
<li>Nero Burning Rom or something similiar.</li>
</ul>
<p><span style="text-decoration: underline;"><strong>Instructions</strong></span></p>
<ol>
<li>Open up Nero Burning Rom and go to File -&gt; Open -&gt; Browse to the ISO, Click it and then Click &#8220;Open&#8221;. <strong>For Nero Express</strong> Click &#8220;Image, Project, Copy&#8221; and then Click &#8220;Disc Image or Saved project&#8221;</li>
<li>Now it is very important that you burn at a low speed, the Wii console will simply struggle to read it if you burn at a fast speed.<br />
<strong>If you are using Nero Burning Rom</strong> you will now see a window titled &#8220;Burn Compilation&#8221;. Make sure &#8220;Write&#8221; and &#8220;Finalize Disc&#8221; are ticked. Make sure &#8220;Write Speed&#8221; is set to 2x now click burn.<br />
If you are using <strong>Nero Express</strong> you will see some options appear.  There should be a little arrow to the left of the window, click it and some more options will appear.  Change the &#8220;Write Speed&#8221; to 2x and now click burn.</li>
<li>If you have a blank disk in the drive it will start burning, if not it will open the drive and ask for a blank disc.</li>
<li>Now all you have to do it wait.  Once it has finished burning (around 30 minutes) go pop it in your chipped Wii and you are ready to go.</li>
</ol>
<!-- google_ad_section_end --><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.colinjensen.co.uk%2Fblog%2Ftips-and-tricks%2Fhow-to-burn-a-wii-game-iso&amp;linkname=How%20to%20burn%20a%20Wii%20game%20%2F%20iso"><img src="http://www.colinjensen.co.uk/blog/wp-content/plugins/add-to-any/share_save_171_16.gif" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.colinjensen.co.uk/blog/tips-and-tricks/how-to-burn-a-wii-game-iso/feed</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
	</channel>
</rss>
