<?xml version="1.0" encoding="iso-8859-1"?>
<!-- PHP/XML RSS Feed by Charanjit Chana - http://www.cchana.co.uk for Be Unequaled -->
<rss version="2.0">
   <channel>
      <title>Charanjit Chana's Blog</title>
      <link>http://blog.charanj.it</link>
      <description>The personal blog of Charanjit Chana</description>
      <language>en-uk</language>
      <category>Technology, design, programming, sport, entertainment</category>
      <pubDate>Sat, 13 Mar 2010 00:25:01 -0800</pubDate>
      <lastBuildDate>Thu, 11 Mar 2010 10:10:52 -0800</lastBuildDate>     
      <docs>http://www.rssboard.org/rss-specification</docs>
      <managingEditor>hello@charanj.it</managingEditor>
      <webMaster>hello@charanj.it</webMaster>
    <item>
                      <title>Nike+PHP's new home</title>
	              <link>http://blog.charanj.it/post/168/nike-php-s-new-home</link>
	              <description><![CDATA[
	              <p>While the code itself still sits over on Google Code, <a href="http://nikeplusphp.org" onclick="window.open(this.href); return false;">Nike+PHP's support site now has a new look</a>!<br />
<br />
I've moved it onto a Wordpress platform which makes administration and updating the site easier.</p>
	              ]]></description>
	              <pubDate>Thu, 11 Mar 2010 10:10:52</pubDate>
	            </item>
		    <item>
                      <title>Nike+PHP progress and branding</title>
	              <link>http://blog.charanj.it/post/167/nike-php-progress-and-branding</link>
	              <description><![CDATA[
	              <p>Version 1 or Nike+PHP has been out for a while and earlier this month I released v1.2.1.<br />
<br />
The code has been downloaded over 100 times and I'm extremely proud of that fact! I would love to see how people are using the code, so please add to the Examples page on the <a href="http://code.google.com/p/nike-plus-php/w/list" onclick="window.open(this.href); return false;">wiki</a>.<br />
<br />
I also changed the branding for the project a little bit, but need time to work on the site, something I might do in March. The site is a little bright, something I wanted it to be, but I'll be toning it down a bit in the next refresh.<br />
<br />
The old logo was dark, plain and, well, just boring!<br />
<br />
<img src="http://nikeplusphp.org/elements/nikeplusphp.png" alt="image" /><br />
<br />
The new one is lighter, has a bit of depth and contains the Nike logo (hope I don't get into any trouble for that!).<br />
<br />
<img src="http://nikeplusphp.org/elements/nike+phplogo.png" alt="image" /></p>
	              ]]></description>
	              <pubDate>Fri, 19 Feb 2010 16:55:21</pubDate>
	            </item>
		    <item>
                      <title>2010 or ten past eight?</title>
	              <link>http://blog.charanj.it/post/166/2010-or-ten-past-eight-</link>
	              <description><![CDATA[
	              <p>Possibly the best way of pronouncing the new year, 20:10 has already begun and I've already made more changes to <a href="http://charanj.it" onclick="window.open(this.href); return false;">http://charanj.it</a>!<br />
<br />
My portfolio site now has a slightly better layout, more functionality for the portfolio showcase and more key terms and information about me, as a developer.<br />
<br />
I'm looking to improve the twitter situation, because not all my tweets are really suitable for my portfolio site, but I'll decide what to do with that a bit later!</p>
	              ]]></description>
	              <pubDate>Tue, 5 Jan 2010 18:13:52</pubDate>
	            </item>
		    <item>
                      <title>Goodbye 2009, hello 2010</title>
	              <link>http://blog.charanj.it/post/165/goodbye-2009-hello-2010</link>
	              <description><![CDATA[
	              <p>As the world waves it's goodbye to the year that was 2009, I thought I'd write a quick post on how the year went for me.<br />
<br />
I got married and achieved a lot of other personal milestones this year.<br />
<br />
I got to see Hawaii and an active volcano. Got to see Anfield and sit in the Kop. I got to see Francesco Totti play for Roma at the Olympico while taking my wife around a city I love.<br />
<br />
The year has had a few downs, but many many ups and I can't wait for the new year to start. Happy New Year all! :)</p>
	              ]]></description>
	              <pubDate>Thu, 31 Dec 2009 17:46:08</pubDate>
	            </item>
		    <item>
                      <title>Blurred text in CSS</title>
	              <link>http://blog.charanj.it/post/164/blurred-text-in-css</link>
	              <description><![CDATA[
	              <p>It's possible to make text looked blurred using just CSS3. See the examples below, just hover over the first bit of text to see the possibility of using blurred text as a hover state.<br />
<br />
<style type="text/css">h1.blurred { color: #000; } div.shadow-box { background-color: #000; border-radius: 10px; -moz-border-radius: 10px; -webkit-border-radius: 10px; height: 100px; width: 100px; } div.shadow-box:hover { background-color: #888; box-shadow: 0 0 5px #000; -moz-box-shadow: 0 0 5px #000; -webkit-box-shadow: 0 0 5px #000; } h1.blurred:hover, .already { cursor: pointer; color: #888!important; text-shadow: 0 0 5px #222; }</style><h1 class="blurred">Some blurred text</h1><h1 class="blured already">Some blurred text</h1><br />
<div class="shadow-box""></div><br />
Above, you can see some examples of blurred text in browsers that support CSS3<br />
<br />
The trick is to change the colour of the element and either apply the <em>text-shadow</em> or <em>box-shadow</em> properties through CSS. Using the <em>:hover</em> pseudo-class you can create a blurred/unblurred effect<br />
<br />
</p><h4>Example:</h4><p><br />
<strong>HTML:</strong><br />
</p><div class="pre code"><pre>
&amp;lt;h1 class=&amp;quot;blurred&amp;quot;&amp;gt;Blurred text&amp;lt;/h1&amp;gt;
</pre></div><p><br />
<br />
<strong>CSS:</strong><br />
</p><div class="pre code"><pre>
h1.blurred {
	color: #FFF;
}
h1.blurred:hover {
	cursor: pointer;
	color: #666!important;
	text-shadow: 0 0 5px #444;
}
</pre></div><p><br />
<br />
The colours need to be selected carefully, as the shadows are often a bit lighter than the foreground text colour. Shadow size also plays a role. 5px seems to be effective, but 10px can wash the colour out.<br />
<br />
To apply the effect to a block element, you'll need to use the <em>box-shadow</em> property instead of the <em>text-shadow</em> property, but otherwise it's the the same.<br />
<br />
For more effects, you could apply opacity to make the text a little see through and see how that works out!<br />
<br />
If you find this useful, please check out my <a href="http://charanj.it?ref=blurred-text" onclick="window.open(this.href); return false;">portfolio site</a>.</p>
	              ]]></description>
	              <pubDate>Tue, 22 Dec 2009 15:41:45</pubDate>
	            </item>
		    <item>
                      <title>In the pipeline</title>
	              <link>http://blog.charanj.it/post/163/in-the-pipeline</link>
	              <description><![CDATA[
	              <p>I haven't had the time to work on receeve.it properly for a few weeks, but I am looking to release the following things in the near future:<br />
<br />
1. Nike+PHP v0.9.1<br />
2. A mobile poker site (trying some revenue ideas out)<br />
3. Migrating the odd blog post from the old Be Unequaled blog<br />
<br />
As you may be aware, Be Unequaled is no longer around as a fashion site, but will return in the future in a different form. I feel that the blog had some decent content so I'll be migrating that over bit by bit to this blog.</p>
	              ]]></description>
	              <pubDate>Thu, 17 Dec 2009 14:38:48</pubDate>
	            </item>
		    <item>
                      <title>URL ABC</title>
	              <link>http://blog.charanj.it/post/162/url-abc</link>
	              <description><![CDATA[
	              <p>Simply type each letter of the alphabet, one at a time and see what URL comes up in your address bar. Post them up and you're taking part in the game!<br />
<br />
a: <a href="http://angela.sky.com" onclick="window.open(this.href); return false;">http://angela.sky.com</a><br />
b: <a href="http://www.bbc.co.uk/football" onclick="window.open(this.href); return false;">http://www.bbc.co.uk/football</a><br />
c: <a href="http://charanj.it" onclick="window.open(this.href); return false;">http://charanj.it</a><br />
d: <a href="http://digg.com" onclick="window.open(this.href); return false;">http://digg.com</a><br />
e: <a href="http://expedia.co.uk" onclick="window.open(this.href); return false;">http://expedia.co.uk</a><br />
f: <a href="http://flickr.com" onclick="window.open(this.href); return false;">http://flickr.com</a><br />
g: <a href="http://gmail.com" onclick="window.open(this.href); return false;">http://gmail.com</a><br />
h: <a href="http://hotukdeals.com" onclick="window.open(this.href); return false;">http://hotukdeals.com</a><br />
i: <a href="http://icanhascheezburger.com" onclick="window.open(this.href); return false;">http://icanhascheezburger.com</a><br />
j: <a href="http://jonquirk.com" onclick="window.open(this.href); return false;">http://jonquirk.com</a><br />
k: <a href="http://karmaloop.com/index.asp?rcode=CA7004" onclick="window.open(this.href); return false;">http://karmaloop.com/index.asp?rcode=CA7004</a><br />
l: <a href="http://liverpoolfc.tv" onclick="window.open(this.href); return false;">http://liverpoolfc.tv</a><br />
m: <a href="http://maps.google.com" onclick="window.open(this.href); return false;">http://maps.google.com</a><br />
n: <a href="http://news.bbc.co.uk" onclick="window.open(this.href); return false;">http://news.bbc.co.uk</a><br />
o: <a href="http://odeon.co.uk" onclick="window.open(this.href); return false;">http://odeon.co.uk</a><br />
p: <a href="http://picasaweb.google.com" onclick="window.open(this.href); return false;">http://picasaweb.google.com</a><br />
q: //<br />
r: <a href="http://reader.google.com" onclick="window.open(this.href); return false;">http://reader.google.com</a><br />
s: <a href="http://www.skyarts.co.uk" onclick="window.open(this.href); return false;">http://www.skyarts.co.uk</a><br />
t: <a href="http://twitter.com" onclick="window.open(this.href); return false;">http://twitter.com</a><br />
u: <a href="http://upnextinsports.com" onclick="window.open(this.href); return false;">http://upnextinsports.com</a><br />
v: <a href="http://validator.w3.org/check" onclick="window.open(this.href); return false;">http://validator.w3.org/check</a><br />
w: <a href="http://wave.google.com" onclick="window.open(this.href); return false;">http://wave.google.com</a><br />
x: //<br />
y: <a href="http://youtube.com" onclick="window.open(this.href); return false;">http://youtube.com</a><br />
z: //<br />
<br />
I took these results from Chrome at work, so the first result was often a well used search term!</p>
	              ]]></description>
	              <pubDate>Tue, 8 Dec 2009 11:47:00</pubDate>
	            </item>
		    <item>
                      <title>New portfolio is live!</title>
	              <link>http://blog.charanj.it/post/161/new-portfolio-is-live-</link>
	              <description><![CDATA[
	              <p>I tweeted a few things about my new portfolio and I finally got it up yesterday evening!<br />
<br />
I feel that it showcases my talents a lot better than the last version and has a lot more personality! The site is built in HTML5 and uses CSS3, it should degrade nicely down to XHTML and CSS2.<br />
<br />
Quite a bit of jQuery, but all unobtrusive. As has become my signature, the site doesn't work in IE6, but I really couldn't care!<br />
<br />
Check out <a href="http://charanj.it" onclick="window.open(this.href); return false;">charanj.it</a>!</p>
	              ]]></description>
	              <pubDate>Wed, 4 Nov 2009 17:29:51</pubDate>
	            </item>
		    <item>
                      <title>Nike+PHP a PHP class for Nike+</title>
	              <link>http://blog.charanj.it/post/160/nike-php-a-php-class-for-nike-</link>
	              <description><![CDATA[
	              <p>So I am a lover of Nike+ and have had a <a href="http://blog.charanj.it/post/65/nike-blog-feature" onclick="window.open(this.href); return false;">Nike+ stat widget</a> on the side of my blog for quite a while now. The project can be found at <a href="http://nikeplusphp.org" onclick="window.open(this.href); return false;">http://nikeplusphp.org</a>.<br />
<br />
It came to my attention that the method used wasn't the easiest and certainly wasn't up to date. Looks like something changed on Nike's end and that has broken the API I was using.<br />
<br />
Looking around for an alternative, I was inspired to build my own class and am now firmly at version 0.7 with it. I've created a small website for the project where you can grab the code and there's some documentation to help you get started.<br />
<br />
The project is called <a href="http://nikeplusphp.org" onclick="window.open(this.href); return false;">Nike+<strong>PHP</strong></a> and all you need is a Nike+ account, PHP5 and SimpleXML installed.<!--fold--><br />
<br />
The class grabs all the info and creates a PHP array that's easy to use. I'll be updating it whenever I get a chance and will try to get a mailing list up and running so that you are able to keep the code up to date.<br />
<br />
If you have any problems, need help or have any suggestions, please feel free to let me know (via email: hello [at] charanj.it) and I'll do my best help.</p>
	              ]]></description>
	              <pubDate>Mon, 5 Oct 2009 09:08:40</pubDate>
	            </item>
		    <item>
                      <title>PHP - deleting cookies</title>
	              <link>http://blog.charanj.it/post/159/php-deleting-cookies</link>
	              <description><![CDATA[
	              <p>I had an issue where I couldn't delete cookies today. Turns out, adding the path works.<br />
<br />
</p><div class="pre code"><pre>
&amp;lt;?php
setcookie('name', 'value', time()+3600);
?&amp;gt;
</pre></div><p><br />
<br />
The above would set a cookie for one hour into the future.<br />
<br />
</p><div class="pre code"><pre>
&amp;lt;?php
setcookie('name', 'value', time()-3600);
?&amp;gt;
</pre></div><p><br />
<br />
The above should set a cookie for one hour into the past, making it expire and effectively deleting it. Today, this wasn't the case, but adding a path did the trick.<br />
<br />
</p><div class="pre code"><pre>
&amp;lt;?php
setcookie('name', 'value', time()+3600, '/');
?&amp;gt;
</pre></div><p><br />
<br />
The above sets it for an hour and for the whole domain. Adding the '/' to both the setting and expiring did the trick!<br />
<br />
<br />
</p>
	              ]]></description>
	              <pubDate>Tue, 25 Aug 2009 11:19:05</pubDate>
	            </item>
		    <item>
                      <title>Selected honeymoon photos</title>
	              <link>http://blog.charanj.it/post/158/selected-honeymoon-photos</link>
	              <description><![CDATA[
	              <p>Despite arriving back from Hawaii &amp;amp; New York over 2 weeks ago, it's taking me an age to get through all the photos. I managed to get a few <a href="http://www.flickr.com/photos/cchana/collections/72157606300262828/" onclick="window.open(this.href); return false;">honeymoon photos</a> up on <a href="http://www.flickr.com/photos/cchana/" onclick="window.open(this.href); return false;">flickr</a>, just choose either New York or Hawaii.<br />
<br />
I cannot express how beautiful Hawaii was and the photos will go no way to even showing you, it's a place you really have to see for yourself.<br />
<br />
The 24 hour trip getting there was hard, but totally worth it! Wedding photos to come soon!</p>
	              ]]></description>
	              <pubDate>Wed, 1 Jul 2009 10:42:13</pubDate>
	            </item>
		    <item>
                      <title>Wedding week</title>
	              <link>http://blog.charanj.it/post/157/wedding-week</link>
	              <description><![CDATA[
	              <p>So my wedding is less than a week away! Keep an eye on my <a href="http://www.flickr.com/photos/cchana/sets/72157605166200933/" onclick="window.open(this.href); return false;">Flickr wedding set</a> over the coming weeks and I hope to post up videos from both the wedding and our honeymoon too.</p>
	              ]]></description>
	              <pubDate>Mon, 25 May 2009 13:00:23</pubDate>
	            </item>
		    <item>
                      <title>Photos from FOWD</title>
	              <link>http://blog.charanj.it/post/156/photos-from-fowd</link>
	              <description><![CDATA[
	              <p>I've been uploading some photos throughout the day here at FOWD. Take a look at the slideshow below, or check out my <a href="http://www.flickr.com/photos/cchana/sets/72157617507101524/" onclick="window.open(this.href); return false;">Flickr</a> set.<br />
<br />
</p><div class="flashcontent"><object width="400" height="300"> <param name="flashvars" value="offsite=true&amp;amp;#9001;=en-us&amp;amp;page_show_url=%2Fphotos%2Fcchana%2Fsets%2F72157617507101524%2Fshow%2F&amp;amp;page_show_back_url=%2Fphotos%2Fcchana%2Fsets%2F72157617507101524%2F&amp;amp;set_id=72157617507101524&amp;amp;jump_to="></param> <param name="movie" value="http://www.flickr.com/apps/slideshow/show.swf?v=71649"></param> <param name="allowFullScreen" value="true"></param><embed type="application/x-shockwave-flash" src="http://www.flickr.com/apps/slideshow/show.swf?v=71649" allowFullScreen="true" flashvars="offsite=true&amp;amp;#9001;=en-us&amp;amp;page_show_url=%2Fphotos%2Fcchana%2Fsets%2F72157617507101524%2Fshow%2F&amp;amp;page_show_back_url=%2Fphotos%2Fcchana%2Fsets%2F72157617507101524%2F&amp;amp;set_id=72157617507101524&amp;amp;jump_to=" width="400" height="300"></embed></object></div><p><br />
<br />
<span class="strikethrough">As we speak only photos I could Bluetooth to my phone have been added, will upload some more from my</span> More photos added from my <a href="http://www.flickr.com/photos/cchana/sets/72157616668367094/" onclick="window.open(this.href); return false;">minimo</a> <span class="strikethrough">later!</span></p>
	              ]]></description>
	              <pubDate>Thu, 30 Apr 2009 16:11:58</pubDate>
	            </item>
		    <item>
                      <title>So I got the Toshiba H20</title>
	              <link>http://blog.charanj.it/post/155/so-i-got-the-toshiba-h20</link>
	              <description><![CDATA[
	              <p>Over the weekend I ordered the <a href="http://blog.charanj.it/post/152/i-m-getting-a-hd-camcorder-most-likely-a-toshiba-h20" onclick="window.open(this.href); return false;">Toshiba Camelio H29</a> camera and it arrived yesterday. The quality is great in good light and not so amazing in low light, but at £165 I don't really expect a HD camera with every bell and whistle.<br />
<br />
It is a little dissapointing that it wasn't slightly better, but it's small, plastic and full HD so there's not much to complain about!<br />
<br />
Check out my <a href="http://www.youtube.com/view_play_list?p=7C8FB591A826C82D" onclick="window.open(this.href); return false;">YouTube playlist</a> which I'll update with more HD content soon!</p>
	              ]]></description>
	              <pubDate>Wed, 29 Apr 2009 20:10:33</pubDate>
	            </item>
		    <item>
                      <title>FOWD 2009, I'm going and I can't wait! :)</title>
	              <link>http://blog.charanj.it/post/154/fowd-2009-i-m-going-and-i-can-t-wait-</link>
	              <description><![CDATA[
	              <p>Tomorrow is the Future Of Web Design conference and I really can't wait to go!<br />
<br />
There are a few topics I'll be really interested in and I am looking forward to learning lots more about the industry and where things are headed.<br />
<br />
I'm still debating, but I think I'll be taking my laptop. All I'll be doing is taking notes, but I'll have my iPod and hopefully there'll be wifi so I'll be able to check in on emails too!</p>
	              ]]></description>
	              <pubDate>Wed, 29 Apr 2009 20:02:31</pubDate>
	            </item>
		    <item>
                      <title>receeve.it almost ready, while AdSense just isn't cutting it right now</title>
	              <link>http://blog.charanj.it/post/153/receeve-it-almost-ready-while-adsense-just-isn-t-cutting-it-right-now</link>
	              <description><![CDATA[
	              <p>During the winter of 2007, Google AdSense just worked so well for me. 12 months later and it was hard to replicate even a quarter of what the previous year had offered. To be fair, due to a lack of time and effort, other advertising avenues also dried up and I had to make changes.<br />
<br />
I made some, but nothing I did ever helped to recover the revenue. A few months on and I decided to close Be Unequaled and Billionaire-Boys-Club.co.uk for good. I have plans for the former and ideas for the other, but nothing in the immediate feature.<br />
<br />
<a href="http://receeve.it" onclick="window.open(this.href); return false;">receeve.it</a> is ready for a BETA launch and you can either signup on the homepage for future news or readers of this post can <a href="http://beta.receeve.it" onclick="window.open(this.href); return false;">register</a> for real on the BETA site before we even launch!<br />
<br />
I aim to continuously improve the site where time allows and one of the main aspects of that is revenue.<br />
<br />
Google AdSense is currently in place and while I'm making just pennies a day, I'm hoping a web application will serve up a better click through rate than a forum/blog can. I have other ideas for revenue, so I'm not relying on Google to make receeve.it self sufficient, but it could play a key role IF it begins to pay at levels it was back in 2007.</p>
	              ]]></description>
	              <pubDate>Tue, 21 Apr 2009 17:32:09</pubDate>
	            </item>
		    <item>
                      <title>I'm getting a HD camcorder, most likely a Toshiba H20</title>
	              <link>http://blog.charanj.it/post/152/i-m-getting-a-hd-camcorder-most-likely-a-toshiba-h20</link>
	              <description><![CDATA[
	              <p>I've been looking for a decent HD camcorder since January after seeing a number of offerings from both Toshiba and Samsung. Samsung's DMX-R10 looked like it was going to win the battle, but with a US release date for early May, I have yet to see a European date and that pushes me too close to the honeymoon to allow me to wait for it.<br />
<br />
My next choice, up until this morning, was the Toshiba Camileo P30 which is a small form, full HD (1080p) pistol grip camcorder that was well priced for it's feature set. However, some reviews have put me off and I am now looking at the Toshiba H20 instead. A more traditional looking camcorder that has a similar ability, but the following example on YouTube has really put this at the top of my list.<br />
<br />
If possible, please watch these videos in HD!<br />
<br />
</p><div class="flashcontent"><object width="480" height="290"><param name="movie" value="http://www.youtube.com/v/hyhvOx24eDo&amp;amp;hl=en&amp;amp;fs=1&amp;amp;color1=0x2b405b&amp;amp;color2=0x6b8ab6"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/hyhvOx24eDo&amp;amp;hl=en&amp;amp;fs=1&amp;amp;color1=0x2b405b&amp;amp;color2=0x6b8ab6" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="290"></embed></object></div><p><br />
<strong>(Toshiba Camileo H20)</strong><br />
<br />
After a bit more research, the P30 wasn't far behind, but the quality difference is enough to make me stump up the extra cash:<br />
<br />
</p><div class="flashcontent"><object width="480" height="290"><param name="movie" value="http://www.youtube.com/v/8MME590sXzA&amp;amp;hl=en&amp;amp;fs=1&amp;amp;color1=0x2b405b&amp;amp;color2=0x6b8ab6"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/8MME590sXzA&amp;amp;hl=en&amp;amp;fs=1&amp;amp;color1=0x2b405b&amp;amp;color2=0x6b8ab6" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="290"></embed></object></div><p><br />
<strong>(Toshiba Camileo P30)</strong><br />
<br />
Not sure when I'll be getting either as I have to sort some finances out, but hopefully I'll be posting some test footage soon!</p>
	              ]]></description>
	              <pubDate>Wed, 15 Apr 2009 14:27:28</pubDate>
	            </item>
		    <item>
                      <title>I'd really like an AppleTV</title>
	              <link>http://blog.charanj.it/post/151/i-d-really-like-an-appletv</link>
	              <description><![CDATA[
	              <p>I've often said to friends that when I get my own place, I'm going to trick it out. At the moment, I have a wall mounted TV and Sky but what I really want is a NAS/streaming solution.<br />
<br />
I've seen some, but Mac compatiblity is always a worry.<br />
<br />
The AppleTV would seem to be the answer however space is limited. At < £200, it's not that badly priced for the base model, but at £250ish for extra storage, an extra 120Gb just isn't good enough.<br />
<br />
I've thought about a Mac Mini but haven't decided on anything yet.<br />
<br />
Apple's stuff is just too irresistible to me at the moment, plus I know it works.<br />
<br />
Maybe when I get my own place!</p>
	              ]]></description>
	              <pubDate>Mon, 6 Apr 2009 17:16:41</pubDate>
	            </item>
		    <item>
                      <title>MobileMe, I just don't get it!</title>
	              <link>http://blog.charanj.it/post/150/mobileme-i-just-don-t-get-it-</link>
	              <description><![CDATA[
	              <p>As part of a proejct at work, I needed access to a .Mac/MobileMe account, so I decided to sign up for the 90-day free trial that Apple are offering. To be honest, I just don't get it!<br />
<br />
MobileMe looks amazing. Very Mac, very slick and 3 out of the 4 times I've logged in, it's worked! The other time, it just timed out again and again.<br />
<br />
I already sync work and home calendars through Google and my iPod Touch is more than capable of working alongside Gmail.<br />
<br />
I do love the way, if my Mac was on, that I would be able to browse through my hard drive, but at £60ish a year, it's just too much money. To me, a NAS makes far more sense and with the big G being free, that MobileMe just doesn't seem like good value for money.<br />
<br />
If you want to get at me through MobileMe, I very much doubt i'll be using it beyond the trial, my address is cchana@me.com</p>
	              ]]></description>
	              <pubDate>Thu, 2 Apr 2009 15:30:45</pubDate>
	            </item>
		    <item>
                      <title>Madrid and United dispatched, Benitez commits and Anfield</title>
	              <link>http://blog.charanj.it/post/149/madrid-and-united-dispatched-benitez-commits-and-anfield</link>
	              <description><![CDATA[
	              <p>Real Madrid were dealt with quite nicely over in Spain. My friends went to watch the game and I was really happy that they saw a victory as with Real, you never really knew who would turn up! I felt we showed them way too much respect though. We let them have the ball and do as they wish. They didn't punish us, but with the amount of possession they had, they really should have.<br />
<br />
Two weeks later, Liverpool were running riot. 4-0 at Anfield. Fantastic. Some 4 days later and we'd scored another 4! The league leaders were poor. Embarrassing even and to top of a good two weeks, Benitez has committed himself to leading the club for another 5 years.<br />
<br />
Fantastic! :)<br />
<br />
Oh, and here is a gem of a link. <a href="http://maps.google.co.uk/maps?f=q&amp;amp;source=s_q&amp;amp;hl=en&amp;amp;geocode=&amp;amp;q=Anfield+Rd,+Liverpool+L4,+UK&amp;amp;sll=53.800651,-4.064941&amp;amp;sspn=16.837555,39.550781&amp;amp;ie=UTF8&amp;amp;ll=53.43191,-2.961041&amp;amp;spn=0,359.996567&amp;amp;t=h&amp;amp;z=19&amp;amp;layer=c&amp;amp;cbll=53.431843,-2.960903&amp;amp;panoid=MW-fUySUfNjQVeUOuEv7og&amp;amp;cbp=12,163.49728936439257,,0,-21.4375" onclick="window.open(this.href); return false;">Anfield on Google's Streetview</a>!</p>
	              ]]></description>
	              <pubDate>Thu, 19 Mar 2009 18:19:46</pubDate>
	            </item>
		    <item>
                      <title>New Sky project finished, the new Money &amp; Property site</title>
	              <link>http://blog.charanj.it/post/148/new-sky-project-finished-the-new-money-property-site</link>
	              <description><![CDATA[
	              <p>Over the last few months we've been working hard to get the new combined <a href="http://money.sky.com" onclick="window.open(this.href); return false;">Money &amp;amp; Property</a> site up and running.<br />
<br />
We're really happy with how it turned out because it looks great and we believe it's faster than the old site! We launched on Wednesday after a big effort by everyone involved. Take a look at the site and let me know what you think!</p>
	              ]]></description>
	              <pubDate>Fri, 13 Mar 2009 12:34:20</pubDate>
	            </item>
		    <item>
                      <title>My new toy, the Nokia 6600 Fold</title>
	              <link>http://blog.charanj.it/post/147/my-new-toy-the-nokia-6600-fold</link>
	              <description><![CDATA[
	              <p>Towards the end of 2008, my contract came up for renewal and I was looking to move to another network. I had <a href="http://blog.charanj.it/post/123/future-phone-options" onclick="window.open(this.href); return false;">picked my phone of choice</a>, but I was some way off from getting it due to it's price as a PAYG phone.<br />
<br />
Since I'm getting married in under 3 months, I knew a contract was going to be a bit of a waste so I opted to go the PAYG route anyway. Fast forward to February/March '09 and it's time to get my finger out and move.<br />
<br />
And move I did. I'm now rid of T-Mobile and part of O2! I also got the phone I wanted by parting with some cash. I didn't want to spend that much, but I really liked the phone a lot and felt I deserved something new after 4 years of the same phone. I went for the phone I had previously mentioned, the <a href="http://europe.nokia.com/A41009136" onclick="window.open(this.href); return false;">Nokia 6600 fold</a>.<br />
<br />
<img src="http://farm4.static.flickr.com/3652/3335920531_aecd942310.jpg" alt="image" /><br />
<br />
I bought the phone last week but refrained from blogging about it because of a faulty outter screen. An unsightly green line appeared once the phone was switched on for the first time. Over the next few days the line faded, but green pixels were present when white ones were expected. I was glad that I was able to exchange the phone for another and the issue is now resolved. I think I'll be blogging again as I get to grips with the Symbian software (a step down from the N70) and a flip phone, something I've not had for over 6 years and never had in Nokia form.<br />
<br />
My faulty screen ordeal was made worse after I also purchased a new phone for my Mum, the Samsung J-700. Although the phone is a fairly new model, it was actually a step down from her previous Samsung, which was annoying. Thankfully I was able to exchange it for an U-600. Hopefully an equal to her previous one, if not better!<br />
<br />
Now that I have a fully functioning phone, I have unwrapped it from the flimsy plastic film and am able to hold it properly, I hope to be able to make a quick transition. The change is minimal really, but enough to frustrate.<br />
</p>
	              ]]></description>
	              <pubDate>Sun, 8 Mar 2009 00:22:41</pubDate>
	            </item>
		    <item>
                      <title>Premier League Mathematics</title>
	              <link>http://blog.charanj.it/post/146/premier-league-mathematics</link>
	              <description><![CDATA[
	              <p>Until it's mathematically impossible, there's no point conceding the title but Saturday's infuriating result against Middlesborough is another unwelcome hitch in our season.<br />
<br />
I have constantly stated to friends that I see United loosing more games, and considering we had lost fewer games (same scenario as last season) there was always some hope. Off course, we may still end up loosing fewer games than they will but we have drawn too many. At least 6 of our draws should have been victories.<br />
<br />
The Champions League now has a lot more importance in our season. Having been top at Christmas, I am sure nearly every Liverpool fan was eager to see our impressive run continue, but unfortunately it ended soon after.<br />
<br />
With Rick Parry leaving the club at the end of the season, Rafa may get his wish and total control of transfers from in and out of the club. I am a little worried that he will hit even more walls with the owners as they will look to enforce a budget that Rafa deems insufficient, but let's hope that it works out better than that.</p>
	              ]]></description>
	              <pubDate>Mon, 2 Mar 2009 09:02:02</pubDate>
	            </item>
		    <item>
                      <title>Post India trip blogging</title>
	              <link>http://blog.charanj.it/post/145/post-india-trip-blogging</link>
	              <description><![CDATA[
	              <p>While away in India, the reasons for my resistance to visiting the country became a little clearer to me. I might blog about them at another time, but they are quite personal and probably give away too much about my views on religion, something I'd rather not go into on my personal blog.<br />
<br />
I did actually enjoy the trip, the <a href="http://flickr.com/photos/cchana/3281099838/" onclick="window.open(this.href); return false;">Golden Temple</a> was definitely worth seeing and the McDonald's worth trying!<br />
<br />
I hope to be able to upload more photos from the trip to <a href="http://flickr.com/photos/cchana" onclick="window.open(this.href); return false;">flickr</a> soon and I'll update the blog or <a href="http://twitter.com/cchana" onclick="window.open(this.href); return false;">tweet</a> about it once I have.<br />
<br />
<strong>Update</strong> - some photos uploaded to <a href="http://flickr.com/photos/cchana/sets/72157613827592446/" onclick="window.open(this.href); return false;">flickr</a></p>
	              ]]></description>
	              <pubDate>Tue, 17 Feb 2009 17:30:04</pubDate>
	            </item>
		    <item>
                      <title>JavaScript Mathematics - rounding up and rounding down</title>
	              <link>http://blog.charanj.it/post/144/javascript-mathematics-rounding-up-and-rounding-down</link>
	              <description><![CDATA[
	              <p>JavasScript provides some useful mathematics, here are some reminders of how to round up and down.<br />
<br />
</p><h4>If you need to round a number to the nearest whole one:</h4><p><br />
<br />
</p><div class="pre code"><pre>Math.round(0.5)</pre></div><p>This would equal 1.<br />
<br />
</p><div class="pre code"><pre>Math.round(0.4)</pre></div><p>This would equal 0.<br />
<br />
</p><h4>If you need to round down:</h4><p><br />
<br />
</p><div class="pre code"><pre>Math.floor(0.5)</pre></div><p>This would equal 0.<br />
<br />
</p><div class="pre code"><pre>Math.floor(0.4)</pre></div><p>This would also equal 0.<br />
<br />
</p><h4>If you need to round up:</h4><p><br />
<br />
</p><div class="pre code"><pre>Math.ceil(0.5)</pre></div><p>This would equal 1.<br />
<br />
</p><div class="pre code"><pre>Math.ceil(0.4)</pre></div><p>This would also equal 1.</p>
	              ]]></description>
	              <pubDate>Fri, 6 Feb 2009 17:07:13</pubDate>
	            </item>
		    <item>
                      <title>India, here I come!</title>
	              <link>http://blog.charanj.it/post/143/india-here-i-come-</link>
	              <description><![CDATA[
	              <p>Tonight, I aim to catch a plane to India for some pre-wedding shopping. I have lots to buy but little time in which to do it. An overnight flight will hopefully help us to adjust to the time differences, but even if we don't, we won't be able to let it stop us.<br />
<br />
If I'm honest, India isn't a place I've wanted to go and strangely, in the past, it's been more of a resistance to the idea of going rather than just me not caring whether I went or not. Now that I'm going, it doesn't feel like it will be such a bad experience.<br />
<br />
My fiancé really enjoyed her trip in October last year so I'm sure I'll enjoy myself. It will be the first trip I've had in a long time where there will be lots to experience, something I'm quite excited to experience.<!--fold--><br />
<br />
I've been given plenty of advice over the years on how to cope, but I think people underestimate how well travelled I have been fortunate to become. I've survived in Egypt for a long spell, probably the closest I've been to a country to India. I've survived in the Dubai of 10+ years ago where nothing was around, a quick trip to Malaysia and even a, pretty much, round the world trip to Singapore and back where the travelling must have taken at least 24 hours. A plane and minibus/train ride isn't going to be too much to handle this time around!<br />
<br />
We're flying standby but we're hopeful of getting on at the first attempt. If we don't, we'll loose a day on our already shortened trip after having to make changes so that we're back for Valentines. Not for any romantic reasons (not for me anyway), but for an engagement that is taking place.<br />
<br />
On the tech front, I'm taking my MacBook with me, as well as my iPod, Nintendo DS and a few books, so there's no chance of boredom setting in, I just hope we either have internet access in the hotel or just too much to do to care! The latter seems the more probable scenario, but either way, I am quite looking forward to a trip I've somewhat dreaded for the best part of my life!</p>
	              ]]></description>
	              <pubDate>Fri, 6 Feb 2009 11:03:50</pubDate>
	            </item>
		    <item>
                      <title>Be Unequaled now closed, receeve.it soon?</title>
	              <link>http://blog.charanj.it/post/142/be-unequaled-now-closed-receeve-it-soon-</link>
	              <description><![CDATA[
	              <p>Today is the 1st of February and as promised, <a href="http://www.beunequaled.com" onclick="window.open(this.href); return false;">Be Unequaled</a> is no more. Due to a lack of time on my part and the continued decline in activity, I feel it was the right thing to do. I am sad to see the site come to an end, but it really felt like the right thing to do.<br />
<br />
As for <a href="http://receeve.it" onclick="window.open(this.href); return false;">receeve.it</a>, things are coming on along nicely! I have a few small features left to polish off and the layout needs some work, but we're pretty much there.<br />
<br />
Luckily, I have a holiday coming up over which time I believe I'll have no, or very little, internet access. I aim to take a bit of time off from development and get my head ready for an onslaught when I'm back! This will all be in the aid of getting a BETA version out by the end of February or beginning of March. In the even that I don't get away, I'll still try to do that.<br />
<br />
If you want to keep up to date with <a href="http://receeve.it" onclick="window.open(this.href); return false;">receeve.it</a>, please register on the mailing list and follow the <a href="http://blog.receeve.it" onclick="window.open(this.href); return false;">blog</a> that I set up.</p>
	              ]]></description>
	              <pubDate>Sun, 1 Feb 2009 20:36:29</pubDate>
	            </item>
		    <item>
                      <title>I'm going to say it</title>
	              <link>http://blog.charanj.it/post/141/i-m-going-to-say-it</link>
	              <description><![CDATA[
	              <p>Liverpool have drawn too many times. Way to many. A similar thing happened last season, but it was an encouraging sign of progress as we began to draw matches we were loosing the season before.<br />
<br />
With Torres back, I'm sure we'll have that little bit extra fire power needed to push us on, but draws are no longer acceptable.</p>
	              ]]></description>
	              <pubDate>Tue, 27 Jan 2009 14:09:31</pubDate>
	            </item>
		    <item>
                      <title>Please bare with me - email changes</title>
	              <link>http://blog.charanj.it/post/140/please-bare-with-me-email-changes</link>
	              <description><![CDATA[
	              <p>I am in the process of moving my webmail from one app to another, so please bare with me if you're trying to get in contact as it may take a few hours for the change to propogate properly.<br />
<br />
I was planning to do this, but somehow Thunderbird opened (first time in months) and proceeded to clear the 300 email backlog that was stopping me before!<br />
<br />
I've set everything up (minus a few unused addresses) and hope to be up and running soon!</p>
	              ]]></description>
	              <pubDate>Wed, 21 Jan 2009 20:46:50</pubDate>
	            </item>
		    <item>
                      <title>Good examples of what HD (Blu-ray) content has to offer</title>
	              <link>http://blog.charanj.it/post/139/good-examples-of-what-hd-blu-ray-content-has-to-offer</link>
	              <description><![CDATA[
	              <p>Transformers was one film I thought was would be absolutely stunning in HD. I was wrong and dissapointed that it wasn't. In fact, it's one of the worst examples. Played on a Blu-ray device, I felt the DVD copy offered similar quality. The biggest noticeable difference is the grain in dark scenes, something friends have said was inevitable, but watch the Dark Knight and you will see how wrong they are. In fact, my MacBook had better output quality than the Transformers Blu-ray disc!<br />
<br />
Anyway, this post is about good examples. I have a limited selection of Blu-rays right now, but I'm thinking of signing up for LoveFilm and renting more. Here are my top 3 best examples:<br />
<br />
</p><h4>Dark Knight</h4><p><br />
Excellent film and the detail is just amazing. Batman Begins also looks great, but Dark Knight has a few IMAX scenes that just blow you away when they go full screen.<!--fold--><br />
<br />
</p><h4>Wall-e</h4><p><br />
I'm sure all Pixar films look stunning in HD, especially Finding Nemo and Monsters Inc, but this is the only one I've seen and again the detail is just amazing. The scenery, the characters, everything!<br />
<br />
</p><h4>Planet Earth</h4><p><br />
Seeing exotic animals this close up and in this much detail is just amazing. I have yet to finish the box set, but a third in and I am truly blown away.<br />
<br />
</p><div class="flashcontent"><embed width="480" height="360" src="http://www.spike.com/efp" quality="high" bgcolor="000000" name="efp" align="middle" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" flashvars="flvbaseclip=2817844" allowfullscreen="true"> </embed></div><p><br />
<br />
<br />
I am looking to get the HD basics Blu-ray to make sure I get the most out of my TV, but from what I've seen so far, these are 3 stunning examples of what HD content is all about!</p>
	              ]]></description>
	              <pubDate>Mon, 19 Jan 2009 17:27:20</pubDate>
	            </item>
		    <item>
                      <title>My next project - receeve.it</title>
	              <link>http://blog.charanj.it/post/138/my-next-project-receeve-it</link>
	              <description><![CDATA[
	              <p>I won't say too much just yet, but <a href="http://receeve.it" onclick="window.open(this.href); return false;">receeve.it</a> is going to be my next project.<br />
<br />
If you're interested in what I have coming up for the site, please visit the site and signup for updates and to be eligible for the BETA program.</p>
	              ]]></description>
	              <pubDate>Mon, 12 Jan 2009 21:22:30</pubDate>
	            </item>
		    <item>
                      <title>BBC and BU will be no more</title>
	              <link>http://blog.charanj.it/post/137/bbc-and-bu-will-be-no-more</link>
	              <description><![CDATA[
	              <p>Over the new year, I made a couple of changes that will affect my two biggest projects to date. On 1st February I will be shutting down Be Unequaled, having already closed Billionaire-Boys-Club.co.uk.<br />
<br />
<a href="http://www.billionaire-boys-club.co.uk" onclick="window.open(this.href); return false;">Billionaire-Boys-Club.co.uk</a> didn't go where I wanted it to in the long run, but was a great start to a little community and gave me an opportunity to learn so much about communities, PHP, MySQL, CMS', forum admin, website admin, dealing with advertisers and probably 100 other skills.<br />
<br />
I enjoyed working on it but <a href="http://www.beunequaled.com" onclick="window.open(this.href); return false;">Be Unequaled</a> was the natural progression for me. The site was better managed, better built and I felt it was a better place to be without the focus of a brand like BBC.<!--fold--><br />
<br />
This wasn't a hastily made decision and plenty of thought went in to what to do. In the end, I had to take my real life into consideration more than I did when the BBC site started all those years ago. With a wedding coming up, a wife to live with and family life approaching, running a forum full time was going to be difficult.<br />
<br />
Revenue was another factor in my decision, but not a key one. I made enough to cover my costs and I was hoping this would rise through 2008. It took me almost 9 months to change jobs and I know I neglected the site a little but I think the changes in the economic climate might have had an effect too. Revenue was down a ridiculous amount over 2008 and although I think I covered costs, the amount of time spent running the site vs income was not a ratio I could live with.<br />
<br />
I am very sad to see these two sites end, I think they have both ended at the right time. When I closed the BBC forum, a drastic shakeup was needed and since I had BU waiting in the wings it really was meant to be. With BU, the end has come a little more slowly, but it's been clear that no number of changes will take it back to it's peak 12 months ago unless I start to invest serious time and money, things I just can't do right now.<br />
<br />
I think the final nail in the coffin at the end of it all was the fact that I had lost a lot of interest. Not by choice but because of other changes in my life. Moving jobs from the centre of London closer to home meant my access to BAPE, Maharishi, CDG, Stüssy and the rest of the industry became almost non-existent.<br />
<br />
If you want to read more about the end of the two sites, please see the <a href="http://www.billionaire-boys-club.co.uk" onclick="window.open(this.href); return false;">BBC holding page</a> or the <a href="http://www.beunequaled.com/blogs/posts/189" onclick="window.open(this.href); return false;">blog post</a> on BU.<br />
<br />
Thanks to all the moderators who helped with both sites, the members who joined and contributed and even to those that just lurked!<br />
<br />
I will miss both sites, but the time I have saved is already being put to use on a new project that I'll talk more about later!</p>
	              ]]></description>
	              <pubDate>Mon, 5 Jan 2009 18:22:11</pubDate>
	            </item>
		    <item>
                      <title>Analysis of Liverpool is unfair and annoying, but I'll take it while we're top</title>
	              <link>http://blog.charanj.it/post/136/analysis-of-liverpool-is-unfair-and-annoying-but-i-ll-take-it-while-we-re-top</link>
	              <description><![CDATA[
	              <p>One of the biggest annoyances of this season has been Liverpool's habbit of drawing. Two seasons ago those games would have probably have ended in defeat and we were able to turn the loss of 3 points into the loss of 2. A much better position to be in. Had we won half the games we drew last season, we probably would have topped the league, but alas, it wasn't meant to be.<br />
<br />
Last season's habbits seem to be creeping back into the side, but convincing victories over Bolton and Newcastle have silenced some of the critics.<br />
<br />
<strong>The</strong> biggest annoyance though, is the analysis of Liverpool's position and points total. We're top. Clear by 3 points. All the press want to focus on are the dropped points. Now, the other 'big 3' have all lost and drawn more matches than we have. If they hadn't they'd be ahead of us, rather than playing catch up.<br />
<br />
When Liverpool were second and the players had a chance to go first, we fluffed it and were duly criticised. Chelsea have the same chance against Everton and after throwing away a perfect opportunity to open up a gap of their own the press didn't talk nearly as much as they did about Liverpool.<br />
<br />
Truth be told, being top and being criticised is a great position because things should really only get better. Benitez has said we're only at 80% and we are still missing important players. Torres obviously, but Mascherano and Lucas are performing well after the Olympics, Arbeloa has missed a few games and Robbie Keane doesn't always start. <br />
<br />
If this was offered to me at the start of the year, I'd have taken it so we are perfectly placed going into 2009.<!--fold--><br />
<br />
As for Gerrard's situation, we still don't know what happened, but I am confident Liverpool can cope without him. The loss of Torres was supposed to be our undoing, but it has been anything but that. Loosing Gerrard would be a blow, but with Torres on the mend I am looking forward to 2009, whatever it brings.</p>
	              ]]></description>
	              <pubDate>Tue, 30 Dec 2008 15:32:00</pubDate>
	            </item>
		    <item>
                      <title>Christmas 2008, Boxing Day fixtures, Woolworths and a PS3 Blu-ray remote</title>
	              <link>http://blog.charanj.it/post/134/christmas-2008-boxing-day-fixtures-woolworths-and-a-ps3-blu-ray-remote</link>
	              <description><![CDATA[
	              <p>Christmas 2008 was a good one. Not many presents changed hands but it was nice to enjoy a lazy day with my family. I received a couple of Blu-ray films, Wall-E and I Am Legend and caught up with a few Sky+'d programs as well as enjoying the various Christmas offerings on the BBC, Dave and Sky Sports!<br />
<br />
Come Boxing Day and I was out and about trying to grab a bargain but because of the media's constant bleak outlook on the near future there isn't much to be had.<br />
<br />
The only plus point from a pretty drab Boxing Day was Liverpool's victory over Bolton. Another two goals from Robbie Keane at the Anfield Road End and Albert Riera's inventive finish to get things gowing was a great, late, Christmas present for all the Reds around the world. Being top at Christmas was a wonderful feeling and one I haven't enjoyed for 12 years, but I hope it lasts until May because a 19th title would just be something special and would be yet another item that really marks 2009 as a stand out year in my life.<!--fold--><br />
<br />
As I mentioned, I did venture out on Boxing day (and today) but there wasn't much to be had. Some stores closed until the weekend, others with nothing to sell as they remain open until they are sold off. Woolworths seems to have been a huge casualty in all this and I am quite sad to see it go.<br />
<br />
Truth be told, upon leaving my part time position at Woolworths in 2005, I don't think I bought a single thing from there. I used to pick up newspapers, CDs, DVDs and lots of household items, but if you spend just a minute in HMV, Tesco, Sainsbury's or on the HMV website or Play.com, you'll find things are usually cheaper. That wasn't always the case in my opinion, but it's certainly ended up that way.<br />
<br />
In Woolworth's meltdown, it doesn't seem like they learnt their lesson anyway. Blu-rays, DVDs and CDs are all marked as being on sale, but 90% of the items I looked at were almost double the price that HMV and Play were charging!<br />
<br />
The two stores I visited over the last few days were almost completely empty and I for one will miss seeing the Woolworths brand on the high street, but I know first hand why they are where they are...<br />
<br />
Last thing I'd like to mention is the PS3 Blu-ray remote. What a headache this has been. I am sure the RRP is around £25, if not less, but the only place I could find it in stock in a well known, reputable retailer was on Amazon and it was listed as being available for £35. Comet also had it, but when you make the 300 clicks to get to the checkout, you're told it's sold out. Product info that should be on the product page.<br />
<br />
I signed up for alerts and one came through from Gamestation, but when I got to the page, the message was the same as it had been over the last few days, Sold Out!<br />
<br />
I made a trip down to my local high street and low and behold, my journey looked to have been fruitless. Gamestation came up with the goods though with quite a few in stock, just hidden away behind the counter. I know have a PS3 Blu-ray remote and I'll be giving it a test drive later today. I'm just glad I don't have to suffer with the PS3 wireless controller anymore!</p>
	              ]]></description>
	              <pubDate>Sat, 27 Dec 2008 14:47:42</pubDate>
	            </item>
		    <item>
                      <title>Paul Ince and the Champions League draw</title>
	              <link>http://blog.charanj.it/post/133/paul-ince-and-the-champions-league-draw</link>
	              <description><![CDATA[
	              <p>I was a big admirer of Paul Ince as a player, so I was sad to see him given the sack as Blackbur Manager so soon. He seemed a nice guy, but if I'm honest, the results just weren't good enough. Sam Alardyce is a better manager than Sunderland fans give him credit and I think he'll work wonders at Rovers.<br />
<br />
In other news, Liverpool have been drawn against Real Madrid in the last 16 of the Champions League. The matches will take place some 20 years after their last European meeting and looks to be one of the highlights of a really interesting round. I know Liverpool can get the job done and it will be even better if Torres is back to face his boyhood club's fiercest rivals.</p>
	              ]]></description>
	              <pubDate>Fri, 19 Dec 2008 13:39:33</pubDate>
	            </item>
		    <item>
                      <title>Batman in HD</title>
	              <link>http://blog.charanj.it/post/132/batman-in-hd</link>
	              <description><![CDATA[
	              <p>One thing I've spoken to friends about most when discussing HD is grain. Transformers is an awful example of HD in my opinion. With large portions of the film filmed in low light, grain is evident throughout. I have been assured by both friends and in forums that this is normal. Batman Begins proves otherwise.<br />
<br />
The film was glorious. Colours looked amazing and the level of detail was superb. I know that my TV still needs to be fine tuned, so I can only imagine how good things will look once this is done.<br />
<br />
I actually purchased the limited edition Batman Begins and Dark Knight combo box and will be watching part the second one later this week. I really can't wait!</p>
	              ]]></description>
	              <pubDate>Tue, 9 Dec 2008 17:09:09</pubDate>
	            </item>
		    <item>
                      <title>Arrested Development related site</title>
	              <link>http://blog.charanj.it/post/131/arrested-development-related-site</link>
	              <description><![CDATA[
	              <p>I wanted to create an homage to Arrested Development for a while, but never found the best way, apart from having random quotes on this blog.<br />
<br />
I decided to give them a bit more promincense and set up a domain for that purpose.<br />
<br />
Check out the <a href="http://www.gobiasindustries.net" onclick="window.open(this.href); return false;">Gobias Industries</a> website!</p>
	              ]]></description>
	              <pubDate>Fri, 5 Dec 2008 20:45:49</pubDate>
	            </item>
		    <item>
                      <title>FA back down on punishment over show of support for Michael Shields</title>
	              <link>http://blog.charanj.it/post/130/fa-back-down-on-punishment-over-show-of-support-for-michael-shields</link>
	              <description><![CDATA[
	              <p>Prior to Monday night's game against West Ham at Anfield, Liverpool's fans in the KOP gave a message of support for Liverpool fan <a href="http://www.freemichaelshields.com" onclick="window.open(this.href); return false;">Michael Shields</a>.<br />
<br />
Shields was wrongly convicted and jailed abroad, details of which can be found on his family's <a href="http://freemichaelshields.com/ms_case.htm" onclick="window.open(this.href); return false;">campaign</a> website.<br />
<br />
I want to really talk about the actions of the FA over the last 24/48 hours. Ipswich's David Norris was charged by the FA for showing support for his jailed colleague. In his case, the colleague in question was responsible for death by dangerous driving and does not deserve, in my opinion, any public support. He was completely responsible for his actions and got what he deserved. Unfortunately for Michael Shields, as well as protesting his innocence, the real perpetrator has actually made himself known, signed a confession and said to the Bulgarian authorities that he will take the punishment he deserves, only to be ignored.<br />
<br />
As a Liverpool fan, I could easily be called biased, but if an Everton or Man Utd fan had wrongly been jailed, I would expect the clubs to take a similar approach. Liverpool have actually done this before, just not before a televised game to my knowledge, so why the FA are getting their knickers in a twist is beyond me. Liverpool's official site was actually <a href="http://www.liverpoolfc.tv/news/archivedirs/news/2008/nov/28/N162296081128-0935.htm" onclick="window.open(this.href); return false;">asking for volunteers</a> to help lay out the cards in the KOP a few days before the event, so even though the club didn't ask the FA, it was information that was publicly available.<br />
<br />
Had Liverpool been in contact with the FA, it's pretty clear that they would have been unhappy with the prospect of a club showing interest in a slightly controversial topic.<br />
<br />
On Thursday, the case may take another step forward and I sincerely hope it does.<br />
<br />
I for one am glad that Liverpool Football Club, the players, staff and the fans took the time to acknowledge the situation and to show some support and I am nothing but honoured to call myself a fan.<br />
<br />
If you have the time, please visit the website and see if you <a href="http://freemichaelshields.com/ms_help.htm" onclick="window.open(this.href); return false;">can help</a>.<!--fold--><br />
<br />
There are a couple of articles on the <a href="http://browse.guardian.co.uk/search?search=michael+shields&amp;amp;sitesearch-radio=guardian&amp;amp;go-guardian=Search" onclick="window.open(this.href); return false;">Guardian</a>'s website which you can find <a href="http://www.guardian.co.uk/football/2008/dec/03/liverpool-michael-sheids-free-gerrard-premier-leaguehttp://www.guardian.co.uk/football/blog/2008/dec/03/liverpool-michael-shields" onclick="window.open(this.href); return false;">here</a> and <a href="" onclick="window.open(this.href); return false;">here</a>.</p>
	              ]]></description>
	              <pubDate>Wed, 3 Dec 2008 16:37:58</pubDate>
	            </item>
		    <item>
                      <title>Liverpool's position is perfect, but the finishing needs some work</title>
	              <link>http://blog.charanj.it/post/129/liverpool-s-position-is-perfect-but-the-finishing-needs-some-work</link>
	              <description><![CDATA[
	              <p>The frustration amongst Liverpool fans is obvious and understandable. The problem we had last year was the inability to turn draws into wins and just generally take our chances. Fernando Torres and Steven Gerrard did their share, but not many others put the ball in the back of the net often enough.<br />
<br />
Without Torres for much of the first 15 league games, the side was still wasting chances but grinding out wins, the 0-0 against Stoke a rare blip it seemed. Since the defeat at Tottenham, we've experienced a couple more 0-0 draws at home and it is these results that make it difficult to see the title coming home.<br />
<br />
It is essential that the lads begin to take their chances. Torres could well be out until the new year, and would be if I had my way so that his hamstring would have a chance of healing completely, so Keane, Kuyt and the others all need to take their chances. I was certain that Keane would have had a few more by now, especially after seeing his <a href="http://flickr.com/photos/cchana/3024893466/in/set-72157608784783671/" onclick="window.open(this.href); return false;">first two goals</a> at Anfield close up!<br />
<br />
Ryan Babbel has been crying out for a starting place, despite being ineffective against Spurs in the League Cup, and it may be time to give him a chance up front. Alongside a clever player like Robbie Keane, he could well be a player that gets us a few goals. He has pace to burn and generally makes good movement and isn't scared to take players on.<br />
<br />
Robbie Keane continues to get himself into good positions so we may even see the fruits of his labour sooner rather than later. 90 minutes might do him good too.</p>
	              ]]></description>
	              <pubDate>Tue, 2 Dec 2008 16:18:10</pubDate>
	            </item>
		    <item>
                      <title>Macworld January 2009</title>
	              <link>http://blog.charanj.it/post/128/macworld-january-2009</link>
	              <description><![CDATA[
	              <p><a href="http://www.macrumors.com/2008/12/01/macworld-san-francisco-2009-registration-new-macs-32gb-iphones/" onclick="window.open(this.href); return false;">Macrumours</a> posted an article about registrations for the 2009 Macworld event and rumours for the event. Among other things, a possible increase in iPhone capacity. From 16 to 32Gb will definitely be a nice jump, but at what cost?<br />
<br />
Anyway, I don't really give a shit about that, the thing I care most about is the possibility of a new Mac Mini. Since the new MacBooks don't feature any Blu-ray drives, I doubt the Mac Mini will come with one, but it might serve as an otherwise very, very capable media server. The HDCP stuff on the new MacBooks is just plain annoying, but I'm not sure how this will effect a new Mac Mini which may, or may not, move away from the DVI interface used at present.<br />
<br />
The Mac Mini was the first Mac I really got to get to grips with and another Mac Mini was my first Apple computer purchase. It's now over 2 years old but still in constant use at home.<!--fold--><br />
<br />
I have looked at the possibility of getting something like an AppleTV, but being limited to being just a home theatre solution doesn't fill me with too much excitement. A Mac Mini would be preferable purely so that it could serve as web browser too. Yes, the PS3 and the Wii do this, but the Wii's display quality is piss poor and neither console is as intuitive as a mouse or keyboard.<br />
<br />
I know there are mouse apps around and there's the possibility of there being keyboard apps which would allow me to control the Mac Mini with nothing other than my iPod Touch!<br />
<br />
Admittedly, this isn't a purchase I am likely to make since I own a PS3 (which I need to get setup so that I can stream media from my various Macs too), but it's hooked up to the main TV in the house and is unlikely to be moved, especially not on a regular basis, because of it's huge size! Blu-rays aside, a Mac Mini could make a nice media player for my room where I intend to put a decent sized TV and possibly a new Sky box. Being far more portable would also mean that I could actually move it around the house as I need to.<br />
<br />
MacBook, iPod Touch, Mac Mini, Sky(+HD??) and a comfortable bed might mean I find myself confined to my room more than ever before! :S</p>
	              ]]></description>
	              <pubDate>Tue, 2 Dec 2008 10:37:24</pubDate>
	            </item>
		    <item>
                      <title>Getting rid of 404 errors and finding rogue links</title>
	              <link>http://blog.charanj.it/post/127/getting-rid-of-404-errors-and-finding-rogue-links</link>
	              <description><![CDATA[
	              <p>One thing I've been meaning to do is to make sure that this site doesn't contain any 404 links. Easier said than done when a site has more than a handful of pages.<br />
<br />
Using the <a href="http://home.snafu.de/tilman/xenulink.html" onclick="window.open(this.href); return false;">Xenu Link Sleuth</a> I was able to determine where things may not be as they should be and eliminate as many of the problems as possible.<br />
<br />
I need to find a Mac alternative, but the Xenu software is perfect for finding 404's. I'm running another report as I type, but before I wrote this post, this blog had over 4,000 urls!</p>
	              ]]></description>
	              <pubDate>Fri, 28 Nov 2008 11:55:27</pubDate>
	            </item>
		    <item>
                      <title>Two shoes, 1 yay, 1 nay and a whole lot of Nintendo x Nike love!</title>
	              <link>http://blog.charanj.it/post/126/two-shoes-1-yay-1-nay-and-a-whole-lot-of-nintendo-x-nike-love-</link>
	              <description><![CDATA[
	              <p>I've now seen two Nike shoes on CNET's <a href="http://news.cnet.com/crave/" onclick="window.open(this.href); return false;">Crave</a> blog and while one made me smile, the other made me frown.<br />
<br />
<img src="/uploads/neshoes1.jpg" alt="image" /><br />
<br />
The <a href="http://news.cnet.com/8301-17938_105-10083803-1.html" onclick="window.open(this.href); return false;">first shoe</a> features a lot of nice subtle hints to the old NES controller. There's a d-pad pattern and the words 'START' and 'SELECT' well placed and small enough not to distract from the excellent choices in colour. As a huge NES fan and NES owner, these really got me excited.<!--fold--><br />
<br />
I was really surprised to see another article amongst the articles in my <a href="http://www.google.com/reader/shared/00894762949303893699" onclick="window.open(this.href); return false;">Google reader</a> but was sorely disappointed with the <a href="http://news.cnet.com/8301-17938_105-10102813-1.html?part=rss&amp;amp;tag=feed&amp;amp;subj=Crave" onclick="window.open(this.href); return false;">monstrosity</a> I was greeted with!<br />
<br />
<img src="/uploads/nike-nintendo-air-max-hybrid-1.jpg" alt="image" /><br />
<br />
I think this particular shell for a shoe is quite ugly anyway, but adding lots of black and grey then highlighting in red isn't going to hide that fact. The d-pad pattern is a nice touch, but it has nothing else going for it. It is a matter of taste though and I'm sure people will love this just as much, if not more, than the first pair.<br />
<br />
I am on the lookout for the first ones, so holla at me if you find them! :)</p>
	              ]]></description>
	              <pubDate>Thu, 20 Nov 2008 12:07:07</pubDate>
	            </item>
		    <item>
                      <title>PlayStation 3 - an end to my Blu-ray nightmare?</title>
	              <link>http://blog.charanj.it/post/125/playstation-3-an-end-to-my-blu-ray-nightmare-</link>
	              <description><![CDATA[
	              <p>I hope so. I recently borrowed a PS3 with the intention of buying it if I was happy with it. I will be paying for it today, so I now officially own a PS3 but I will be using it primarily for Blu-ray playback and upscalling my old DVDs. My multi-region player will be relegated to another room, but that's no bad thing.<br />
<br />
I am waiting for 3 Blu-ray discs films to arrive so that I can make full use of it, but from what I've seen the jump from VHS to DVD was far bigger.<br />
<br />
I almost gave the PS3 back, but at the price I'm getting it for I wouldn't be able to find a comparable deal in the next 6 months, maybe not even in the next year!<br />
<br />
I'll write more about my experiences when I've had more time with it, calibrated my TV and watched more than 3 movies on it!</p>
	              ]]></description>
	              <pubDate>Tue, 18 Nov 2008 17:30:35</pubDate>
	            </item>
		    <item>
                      <title>Liverpool vs West Bromwich Albion - 8th November 2008</title>
	              <link>http://blog.charanj.it/post/124/liverpool-vs-west-bromwich-albion-8th-november-2008</link>
	              <description><![CDATA[
	              <p>I had a blast this past Saturday. After taking my sweet time getting out of bed and out of the house, we made our way up to Liverpool around 10.30am. I <a href="http://twitter.com/cchana/status/996162896" onclick="window.open(this.href); return false;">tested out the possibility of twittering with my mobile</a> so that I could micro-blog throughout the day.<br />
<br />
The first part of our journey was pretty easy, making a stop just before Birmingham. We didn't stop again until we were maybe 70 miles from Liverpool. The Roadchef services we visited was a little shit to say the least, but I just needed to stretch my legs. I checked in with the friend I was meeting there and once we knew where he was, we made the rest of our journey. It wasn't too long after we left the motorway that we found ourselves looking at the slightly visible roof of Anfield from less than a mile away.<br />
<br />
After parking up, we made our way up Anfield road and were soon <a href="http://flickr.com/photos/cchana/3014583335/in/set-72157608784783671/" onclick="window.open(this.href); return false;">outside Anfield</a>.<!--fold--><br />
<br />
The stadum is impressive, although a little smaller than I had imagined. From the outside anyway. Well, if I'm honest, it's a little smaller than I imagined inside, but when it's full, it feels formidable. I can only imagine the atmosphere on a Champions League night, or in a game against Everton or United.<br />
<br />
We were in our seats over an hour before kick off and we took <a href="" onclick="window.open(this.href); return false;">plenty of photos</a>.<br />
<br />
I was (un?)lucky enough to sit right next to the West Brom fans, who were actually quite noisy and very upbeat despite the result.<br />
<br />
One thing I'll never forget is how awesome it felt to hear and take part in singing You'll Never Walk Alone. My sister took a video of the event, which you can see below.<br />
<br />
</p><div class="flashcontent"><object type="application/x-shockwave-flash" width="400" height="300" data="http://www.flickr.com/apps/video/stewart.swf?v=61761" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"> <param name="flashvars" value="intl_lang=en-us&amp;amp;photo_secret=81d26ab0eb&amp;amp;photo_id=3016487008"></param> <param name="movie" value="http://www.flickr.com/apps/video/stewart.swf?v=61761"></param> <param name="bgcolor" value="#000000"></param> <param name="allowFullScreen" value="true"></param><embed type="application/x-shockwave-flash" src="http://www.flickr.com/apps/video/stewart.swf?v=61761" bgcolor="#000000" allowfullscreen="true" flashvars="intl_lang=en-us&amp;amp;photo_secret=81d26ab0eb&amp;amp;photo_id=3016487008" height="300" width="400"></embed></object></div><p><a href="http://flickr.com/photos/cchana/3016487008/in/set-72157608784783671/" onclick="window.open(this.href); return false;">direct link to video</a><br />
<br />
You can also catch of glimps of me singing it here:<br />
<br />
<img src="http://farm4.static.flickr.com/3247/3017038956_ae3a09c9c0.jpg?v=0" alt="image" /><br />
<br />
The match got under way once we had observed a minutes silence for Remembrance Day. It was impeccably observed by both sets of fans. West Brom certainly had the better possession for the first 5 minutes, but Riera and Benayoun were soon making their way forward. Aurelio was also very adventurous.<br />
<br />
I was so glad that Robbie Keane scored and I got to see both goals close up. He looks a very good player, a lot faster than he looks on TV and as with the rest of the side, they all look like they work very hard.<br />
<br />
I was a little disappointed that Xabi Alonso was on the bench, but I enjoyed contributing to the reception that Robbie Keane received as he left and rapturous applause that Fernando Torres got as he arrived on to the field.<br />
<br />
Xabi's introduction was also well received and welcomed by myself.<br />
<br />
Arbeloa's goal looked very good from where I was and even better once I saw it on TV.<br />
<br />
I can't wait to go again and hopefully sit in the Kop.<br />
<br />
The drive home was far harsher than the drive up. Firstly, we didn't get back until 2am. We left at 7pm. The weather in the North West was just foul too. Not only was it wet, it was just non stop and I wasn't able to bring myself to do more than 40 or 50mph on the motorway. Once we were out of Manchester (detour to drop my friend off), the weather calmed progressively until it was pretty clear near Birmingham. We did make a few stops and I shared the drive with my Dad but I would certainly try to avoid driving in the future.<br />
<br />
I definitely fulfilled a dream of mine and coming so close to my birthday, I couldn't really have asked for a better day!<br />
<br />
</p><div class="flashcontent"><object width="400" height="300"> <param name="flashvars" value="&amp;amp;offsite=true&amp;amp;#9001;=en-us&amp;amp;page_show_url=%2Fphotos%2Fcchana%2Fsets%2F72157608784783671%2Fshow%2F&amp;amp;page_show_back_url=%2Fphotos%2Fcchana%2Fsets%2F72157608784783671%2F&amp;amp;set_id=72157608784783671&amp;amp;jump_to="></param> <param name="movie" value="http://www.flickr.com/apps/slideshow/show.swf?v=61927"></param> <param name="allowFullScreen" value="true"></param><embed type="application/x-shockwave-flash" src="http://www.flickr.com/apps/slideshow/show.swf?v=61927" allowFullScreen="true" flashvars="&amp;amp;offsite=true&amp;amp;#9001;=en-us&amp;amp;page_show_url=%2Fphotos%2Fcchana%2Fsets%2F72157608784783671%2Fshow%2F&amp;amp;page_show_back_url=%2Fphotos%2Fcchana%2Fsets%2F72157608784783671%2F&amp;amp;set_id=72157608784783671&amp;amp;jump_to=" width="400" height="300"></embed></object></div><p><br />
(I just shared a <a href="http://flickr.com/photos/cchana/sets/72157608784783671/show/" onclick="window.open(this.href); return false;">Flickr slideshow</a> of my Anfield set, which I could have done the day I posted this instead of messing around with the usually wonderful Slide Show Pro!)<br />
<br />
(Videos of the goals added, available at the end of the feed)<br />
<br />
Check out all the photos we took at <a href="http://flickr.com/photos/cchana/sets/72157608784783671/" onclick="window.open(this.href); return false;">Anfield</a> on <a href="http://flickr.com/photos/cchana/" onclick="window.open(this.href); return false;">Flickr</a></p>
	              ]]></description>
	              <pubDate>Mon, 10 Nov 2008 16:59:34</pubDate>
	            </item>
		    <item>
                      <title>Future phone options</title>
	              <link>http://blog.charanj.it/post/123/future-phone-options</link>
	              <description><![CDATA[
	              <p>I took some time this past weekend to visit an O2 store because I thought it was going to be my network of choice. Having visited them, I'm more sure of this, but it could mean walking away with a new plan, but no phone.<br />
<br />
My N70 is holding up, but it isn't doing it's job as well as it has in the past. I'm actually still quite pleased with the quality of both cameras (in the right light) and the battery life improved drastically after I took it out of 3G mode.<br />
<br />
I previously stated my <a href="http://blog.charanj.it/post/101/i-need-a-new-phone" onclick="window.open(this.href); return false;">phones of choice</a> were the N96 and 6220, but having had more time to look around, I would prefer the 6220 or the 6600 Fold.<br />
<br />
Nokia is going to be my phone of choice it seems. SonyEricsson and Samsung phones don't really appeal to me and I know that LG and HTC's touch screen options won't measure up to the iPhone, which I won't be getting because of the poor amount of minutes available and the small fact that I have just purchased an iPod Touch.<br />
<br />
<img src="/uploads/nokia-6600-f-00.jpg" alt="image" /><br />
<br />
The 6600 Fold covers has most of the features I'm after. It's pretty nice looking, has 3G and video calling but only a 2MP camera. Not a step up from my N70 in that department, but it's proved to be more than enough for me.<br />
<br />
If I can get the 6600 Fold, I will, the 6220 is now second on my list and the N96 no longer features on it. I have seen an LG that features a full slide out QWERTY keyboard, but without seeing it for real, it's not something I'd really be too interested in getting.</p>
	              ]]></description>
	              <pubDate>Wed, 5 Nov 2008 15:27:08</pubDate>
	            </item>
		    <item>
                      <title>BIG, the Lee Evans UK Tour for 2008</title>
	              <link>http://blog.charanj.it/post/122/big-the-lee-evans-uk-tour-for-2008</link>
	              <description><![CDATA[
	              <p>I wanted to write about the Lee Evans show I saw on Saturday, but the weekend just ran away with itself and I ended up watching Transformers on Blu-ray last night (a story for another day)!<br />
<br />
I could not fault the man for anything.<br />
<br />
After just 5 minutes, I could feel tears of laughter rolling down my face and had to remember to breathe! The guy is, without any exaggeration, a complete genius.<!--fold--><br />
<br />
He came out on time and performed for near enough 3 hours, including his trademark encore piece, his physical interpretation of Bohemian Rhapsody. That's probably the only performance piece I'll talk about here because the tour is still on and I don't want people to stumble across this and ruin the fun for them. I purposely ignored a Facebook group because the first few posts where about his jokes from the Big tour.<br />
<br />
I saw Bill Bailey at Wembley almost exactly a year ago (give or take a week) and that was one thing I'd ticked of my list of things to do. Seeing Lee Evans live was another and possibly one of those things competing for the very top. When I see Liverpool play at Anfield next week, that will most certainly be another!<br />
<br />
If you can find tickets for the Big tour, please go. You will enjoy yourself and you will laugh. Guaranteed. If you can't, get the DVD. I will be adding it to my collection.</p>
	              ]]></description>
	              <pubDate>Tue, 4 Nov 2008 16:55:00</pubDate>
	            </item>
		    <item>
                      <title>Flash AS3 sucks balls (kinda)</title>
	              <link>http://blog.charanj.it/post/121/flash-as3-sucks-balls-kinda-</link>
	              <description><![CDATA[
	              <p>I know it is a step forward and probably makes it easier to develop more complex applications, but I really wish the syntax was backwards compatible and a little less rigid. I do like the flexibility your allowed now in ActionScript, especially with better controls over how vectors are rendered (almost ala Photoshop) and gradient masks are awesome, but a big pain in my arse is the way it's written. With more use, I'm sure I'll get used to it, but I haven't enjoyed it so far and am not looking forward to our next appointment.</p>
	              ]]></description>
	              <pubDate>Mon, 3 Nov 2008 16:22:53</pubDate>
	            </item>
		    <item>
                      <title>Football shirts are an unusual passion for me</title>
	              <link>http://blog.charanj.it/post/120/football-shirts-are-an-unusual-passion-for-me</link>
	              <description><![CDATA[
	              <p>I admit it's not the most exciting hobby, but I do like to buy football (soccer) shirts. As well as defining my fashion sense during my college and university days (and a lot of my evenings), they provide a sense of history.<br />
<br />
A lot of clubs might experience a short burst of success, be on the brink or dominate regularly and owning a shirt from that era is a nice way to recognize their achievements.<br />
<br />
As a Liverpool fan, I'm almost duty bound to buy their home kit every two years. My fiancé and sister have one (courtesy of me) and I own around 15 shirts from other nations and teams.<br />
<br />
Among them are kits for AS Roma, India, Brasil, Italy, Spain, PSG, Real Madrid and Barcelona.<br />
<br />
One thing I have yet to do, and would love to, is buy kits with even more meaning. So far I have a Brasil kit which actually means quite a bit to me because of it's limited edition nature and features. It has the World Cup final venue from 2004 embroidered onto it. It also features a 5th star, but under the confederations badge, rather than on top like their post 2004 final shirts feature. Small details, but things I like.<!--fold--><br />
<br />
Browsing <a href="http://www.subsidesports.com/uk/store/product_list.jsp?id=1417&amp;amp;mid=-1&amp;amp;oby=&amp;amp;hos=0&amp;amp;srs=-1&amp;amp;txtSearch=&amp;amp;cmbPriceStart=-1&amp;amp;cmbPriceEnd=-1&amp;amp;page=1&amp;amp;brc=" onclick="window.open(this.href); return false;">Subside</a> today, I noticed a collection of pre-named and numbered shirts on sale, with a few featuring real legends. Although a 1994 Italy kit with Baggio would be perfect, I've seen them for around £100, this one may also find it's way on to a desired list.<br />
<br />
<a href="http://www.subsidesports.com/uk/store/product_details.jsp?pid=72057594037943912&amp;amp;cid=1417&amp;amp;brc=&amp;amp;red=product_list.jsp?id=1417,mid=-1,oby=,hos=0,srs=-1,txtSearch=,cmbPriceStart=-1,cmbPriceEnd=-1,page=1,brc=," onclick="window.open(this.href); return false;"><img src="/uploads/maldini1990.jpg" alt="image" /></a><br />
<br />
Both the shirt and player have aged extremely well and I am considering getting some of the poorer purchases out of my collection and investing in wonderful pieces like this.</p>
	              ]]></description>
	              <pubDate>Wed, 29 Oct 2008 13:42:26</pubDate>
	            </item>
		    <item>
                      <title>Tickets for Liverpool vs West Brom arrive</title>
	              <link>http://blog.charanj.it/post/119/tickets-for-liverpool-vs-west-brom-arrive</link>
	              <description><![CDATA[
	              <p>Got them today and super duper excited about it! :)<br />
<br />
<img src="/uploads/tickets.jpg" alt="image" /></p>
	              ]]></description>
	              <pubDate>Tue, 28 Oct 2008 19:29:06</pubDate>
	            </item>
		    <item>
                      <title>Nice little function in PHP</title>
	              <link>http://blog.charanj.it/post/118/nice-little-function-in-php</link>
	              <description><![CDATA[
	              <p>Via a <a href="http://www.oreillynet.com/ruby/blog/2007/09/7_reasons_i_switched_back_to_p_1.html" onclick="window.open(this.href); return false;">Derek Sivers </a> post on O'Rielly, which was found via a blog post on <a href="http://www.nicedream.co.uk/blog/2008/10/28/getting_things_done/" onclick="window.open(this.href); return false;">Getting Things Done</a> by Nina Richards.<br />
<br />
<a href="http://en.wikipedia.org/wiki/Getting_Things_Done" onclick="window.open(this.href); return false;">Getting Things Done</a> is a concept I've heard about before and I will be researching more.<br />
<br />
Sivers' blog post introduced a really <a href="http://uk2.php.net/autoload" onclick="window.open(this.href); return false;">cool bit of code</a> I may use in the future which allows you to add other PHP files to your script without ever using the <a href="http://blog.charanj.it/post/30/php-includes-and-requires" onclick="window.open(this.href); return false;">include and require</a> functions!<br />
<br />
</p><div class="pre code"><pre>
&amp;lt;?php
function __autoload($class_name) {
    require_once $class_name . '.php';
}

$obj  = new MyClass1();
$obj2 = new MyClass2(); 
?&amp;gt;
</pre></div><p><br />
<br />
The function launches when ever a class is initiated, from what I can tell. Not sure how it would work with files held in multiple folders, as I like to do, but certainly a beautiful piece of kit... Also, not sure if the piece of code has to be written into each file or if you (ironically) have to include it! I'll be giving it a go and will report back.<br />
<br />
Some great user examples on the <a href="http://uk2.php.net/autoload" onclick="window.open(this.href); return false;">PHP.net</a> page too.</p>
	              ]]></description>
	              <pubDate>Tue, 28 Oct 2008 18:07:25</pubDate>
	            </item>
		    <item>
                      <title>An iPod Touch version would be just perfect</title>
	              <link>http://blog.charanj.it/post/117/an-ipod-touch-version-would-be-just-perfect</link>
	              <description><![CDATA[
	              <p>Surely those lovely people over at SwitchEasy could rustle up something along the lines of their <a href="http://www.switcheasy.com/products/ThinsUltrablack/ThinsUltrablack.php" onclick="window.open(this.href); return false;">iPod Nano Capsule Thins</a> for the iPod Touch.<br />
<br />
<img src="/uploads/blackcapsulethin.jpg" alt="image" /><br />
<br />
The completely black housing is a beautiful creation and something I've craved since seeing the <a href="/post/86/apple-count-and-my-desires" onclick="window.open(this.href); return false;">original biscuit</a> earlier this year.<br />
<br />
An iPod Touch version would indeed be perfect. I mean, a silicon shell wouldn't exactly be revolutionary and having a separate screen that was able to adapt would be right on the money. I know there are probably lots of other issues for the manufacturer to consider, but I can dream!<!--fold--><br />
<br />
I seem to have lost the pin connector cover which is a bitch because the small section that sits under the home button bends upwards without it. I don't see it as a problem now, but if the bend increases over time, another case will be needed.</p>
	              ]]></description>
	              <pubDate>Mon, 27 Oct 2008 17:22:23</pubDate>
	            </item>
		    <item>
                      <title>Say goodbye to your record Chelski</title>
	              <link>http://blog.charanj.it/post/116/say-goodbye-to-your-record-chelski</link>
	              <description><![CDATA[
	              <p>Chelsea were not at their best, but I didn't ever really see Liverpool reach their peak. Alonso's goal had a touch of fortune about it, but with an effort tipped over the bar from Gerrard and an Alonso free kick coming back of the post, I don't think anyone could argue that Liverpool had the better chances and were well worth their lead and victory.<br />
<br />
Off course, Mourinho would have argued that they were cheated in some way, but Scolari and Benitez had little to say about each other and so much to say about the result, just the way it should be.<br />
<br />
The result puts the Reds clear at the very top of the league, and awesome place to be after you've beaten two major rivals early on in the season.<!--fold--><br />
<br />
As wel as being a great day for the club, it puts me in an even better mood for the journey up to Anfield for the West Brom game in a couple of weeks.<br />
<br />
In other news, Harry Redknapp has taken over as the boss of Tottenham Hotspurs. I give it a year.</p>
	              ]]></description>
	              <pubDate>Sun, 26 Oct 2008 20:39:37</pubDate>
	            </item>
		    <item>
                      <title>I'm going to Anfield</title>
	              <link>http://blog.charanj.it/post/115/i-m-going-to-anfield</link>
	              <description><![CDATA[
	              <p>A dream of mine has always been to go up to watch Liverpool play at Anfield. I want to be a part of the atmosphere and I am happy to report that I know have tickets for a match in November.<br />
<br />
Liverpool entertain West Brom on the 8th November and I will be there, just behind the goal in Anfield Road stand cheering them on! The game is a late kick off and should be on TV so i'll try and get it recorded... although having said that I don't actually own a VCR anymore!<br />
<br />
The tickets were not cheap, and it was a stressfull experience trying to get through online/on the phone for 50 minutes this morning, but definitely worth it.<br />
<br />
The last time I saw a Premier League match was when Chelsea beat Liverpool at Stamford Bridge, so seeing a Liverpool win would just be the icing on the cake.<br />
<br />
I'm planning to make a day of it and visit the club shop in the city centre, but we'll see how the day goes. I'm planning to take my <a href="http://flickr.com/photos/cchana/sets/72157602815439682/" onclick="window.open(this.href); return false;">fisheye camera</a> with me and I think I might be <a href="http://twitter.com/cchana" onclick="window.open(this.href); return false;">twittering</a> my movements for the whole day. I'll plan to  get there as early early as I can and if it's at all possible I'll try explore the stadium and stand in the Kop!</p>
	              ]]></description>
	              <pubDate>Thu, 23 Oct 2008 11:57:10</pubDate>
	            </item>
		    <item>
                      <title>My new jeans (Twelve Bar selvedge denim)</title>
	              <link>http://blog.charanj.it/post/114/my-new-jeans-twelve-bar-selvedge-denim-</link>
	              <description><![CDATA[
	              <p>Over the last few years, <a href="http://en.wikipedia.org/wiki/Selvage_denim" onclick="window.open(this.href); return false;">Japanese selvedge</a> denim became a big deal to those interested in street fashion. The fad has died out a lot, but having had a full range of different styles of denim, I have to say that I feel that selvedge is the way to go.<br />
<br />
This isn't something I'd normally blog about here, but I liked my new jeans so much, I thought it only fair.<br />
<br />
<a href="http://www.twelvebar.com" onclick="window.open(this.href); return false;">Twelve Bar</a> is a brand I really like, but I haven't found them to be very easy to come by in the UK. Luckily they ship internationally so it's not all bad.<br />
<br />
In the summer, they released a new line which contained some selvedge denim. I like the product photos, but I've found it to be better to try before you buy when it comes to jeans.<br />
<br />
After a few months, I gave in and purchased a pair of their 'Newman' unwashed denim and I am very, very impressed. The jeans feature a lot of nice features, including custom buttons and back pocket embroidery.<!--fold--><br />
<br />
</p><div class="flashcontent"><object type="application/x-shockwave-flash" data="/uploads/flash/newman_raw.swf" width="490" height="282"><param name="movie" value="/uploads/flash/newman_raw.swf" /></object></div><p><br />
<br />
You can see all the details in this flash file and checkout my ass and crotch in these photos!<br />
<br />
<img src="http://www.beunequaled.com/images/wearing_2008_10_19d.jpg" alt="image" /><br />
<img src="http://www.beunequaled.com/images/wearing_2008_10_19.jpg" alt="image" /></p>
	              ]]></description>
	              <pubDate>Sun, 19 Oct 2008 21:52:16</pubDate>
	            </item>
		    <item>
                      <title>Be Unequaled interview</title>
	              <link>http://blog.charanj.it/post/113/be-unequaled-interview</link>
	              <description><![CDATA[
	              <p>Shameless plug for an <a href="http://www.unequalledmagazine.com/?p=4162" onclick="window.open(this.href); return false;">interview</a> I participated in for Unequalled Magazine.</p>
	              ]]></description>
	              <pubDate>Sat, 18 Oct 2008 16:19:11</pubDate>
	            </item>
		    <item>
                      <title>New Apple products, MacBooks and cinema display</title>
	              <link>http://blog.charanj.it/post/112/new-apple-products-macbooks-and-cinema-display</link>
	              <description><![CDATA[
	              <p>I put some time aside to watch the keynote from earlier this week where Apple unveiled their new line of laptops and a new cinema display.<br />
<br />
<img src="/uploads/macbook_2008_10.jpg" alt="image" /><br />
<br />
As already stated by nearly every other commentary on the event, the announcements were not exactly surprising. Not they have been for quite a while now.<br />
<br />
Anyway, the new <a href="http://www.apple.com/macbook/" onclick="window.open(this.href); return false;">MacBooks</a> are beautiful. The all aluminium construction was heavily emphasised and impressive. The MacBooks transition to this new format was a great development, but the premium Apple have place on it will probably mean that the white version will probably be the biggest seller.<!--fold--><br />
<br />
<img src="/uploads/macbookwhite_2008_10.jpg" alt="image" /><br />
<br />
The new tech in the MacBooks and the <a href="http://www.apple.com/macbookpro/" onclick="window.open(this.href); return false;">Pro</a> are also great additions, but just as the upgrades made around the time I bought my MacBook, necessary and not ground breaking.<br />
<br />
I am extremely impressed with how precise the speaker holes, battery LEDs and power indicator LED have all been integrated into an aluminum construction. It really is a great peice of product design.<br />
<br />
<img src="/uploads/macbookpro_2008_10.jpg" alt="image" /><br />
<br />
The other big announcement was the new <a href="http://www.apple.com/displays/" onclick="window.open(this.href); return false;">Apple Cinema LED Display</a>.<br />
<br />
Purpose built for MacBooks, Apple had the genius idea of integrating a Magsafe adapter. When thinking about the prospect of setting up an external display with my laptop the logistical nightmare of the Magsafe adapter has always been a big drawback, but the cinema display would allow for even more portability when a regular external display experience is required.<br />
<br />
If I can get a HD signal in through a means other than my MacBook, the display might meet all my needs for a bedroom TV/monitor.</p>
	              ]]></description>
	              <pubDate>Fri, 17 Oct 2008 18:52:34</pubDate>
	            </item>
		    <item>
                      <title>Being sick sucks</title>
	              <link>http://blog.charanj.it/post/111/being-sick-sucks</link>
	              <description><![CDATA[
	              <p>I was off sick for the first half of this week, so my 'blogging' was reduced to a few <a href="http://www.twitter.com/cchana" onclick="window.open(this.href); return false;">tweets</a>.<br />
<br />
I haven't had the chance to watch the keynote from earlier this week, but I am keen to discuss the new MacBook lineup, something I hope to do in the next few days, even though the event became a distant memory about two days ago!<br />
<br />
I hate being sick.</p>
	              ]]></description>
	              <pubDate>Thu, 16 Oct 2008 11:05:30</pubDate>
	            </item>
		    <item>
                      <title>Removing PHP cookies</title>
	              <link>http://blog.charanj.it/post/110/removing-php-cookies</link>
	              <description><![CDATA[
	              <p>If you set a cookie that covers all of the sub-domains of your site, you can't just unset the cookie in a casual way, you'll have to specify that the cookie set for all sub-domains should go.<br />
<br />
You can set a cookie for all sub-domains by specifying the domains as .domain.com - a period before the top level domain.<br />
<br />
I thought you could just unset the cookie by specifying the cookie's name, but that's not the case</p>
	              ]]></description>
	              <pubDate>Sat, 11 Oct 2008 09:50:49</pubDate>
	            </item>
		    <item>
                      <title>Web browser figures (September 08)</title>
	              <link>http://blog.charanj.it/post/109/web-browser-figures-september-08-</link>
	              <description><![CDATA[
	              <p>The <a href="http://www.w3schools.com/browsers/browsers_stats.asp" onclick="window.open(this.href); return false;">figures</a> are in and one thing that continues to surprise me is the market share IE6 still enjoys. Yes it's in decline, but I am just amazed that more than 20% of those browsing the web are making do with such a poor piece of software. Weirdly, I don't know anyone that uses it and wouldn't instantly remove them from my circle of friends if they refused to upgrade to IE7 at least!<br />
<br />
</p><ul><li><strong>September 2008</strong></li><li>Internet Explorer 7 26.3%</li><li>Internet Explorer 6 22.3%</li><li>Google Chrome 3.1%</li><li>Firefox 42.6%</li><li>Mozilla 0.5%</li><li>Safari 2.7%</li><li>Opera 2.0%</li></ul><p><br />
<br />
Apple and Opera must be wondering what they have to do to get their market share to grow. Safari renders fonts beautifully, even on a PC, but they have been leapfrogged by Chrome which is still in beta and in it's first month!<br />
<br />
I still use Firefox at work, but half of the team I work with use Chrome. I can't wait for the Mac version because it is a nice piece of software.</p>
	              ]]></description>
	              <pubDate>Fri, 10 Oct 2008 16:43:10</pubDate>
	            </item>
		    <item>
                      <title>What a load of fucking bollocks</title>
	              <link>http://blog.charanj.it/post/108/what-a-load-of-fucking-bollocks</link>
	              <description><![CDATA[
	              <p><a href="http://news.bbc.co.uk/sport1/hi/football/teams/l/liverpool/7661183.stm" onclick="window.open(this.href); return false;">Pure bullshit</a> from the Juventus manager.<br />
<br />
I wonder Alonso would rather be?! 2nd in the <em>faster</em> Premier League or 11th in the <em>slower</em> (my opinion) Serie A? As much as I love Italian football, English football is at the very top right now and Liverpool are lucky that Juve didn't want him.</p>
	              ]]></description>
	              <pubDate>Fri, 10 Oct 2008 15:23:15</pubDate>
	            </item>
		    <item>
                      <title>The iternet isn't as international as it should be</title>
	              <link>http://blog.charanj.it/post/107/the-iternet-isn-t-as-international-as-it-should-be</link>
	              <description><![CDATA[
	              <p>When it comes to web based apps, surely your location (language permitting) shouldn't exclude you from being able to access a site or service.<br />
<br />
Off course, governments and organisations may wish to block you, but that's a different story.<br />
<br />
Why are those of us in the UK blocked from using Pandora? I really want to download the <a href="http://www.pandora.com/on-the-iphone" onclick="window.open(this.href); return false;">Pandora app</a> but being outside the US makes this impossible.<br />
<br />
It looks like an excellent app and I really miss using Pandora.<br />
<br />
This isn't the only case of this either. In this day and age, anything served up as a digital download should really be released simultaneously across the globe, shouldn't it?! I don't think I'd be far off if I touted greed as the main reason, but how much money do record labels and film studios <em>not make</em> by not having international releases for digital companies compared to the money they loose from piracy and people using proxies to get around these restrictions?<br />
<br />
DRM sucks too by the way.</p>
	              ]]></description>
	              <pubDate>Thu, 9 Oct 2008 12:12:51</pubDate>
	            </item>
		    <item>
                      <title>Boo to all Windows only apps and accessories</title>
	              <link>http://blog.charanj.it/post/106/boo-to-all-windows-only-apps-and-accessories</link>
	              <description><![CDATA[
	              <p>Not that is an important one by any means, but still, I want one!<br />
<br />
<img src="http://www.usbgeek.com/prod_img/usbwebmailnotifier3.jpg" alt="image" /><br />
<br />
Via <a href="http://www.engadget.com" onclick="window.open(this.href); return false;">engadget.com</a>, from <a href="http://www.usbgeek.com/prod_detail.php?prod_id=0922" onclick="window.open(this.href); return false;">USB Geek</a>.</p>
	              ]]></description>
	              <pubDate>Wed, 8 Oct 2008 17:14:35</pubDate>
	            </item>
		    <item>
                      <title>Fernando's record</title>
	              <link>http://blog.charanj.it/post/104/fernando-s-record</link>
	              <description><![CDATA[
	              <p>Torres has been a real revelation at Liverpool. Not only did he surpass van Nistelrooys record for goals in a debut season, he was the first Liverpool striker since Robbie Fowler, around 10years ago, to score more than 20 league goals in a season. That fact alone goes some way to justifying my dislike of Michael Owen as a Liverpool player.<br />
<br />
The lively Spaniard has now taken another record, becoming the highest scoring foreigner in Liverpool history and he did so by equalling and then surpassing Patrik Berger's record in the game against City on the weekend.<!--fold--><br />
<br />
I'm guessing that these are league goals and possibly in Premiership history. Here's the list of top foreign scorers in full:<br />
<br />
</p><ul><li>Fernando Torres 29</li><li>Patrik Berger 28</li><li>Sami Hyypia 21</li><li>John Arne Riise 21</li><li>Milan Baros 19</li><li>Luis Garcia 18</li><li>Dirk Kuyt 15</li><li>Djibril Cisse 13</li><li>Harry Kewell 12</li><li>Xabi Alonso 11</li><li>Karlheinz Riedle 11</li><li>Vladimir Smicer 10</li></ul><p><br />
<br />
An impressive list of players to have in your side I think, but hopefulyl Torres continues to push his way past record after record while helping us to get to the holy land!</p>
	              ]]></description>
	              <pubDate>Mon, 6 Oct 2008 09:41:48</pubDate>
	            </item>
		    <item>
                      <title>Blog improvements - SEO and spam</title>
	              <link>http://blog.charanj.it/post/105/blog-improvements-seo-and-spam</link>
	              <description><![CDATA[
	              <p>I have made a couple of changes to the blog this past week. Firstly, I've stopped comments being auto published. I need to refine this process somewhat, but after getting hit hard by spam, it was a necassary move.<br />
<br />
The second change I made was to increase the SEO a little more. I simply changed underscores to dashes in the URLs. Apart from that, all should be working fine. The underscore version of URLs still work, so results from search engines and external links will still work, but I am looking into taking it one step further and putting a permanent redirect in place.<br />
<br />
I also need to update internal links, but that is to come!</p>
	              ]]></description>
	              <pubDate>Mon, 6 Oct 2008 08:08:23</pubDate>
	            </item>
		    <item>
                      <title>Things that no web developer should forget (SEO)</title>
	              <link>http://blog.charanj.it/post/103/things-that-no-web-developer-should-forget-seo-</link>
	              <description><![CDATA[
	              <p>There are just some things that no front end developer should ever forget. There are so many things that often fall to the bottom of the list when developing something for the web, none more so than the ones I'll be highlighting here. It's often easy to forget small details, but when they're in they could make a big difference, especially when it comes to SEO and accessibility.<br />
<br />
</p><h4>Titles</h4><p><br />
Often in Firefox, I find myself with quite a few tags but some of them just show 'Untitled' which just isn't very useful. Some sort of identification is always welcome by the user, whether they've minimized or tabbed your page.<br />
<br />
</p><h4>Background color</h4><p><br />
This is a trivial issue and probably less than 0.1% of people will ever even notice it, but I will and it's a commonly forgotten bit of CSS or HTML when white backgrounds are used.<!--fold--><br />
<br />
Most, if not all, modern browsers have a white background set as the default, but if you change the settings to show a light grey background instead, you soon realize the number of developers who just simply forget an attribute when really, the case should be the opposite. This is something I picked up from a colleague of mine from my days at <a href="http://www.monkeehouse.com" onclick="window.open(this.href); return false;">Monkeehouse</a>, <a href="http://www.bytenoise.co.uk" onclick="window.open(this.href); return false;">Zoe Blade</a>.<br />
<br />
</p><h4>Alt tags</h4><p><br />
Whatever your feelings about accessibility, I think it's something that should always be considered. Whether client's require it or not, it often leads to code that's valid. Alt tags should be used wherever possible.<br />
<br />
Alt tags shouldn't be blank, but if there's nothing to say, don't say it. If you can't apply an alt tag, maybe consider making the image a background as this will keep it out of the page and hopefully increase load time for those not using visual browsers.<br />
<br />
At the moment, my BBCode doesn't support this, so I am guilty of not following this rule on some occasions, but I plan to make the necessary changes very soon.<br />
<br />
</p><h4>&amp;amp;</h4><p><br />
Ampersand's do not validate, so when called dynamically through a database or AJAX, make sure you call ampersands correctly! not <strong>&amp;amp;</strong> but an <strong>&amp;amp;</strong> followed by <strong>amp;</strong><br />
<br />
This should apply everywhere, be it content, links, titles or even meta data.<br />
<br />
</p><h4>Summary</h4><p><br />
That's all I've got for now, but hopefully I can part with some more words of wisdom in the future. The tips I've posted above should help to make your code validate first time, rather than having to go back and tidy up little things at the end.</p>
	              ]]></description>
	              <pubDate>Sat, 4 Oct 2008 13:53:49</pubDate>
	            </item>
		    <item>
                      <title>The DSi</title>
	              <link>http://blog.charanj.it/post/102/the-dsi</link>
	              <description><![CDATA[
	              <p>Nintendo announced the next evolution of the DS earlier this week. At first I was unsure about my feelings towards it. I own a DS Lite that I got almost 10months ago. I've gotten plenty of use from it, especially when I was commuting by train.<br />
<br />
At first, the addition of cameras was a big feature that was commented on by every tech news outlet around, but for me, the biggest pluses are the FREE browser that will be available for download from the store and a SD card slot.<br />
<br />
Considering every other web enabled platform seems to have a free browser of some sort, the fact that Nintendo were charging for the Opera browser and then the fact that it needed an attachment, web browsing on the DS was never going to be a big selling point. The Wii's Opera browser should be pre-installed or at the very least, it should have remained a free download. Luckily, I downloaded it prior to the charge.<br />
<br />
The addition of an SD card slot on the DS is going to make the camera an interesting proposition. The slot and a 12% slimmer profile, are available thanks to the absence of the GBA slot. No big deal to me as I was never a GBA owner, but it could be an issue for those that have been considering, but are yet to make the step up.<br />
<br />
If I'm honest, I wouldn't have waited has I known about this new DS. Mainly because it will be something like 13 months between my purchase and the UK release of the DSi and my purchase was a semi-impulse buy. But SD card slot would have made the decision that little bit harder.<br />
<br />
The DSi is certainly an improvement on the previous model, and just as when the DS became the DS Lite, the DSi looks to be very good value for money.</p>
	              ]]></description>
	              <pubDate>Fri, 3 Oct 2008 12:28:10</pubDate>
	            </item>
		    <item>
                      <title>I need a new phone</title>
	              <link>http://blog.charanj.it/post/101/i-need-a-new-phone</link>
	              <description><![CDATA[
	              <p>My contract with T-Mobile is almost off, but due to my heavily discounted rate, I'm not looking to move away, just upgrade my handset.<br />
<br />
I'd like to get either the Nokia N96 or the 6220 Classic when I finally upgrade. The later is the one I'd pick if given the choice. A flip version (ala N93) of the N96 would off course be my ultimate handset, but with the iPod Touch, Nintendo DS and plenty of other electronics floating around the house, I think the 6220 would fit in nicely without overlapping the others too much.<br />
<br />
The N96 has suddenly appeared as a handset on the UK T-Mobile site, but the 6220 has no mention at all. I've been told that they'll be getting it soon, but with just a few weeks left, I'd rather sort it out sooner than later!<br />
<br />
Despite my <a href="http://blog.charanj.it/post/87/casio_exilim_pro_ex_fh20" onclick="window.open(this.href); return false;">earlier claims</a> that I didn't have much desire for any more gadgets, a new handset is a must thanks to my 3 year stint with the Nokia N70. Yes, I said <strong>3</strong> :(</p>
	              ]]></description>
	              <pubDate>Thu, 2 Oct 2008 12:12:16</pubDate>
	            </item>
		    <item>
                      <title>The Nerdist</title>
	              <link>http://blog.charanj.it/post/100/the-nerdist</link>
	              <description><![CDATA[
	              <p>From my addiction to video podcasts (hightened even more by the arrivial of the iPod Touch), I've come across a few comedians that I really enjoy watching.<br />
<br />
One of them is <a href="http://www.nerdist.com" onclick="window.open(this.href); return false;">Chris Hardwick</a>, who frequently pops up on G4's various <a href="http://www.g4tv.com/attackoftheshow/" onclick="window.open(this.href); return false;">Attack Of the Show</a> podcasts. I'm a subscriber to his blog and have recently found some of his <a href="http://www.youtube.com/results?search_query=chris+hardwick+stand+up&amp;amp;search_type=&amp;amp;aq=-1&amp;amp;oq=" onclick="window.open(this.href); return false;">stand up</a> on YouTube. I won't be too kind and say that he's the best, but he certainly full on and passionate about the topics he talks about.<!--fold--><br />
<br />
</p><div class="flashcontent"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/lKYPeqjvRCQ&amp;amp;hl=en&amp;amp;fs=1&amp;amp;color1=0x2b405b&amp;amp;color2=0x6b8ab6"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/lKYPeqjvRCQ&amp;amp;hl=en&amp;amp;fs=1&amp;amp;color1=0x2b405b&amp;amp;color2=0x6b8ab6" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"></embed></object></div><p></p>
	              ]]></description>
	              <pubDate>Thu, 2 Oct 2008 09:52:39</pubDate>
	            </item>
		    <item>
                      <title>SwitchEasy's RebelTouch for the iPod Touch</title>
	              <link>http://blog.charanj.it/post/99/switcheasy-s-rebeltouch-for-the-ipod-touch</link>
	              <description><![CDATA[
	              <p>As I continue to fall head over heels for my iPod Touch, the temporary silicon Belkin cover (for the 1G) I bought just isn't cutting it. It's a little loose around the edges and dirt just seems to seep under the cover.<br />
<br />
Luckily, I've been keeping an eye on the <a href="http://www.switcheasy.com" onclick="window.open(this.href); return false;">SwitchEasy</a> website and was glad to see that they had released a RebelTouch case for the iPod Touch 2G. It was a case I really liked the look off on the iPhone so I'm really pleased it's made the transition over to the Touch.<br />
<br />
<img src="/uploads/switcheasy_rebel_stock.jpg" alt="image" /><br />
<br />
Unfortunately, I had to wait a few more days because the <a href="http://www.switcheasy-europe.com" onclick="window.open(this.href); return false;">European site</a> didn't get the product straight away.<br />
<br />
I <a href="http://twitter.com/cchana/statuses/941158341" onclick="window.open(this.href); return false;">ordered</a> the case last night, a little steep at ~£22 with delivery, but it's pretty stylish, plenty of included kit and valuable protection.<br />
<br />
I am looking forward to making use of the included stand too, should make viewing even easier... All I need now is a TV out that actually works!</p>
	              ]]></description>
	              <pubDate>Wed, 1 Oct 2008 10:55:30</pubDate>
	            </item>
		    <item>
                      <title>Facebook is so over</title>
	              <link>http://blog.charanj.it/post/98/facebook-is-so-over</link>
	              <description><![CDATA[
	              <p>Well for me anyway! I don't care about the new look, but I am fed up with it.<br />
<br />
I know it's still a popular platform but it's just not relevant to me anymore. If my significant other wasn't still using it occassionly, I'd be out already!!</p>
	              ]]></description>
	              <pubDate>Fri, 26 Sep 2008 21:23:51</pubDate>
	            </item>
		    <item>
                      <title>Keeping myself up to date</title>
	              <link>http://blog.charanj.it/post/97/keeping-myself-up-to-date</link>
	              <description><![CDATA[
	              <p>In the past, I've often stumbled across gadget and tech news a little too late but I've been making better use of the web apps and services available to me.<br />
<br />
<a href="http://reader.google.com" onclick="window.open(this.href); return false;">Google Reader</a> has to be my favourite right now. It's something I've wanted to see for ages, but only after a bit of searching did I find it. I'll be adding a Google Reader widget to the sidebar in a few days so that I can share my favourite topics with my audience.<!--fold--><br />
<br />
On another note, spammers have hit my commenting system, hard :( I'll be logging IPs in the future to help combat the problem. I'll try and write up a full blog post about it when I get around to doing it.</p>
	              ]]></description>
	              <pubDate>Thu, 25 Sep 2008 15:33:45</pubDate>
	            </item>
		    <item>
                      <title>The High Speed Scene</title>
	              <link>http://blog.charanj.it/post/96/the-high-speed-scene</link>
	              <description><![CDATA[
	              <p>I randomly checked out the <a href="http://www.thehighspeedscene.com" onclick="window.open(this.href); return false;">High Speed Scene</a>'s website yesterday for the first time in months and was greeted with a new message that was posted by band member Max a couple of weeks ago<br />
<br />
</p><div class="pre quote"><p>Ladies and gentleman, the last couple years have seen some major changes and upheaval in the High Speed Scene camp. As you may or may not have noticed, we have taken an extended leave of absence from playing live as the High Speed Scene. All of us have been involved in various musical endeavors, including writing soundtracks, mixing records, recording albums, and touring with other bands. I would like to plug a great record that I had the pleasure to play keyboards and pedal steel guitar on, check out the new album Waiting For the Sunrise by my friend David Vandervelde. Adam and I are now part of the New York band We Are Scientists, and Domen is lost in Russia, according to the most recent sitings.<br />
<br />
That being said, we still have that long promised 6 song EP in the can and I promise, promise, PROMISE that wee will put that out eventually. Life happened, we got sidetracked, short attention spans, you know the story. I hope you will come out and see us as part of We Are Scientists , if you like the High Speed Scene, you will love you some Scientists. Hope you are all well, and please stay in touch, people!<br />
<br />
~max</p></div><p><br />
<br />
The band are one of my favourites and I can't wait to get my hands on the promised EP. If you haven't heard them, please check them out. <em>Fuck 'n' Spend</em> is an awesome, upbeat, track and their album is just perfect in my eyes.<br />
<br />
As a result of reading the announcement, I've been listening to, and become a fan of, <a href="http://www.wearescientists.com" onclick="window.open(this.href); return false;">We Are Scientists</a>. Check them out too!</p>
	              ]]></description>
	              <pubDate>Thu, 25 Sep 2008 09:27:04</pubDate>
	            </item>
		    <item>
                      <title>iTunes: a future addiction?</title>
	              <link>http://blog.charanj.it/post/95/itunes-a-future-addiction-</link>
	              <description><![CDATA[
	              <p>Prior to, and in anticipation of, the iPod Touch announcement earlier this month, I began making better use of the iTunes store. Rather than using it to find podcasts and free music, I began exploring the app store and even tentatively adding potential purchases to my basket.<br />
<br />
I haven't really spent much in the past 3 weeks, maybe £20 all together on things that I really want. Admittedly £9 of that was on PangeaVR Pro, which I wish I hadn't spent as the free version is exactly the same from what I can tell :(<br />
<br />
The Genius feature in iTunes certainly hasn't helped matters by recommending various songs that really appealed to me.<!--fold--><br />
<br />
The multiple receipts I receive do get annoying, but I can live with them!<br />
<br />
With stores like Woolworths and HMV no longer selling singles in store, iTunes is certainly going to take up a bigger part of my budget, especially since I haven't used a P2P application for over 2 years now!</p>
	              ]]></description>
	              <pubDate>Wed, 24 Sep 2008 09:38:36</pubDate>
	            </item>
		    <item>
                      <title>Finished reading Watchmen...</title>
	              <link>http://blog.charanj.it/post/94/finished-reading-watchmen-</link>
	              <description><![CDATA[
	              <p>So, I finally made it through the Watchmen graphic novel. I thought it was a very good read, and the graphics are beautifully done throughout. From the trailer I've seen, the film looks to be pretty faithfull too, which is always nice to see.<br />
<br />
I have to say, though, I was a little underwhelmed and don't understand the hype as I thought I might. I am actually looking forward to the film though, because it definitely looks like something that needs to be seen.<br />
<br />
<img src="/uploads/watchmen_cover.jpg" alt="image" /><br />
<br />
I will confess that I often skipped or skimmed over parts that intertwined with a comic inside the novel, but only the other comics text. I didn't see it as important, but I may go back and read these bits to see if they have any effect over the story, but from the bits I read, they did not.<br />
<br />
One for comic/graphic novel fans, but for those with a casual interest, probably not one that will interest you in the way that the forthcoming film hopefully will.</p>
	              ]]></description>
	              <pubDate>Tue, 23 Sep 2008 12:11:20</pubDate>
	            </item>
		    <item>
                      <title>Diggnation in London</title>
	              <link>http://blog.charanj.it/post/93/diggnation-in-london</link>
	              <description><![CDATA[
	              <p>I was catching up on Diggnation episodes yesterday morning and saw a live one from two or three weeks ago and thought I'd make the effort to go see they guys if they ever came back to London. Turns out they're coming in October, but I won't be able to make it :(<br />
<br />
<a href="http://twitter.com/kevinrose/statuses/930717538" onclick="window.open(this.href); return false;">Kevin Rose tweeted</a> about it and they'll be appearing on day 2 of the <a href="http://london2008.futureofwebapps.com/socialize" onclick="window.open(this.href); return false;">FOWA</a> expo at the London ExCel.<br />
<br />
Damn :(</p>
	              ]]></description>
	              <pubDate>Mon, 22 Sep 2008 19:46:33</pubDate>
	            </item>
		    <item>
                      <title>Checking in with the iPod Touch</title>
	              <link>http://blog.charanj.it/post/92/checking-in-with-the-ipod-touch</link>
	              <description><![CDATA[
	              <p>I absolutely love the little thing. I guess I have a better understanding of the appeal of the iPhone now though. From a social networking/email perspective, the always on approach of the iPhone is a big plus, but for me the monthly cost of this convenience just isn't worth it.<br />
<br />
My iPod Touch will receive a full review in a week or so as I get more and more use out of the device.<br />
<br />
Look out for the launch of a <a href="http://www.freeappreviews.com" onclick="window.open(this.href); return false;">new site</a> I'm planning too.</p>
	              ]]></description>
	              <pubDate>Mon, 22 Sep 2008 10:47:39</pubDate>
	            </item>
		    <item>
                      <title>Cost effective Windows XP</title>
	              <link>http://blog.charanj.it/post/91/cost-effective-windows-xp</link>
	              <description><![CDATA[
	              <p>One thing I sometimes struggle with is developing for IE at home. I don't have easy access to a Windows PC, so IE fixes normally last on my list, no matter how small or big they may be.<br />
<br />
One option I have is the fit-PC, now available in a size that takes up just 330cc! That's litterally nothing, as this picture shows:<br />
<br />
<img src="http://www.fit-pc.com/new/images/stories/Slim/500_keys.jpg" alt="image" /><br />
<br />
I'm waiting for the release, and to see UK pricing, but this could make it's way into my home as my Windows/IE7 test bed.</p>
	              ]]></description>
	              <pubDate>Fri, 19 Sep 2008 09:38:55</pubDate>
	            </item>
		    <item>
                      <title>iPod Touch photos</title>
	              <link>http://blog.charanj.it/post/90/ipod-touch-photos</link>
	              <description><![CDATA[
	              <p>So I finally got home after a little detour and distraction from a friend!<br />
<br />
<img src="http://farm4.static.flickr.com/3124/2865669545_181e57a5fc.jpg" alt="image" /><br />
<br />
I'm really pleased with the Touch and can't wait to get more use out of it. Videos look great, music sounds great and I have found a few key apps.<br />
<br />
Twitter makes so much more sense from a mobile device.<br />
<br />
You can check out my <a href="http://flickr.com/photos/cchana/sets/72157607345601084/" onclick="window.open(this.href); return false;">Flickr set of my un-boxing</a> but I hope to have a slide show up and running here in a day or two!</p>
	              ]]></description>
	              <pubDate>Wed, 17 Sep 2008 23:27:55</pubDate>
	            </item>
		    <item>
                      <title>Marseille were definitely hungrier</title>
	              <link>http://blog.charanj.it/post/89/marseille-were-definitely-hungrier</link>
	              <description><![CDATA[
	              <p>While watching the match last night, I said to myself that Marseille wanted the result more than Liverpool. Maybe for 20 minutes, Liverpool took control, but Mascherano, Lucas and the entire back four just looked really tired.<br />
<br />
Thankfully, we collected all three points, but it really didn't feel like a Champions League performance.<br />
<br />
I think the United game took a lot out of the players, especially with the amount of distance they covered, but hopefully we're able to perform better through the rest of the season.<br />
<br />
<img src="/uploads/gerrard_celebrate_vs_marseille.jpg" alt="image" /><br />
<br />
Awesome goal from Gerrard by the way. Sweetly struck and perfectly placed.</p>
	              ]]></description>
	              <pubDate>Wed, 17 Sep 2008 12:43:43</pubDate>
	            </item>
		    <item>
                      <title>iPod Touch in my bag</title>
	              <link>http://blog.charanj.it/post/88/ipod-touch-in-my-bag</link>
	              <description><![CDATA[
	              <p>Oh, I'm so excited! I was a bit miffed as to why the box it was delivered in felt like it was carrying air. When I opened the box, I was a bit concerned that there was just a small bit of bubble wrap and some air pockets for protection. I unrolled the bubble wrap to find some tiny box inside. The iPod Touch packaging is tiny but that's no bad thing!<br />
<br />
I'll be posting photos of the un-boxing tonight and I will try to include a photo of the iPod Touch's and iPod Mini's packaging so you can see the difference!<br />
<br />
TNT's service sucks by the way.</p>
	              ]]></description>
	              <pubDate>Wed, 17 Sep 2008 10:06:47</pubDate>
	            </item>
		    <item>
                      <title>Casio Exilim Pro EX-FH20</title>
	              <link>http://blog.charanj.it/post/87/casio-exilim-pro-ex-fh20</link>
	              <description><![CDATA[
	              <p>I wrote about Casio's <a href="http://www.instinctivegaming.com/?p=151" onclick="window.open(this.href); return false;">EX-F1</a> hi-speed, hi-def camera. I would love to have the ability to record in super-slow motion, and with one of the cameras in the Exilim range, that would be a very real possiblity.<br />
<br />
<img src="http://www.casio.co.uk/images/EX-FH20.jpg" alt="image" /><br />
<br />
This new camera, the EX-FH20, looks to be more compact and maybe more of a little brother than an upgrade, but it still packs a punch with up  to 1,000 fps and HD quality video.<br />
<br />
Along with a Blu-ray player, this could very well be the only piece of gadget pr0n to make it on to my wanted list!</p>
	              ]]></description>
	              <pubDate>Tue, 16 Sep 2008 20:27:40</pubDate>
	            </item>
		    <item>
                      <title>Apple count and my desires</title>
	              <link>http://blog.charanj.it/post/86/apple-count-and-my-desires</link>
	              <description><![CDATA[
	              <p>It was an <a href="http://switcheasy.com/products/Biscuits/Biscuits.html" onclick="window.open(this.href); return false;">iPod Nano case</a> that got me looking at the possibility of a <a href="http://blog.charanj.it/post/82/ipod_touch" onclick="window.open(this.href); return false;">new iPod purchase</a>, some 4 1/2 years after my first.<br />
<br />
<img src="/uploads/nano_biscuit.jpg" alt="image" /><br />
<br />
The SwitchEasy Biscuit just made the podgy little 3rd gen Nanos look mighty sexy and completely desireable. Had a new Touch been a few months away, a Nano may well have found it's way into my pocket.<br />
<br />
With the arrival of my iPod Touch, my Apple product count sits at <span class="strikethrough">6</span> 5 (can't count!), not too bad and all products I use regularly. The list is comprised of:<br />
<br />
</p><ul><li>iPod Mini (1st gen)</li><li>Mac Mini (2nd gen)</li><li>MacBook (2008)</li><li>Airport Express (2008)</li><li>iPod Touch (2nd gen)</li></ul><p><br />
<br />
I think the iPod Mini will quickly be relegated to a workout mp3 player and general storage device, despite the Touch's built in Nike+ app and functionality. Considering I own an armband and a Nike+ SportBand, it doesn't make too much sense to break in my Touch in this way.<br />
<br />
Oh and I will have picks of the Touch upon it's arrival.</p>
	              ]]></description>
	              <pubDate>Mon, 15 Sep 2008 00:28:05</pubDate>
	            </item>
		    <item>
                      <title>Liverpool take all three points</title>
	              <link>http://blog.charanj.it/post/85/liverpool-take-all-three-points</link>
	              <description><![CDATA[
	              <p>Manchester United were not as good as Liverpool today. Same basic story as in the last few meetings, but this time the lads got exactly what they deserved. Well done!<br />
<br />
Three points clear at the top for a few hours and a title rival beaten, certainly not a bad day's work!<br />
<br />
Oh, and £30million for a mopey Berbatov or £20million for Keane? Keane all the way thanks!</p>
	              ]]></description>
	              <pubDate>Sat, 13 Sep 2008 15:05:01</pubDate>
	            </item>
		    <item>
                      <title>Lego Batman Trailer</title>
	              <link>http://blog.charanj.it/post/84/lego-batman-trailer</link>
	              <description><![CDATA[
	              <p>I've heard of this game, and seen a few stills from the Lego Indian Jones game, but not seen much of the new Lego Batman game. It looks awesome! A really fun game that will really be at home on the Wii.<br />
<br />
</p><div class="flashcontent"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/-KL-yQ2GtsM&amp;amp;hl=en&amp;amp;fs=1&amp;amp;color1=0x2b405b&amp;amp;color2=0x6b8ab6"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/-KL-yQ2GtsM&amp;amp;hl=en&amp;amp;fs=1&amp;amp;color1=0x2b405b&amp;amp;color2=0x6b8ab6" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"></embed></object></div><p><br />
<br />
It doesn't look like it will be too taxing, but an interesting take on the Batman franchise. It could even be my first purchase since, well, last year!</p>
	              ]]></description>
	              <pubDate>Fri, 12 Sep 2008 15:33:29</pubDate>
	            </item>
		    <item>
                      <title>Congratulations, God</title>
	              <link>http://blog.charanj.it/post/83/congratulations-god</link>
	              <description><![CDATA[
	              <p>Really, really pleased to hear the news that Robbie Fowler has signed a three month contract with Blackburn Rovers. The guy is a genuine goal scorer and I'm sure he'll get some goals before the season is out.<br />
<br />
<img src="http://www.rovers.premiumtv.co.uk/javaImages/d/38/0,,10303~3815437,00.jpg" alt="image" /><br />
<br />
Good luck and well done, God!</p>
	              ]]></description>
	              <pubDate>Fri, 12 Sep 2008 15:03:53</pubDate>
	            </item>
		    <item>
                      <title>iPod Touch</title>
	              <link>http://blog.charanj.it/post/82/ipod-touch</link>
	              <description><![CDATA[
	              <p>Made a trip to the <a href="" onclick="window.open(this.href); return false;">Kingston Apple Store</a> and took some time to play with the new Nanos and Touchs. For me, the Nano's screen did have quite a bit of noticeable glare towards the edges that would make video difficult to view BUT the colours are amazing, the interface is better than ever and it's thin. Really thin.<br />
<br />
I decided that the Touch was right for me and put an order in for the 16Gb version a few minutes ago.<br />
<br />
I was considering the 32Gb version, but I'm sure they've upped the price by £10 over the last day or so. 16Gb should be more than enough for me so I am happy I finally put the order in!<br />
<br />
I also downloaded iTunes 8 which is really nice. The Genius feature looks intersting, but the constant iTunes store plugging on the right had to go asap!<!--fold--><br />
<br />
I really wanted my original mini engraved, but opted for employee discount at an electronics store and replaced the saving with a 5 year warranty which came in handy last year (3.5 years in). This time, I got my wish, along with a small discount thanks to my employers.<br />
<br />
<img src="/uploads/ipodtouchbackmockup.jpg" alt="image" /><br />
<br />
I got my name/URL and purchased a protective film to help keep it in it's best condition for as long as possible!</p>
	              ]]></description>
	              <pubDate>Thu, 11 Sep 2008 21:58:53</pubDate>
	            </item>
		    <item>
                      <title>Wireless network backups are hard</title>
	              <link>http://blog.charanj.it/post/81/wireless-network-backups-are-hard</link>
	              <description><![CDATA[
	              <p>Turns out the <a href="/post/77/wireless_backup_and_storage_options" onclick="window.open(this.href); return false;">network drive enclosure</a> I bought from Maplin was a pile of shit!<br />
<br />
The box said it was Mac compatible, it wasn't. I should have been able to FTP or mount the drive, I couldn't. It only ever 'worked' as a 'network' drive when plugged into a PC's ethernet port BUT since there's only one port, I couldn't use the internet meaning it would only be available on it's own private closed network... Not useful at all. I'll be trying to return it this week, just got to find the receipt!</p>
	              ]]></description>
	              <pubDate>Thu, 11 Sep 2008 10:09:19</pubDate>
	            </item>
		    <item>
                      <title>New iPod Nano's and iPod Touch's announced!</title>
	              <link>http://blog.charanj.it/post/80/new-ipod-nano-s-and-ipod-touch-s-announced-</link>
	              <description><![CDATA[
	              <p>Steve Jobs announced the new iPod <a href="http://www.apple.com/ipodnano" onclick="window.open(this.href); return false;">Nano</a> and <a href="http://www.apple.com/ipodtouch" onclick="window.open(this.href); return false;">Touch</a> receiving a mixed reaction from the press. Most were impressed with the announcement, but many felt that they weren't worthy of a 'keynote'. I'm excited about the new iPod's so was 90% happy with what was announced.<br />
<br />
A few reporters had said that they thought it wouldn't be as big a deal as Apple was making out, and in some ways they were right.<br />
<br />
The Nano first. It was the same as we saw in the leaked photos. It features an awesome shake to shuffle feature and the new Genius playlists.<br />
<br />
The iPod Touch will most likely be my next tech purchase and now features Nike+ integration, better battery life, a slimmer profile, volume controls, built-in speaker AND the Genius playlists option.<br />
<br />
I am wondering why the iPhone and iPod Touch don't the shuffle feature of the iPod nano, but that's a small niggle.<br />
<br />
I'm a little disappointed that the Touch doesn't come with GPS, but downloading maps without 3G would have been hit and miss. Either that or a large chunk of memory would be eaten by pre-loaded maps. Had it come with GPS, I think I would have been far more compelled to order one last night!.<!--fold--><br />
<br />
In any case, after the first gen's <a href="http://arstechnica.com/journals/apple.ars/2007/09/20/apple-fesses-up-to-ipod-touch-display-problems" onclick="window.open(this.href); return false;">reported problems</a>, I'm going to go and actually have a look at one in store before ordering (I want mine engraved). This will also give me a chance to take a look at the new iPod Nano's which may actually fulfil my needs as much as an iPod Touch, just without the touch screen interface and access to the web/email. The wi-fi ability of the Touch certainly makes me think the extra cash will be worth it in the long run, but seeing them side by side, I'll be better placed to judge!<br />
<br />
<img src="/uploads/ipodtouch2g.jpg" alt="image" /><br />
<br />
If I do go for an iPod Touch, all I need to do is decide on which version I want! I feel the 8Gb version will be too small, especially with the amount of video podcast content I seem to collect. Whether I take the Touch or the Nano route, the 16Gb version will probably offer me the best value for money.<br />
<br />
<strong>Update:</strong> Forgot to mention I was dissapointed at the iPod Touch's lack of bluetooth, but since my <a href="/post/28/jabra_bt620s_headphones" onclick="window.open(this.href); return false;">Jabra headphones</a> come with an iPod adapter, I'm hoping they'll work and give me the minimum use I would have wanted to get out of integrated bluetooth!<br />
<br />
Reckon I will be ordering an iPod Touch, seeing it in the flesh is just a formality at this point! :D</p>
	              ]]></description>
	              <pubDate>Wed, 10 Sep 2008 10:34:25</pubDate>
	            </item>
		    <item>
                      <title>To buy or not to buy, Football Mananger 2009</title>
	              <link>http://blog.charanj.it/post/79/to-buy-or-not-to-buy-football-mananger-2009</link>
	              <description><![CDATA[
	              <p>I used to be a huge fan of <span class="strikethrough">Championship</span> Football Manager, having played from CM2 all the way up to FM2006.<br />
<br />
FM2009 is due for release this November, but if I'm honest, I am finding it difficult to get excited about it.<br />
<br />
I downloaded the FM2008 demo a few months back to see how things had changed since '06 and to my horror, there was so much more going on. The features were welcome, but the layout had become way to cramped for my liking.<br />
<br />
I've seen the game available for pre-order at £17.99 over at the Hut, but I am still debating as to whether I should update my FM collection.<br />
<br />
Just thinking of the game brings back a lot of memories but I don't think '09 will ever come any where near matching them. Admiteddly that could be because I'm getting older, but I'm 90% sure it's the overwhelming interface that was almost perfect in CM's 3 &amp;amp; 4 and FM 2006.<!--fold--><br />
<br />
Oh, and I need to double check the screen resolution required/recommended for Football Manager because my MacBook's vertical resolution might make it harder to deal with due to a lack of real estate.</p>
	              ]]></description>
	              <pubDate>Tue, 9 Sep 2008 14:44:54</pubDate>
	            </item>
		    <item>
                      <title>del and ins HTML tags</title>
	              <link>http://blog.charanj.it/post/78/del-and-ins-html-tags</link>
	              <description><![CDATA[
	              <p>When validating my HTML code, I'm sometimes presented with an error which contains the following text:<br />
<br />
</p><div class="pre quote"><p><strong>document type does not allow element "a" here; missing one of "p", "h1", "h2", "h3", "h4", "h5", "h6", "div", "pre", "address", "fieldset", "ins", "del" start-tag</strong></p></div><p><br />
<br />
I know what all the tags it suggest are, except for the 'del' and 'ins' tags. Turns out that they are indeed very useful and overcome a redundant and annoying bit of BBCode script I had to write myself.<br />
<br />
The del tag signals that the text it contains has been deleted, while the ins tag signifies that new text has been inserted.<br />
<br />
I am currently doing something similar with BBCode, which wraps text in a span and adds a strike through attribute. I think I'll be replacing this to just display a del tag instead, although I am not 100% sure if this purely presentational and should be left as is, or if the del tag provides more important information for bots/spiders.</p>
	              ]]></description>
	              <pubDate>Mon, 8 Sep 2008 12:18:25</pubDate>
	            </item>
		    <item>
                      <title>Wireless backup and storage options</title>
	              <link>http://blog.charanj.it/post/77/wireless-backup-and-storage-options</link>
	              <description><![CDATA[
	              <p>I have an Airpot Express, but my HD adventures forced me to loose the partition I was using for OS X's Time Machine. As a result, I've been looking for an alternative that doesn't require a hard connection to my MacBook.<br />
<br />
Apple's Time Capsule is the obvious choice, but I don't need the Extreme capabilities and I'm not 100% convinced that it can be used as a Time Machine backup device and as a basic Windows file depository. If it can, then it may be my next purchase.<br />
<br />
For now, I'll be experimenting with a network storage device I found in Maplin.<br />
<br />
What would clinch a Time Capsule, for me, would be the option of Raid 1 backup, like a Drobo... which has a wireless option now, but doesn't come cheap!</p>
	              ]]></description>
	              <pubDate>Sat, 6 Sep 2008 21:47:14</pubDate>
	            </item>
		    <item>
                      <title>La Machine in Liverpool, spotted in London</title>
	              <link>http://blog.charanj.it/post/76/la-machine-in-liverpool-spotted-in-london</link>
	              <description><![CDATA[
	              <p>I saw a photo, possibly through Digg, of a giant mechanical spider earlier this week and saw a feature on the BBC's breakfast programme this morning.<br />
<br />
Turns out the people behind the installation, which is part of Liverpool's City of Culture celebrations for 2008, were also behind a huge mechanical elephant that made it's way through Piccadilly Circus a couple of years ago.<br />
<br />
Check out my video here or read on for a photo of the spider.<br />
<br />
</p><div class="flashcontent"><object type="application/x-shockwave-flash" width="490" height="401" data="http://www.flickr.com/apps/video/stewart.swf?v=59809" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"> <param name="flashvars" value="intl_lang=en-us&amp;amp;photo_secret=86e74209ec&amp;amp;photo_id=2830791967&amp;amp;show_info_box=true"></param> <param name="movie" value="http://www.flickr.com/apps/video/stewart.swf?v=59809"></param> <param name="bgcolor" value="#000000"></param> <param name="allowFullScreen" value="true"></param><embed type="application/x-shockwave-flash" src="http://www.flickr.com/apps/video/stewart.swf?v=59809" bgcolor="#000000" allowfullscreen="true" flashvars="intl_lang=en-us&amp;amp;photo_secret=86e74209ec&amp;amp;photo_id=2830791967&amp;amp;flickr_show_info_box=true" height="401" width="490"></embed></object></div><p><br />
<br />
If the movie doesn't load, see the video on <a href="http://flickr.com/photos/cchana/2830791967/" onclick="window.open(this.href); return false;">Flickr</a>.<!--fold--><br />
<br />
<img src="http://farm4.static.flickr.com/3013/2824053065_4b16bf6426_o.jpg" alt="image" /><br />
<br />
Photo found in [url=http://flickr.com/photos/29222703@N08/]kierhardie[/url]'s Flickr feed, through Digg.</p>
	              ]]></description>
	              <pubDate>Fri, 5 Sep 2008 21:58:39</pubDate>
	            </item>
		    <item>
                      <title>Worst stand up comedy, ever</title>
	              <link>http://blog.charanj.it/post/75/worst-stand-up-comedy-ever</link>
	              <description><![CDATA[
	              <p>A while ago I bought a Dave Chappelle DVD that I thought was the worst stand up comedy I had every seen. I was a fan of his, but the hour long DVD I purchased had very little going for it. Fast forward to August 2008 and I realise I wasn't quite right... turns out the Indian Invasion Comedy DVD is <em>the</em> worst example of stand up EVER!<br />
<br />
A couple of the performers have their moments, but over the 2 hours, there's maybe 5 or 6 minutes of laughs. 5 or 6 minutes?!<br />
<br />
Avoid this DVD at all costs. Had I ordered from Amazon, I'd be able to leave a review, and not many retailers seem to have this, so the only way I can really vent my disappointment in this DVD is here on my blog, which is annoying because I really don't want to give it much attention, but I feel I must warn you all!<br />
<br />
Worst stand up EVER (best bits are in the trailer btw so watch that and save yourself 2 hours and few $$$)!</p>
	              ]]></description>
	              <pubDate>Fri, 5 Sep 2008 10:23:54</pubDate>
	            </item>
		    <item>
                      <title>Arrested Development themed stuff</title>
	              <link>http://blog.charanj.it/post/74/arrested-development-themed-stuff</link>
	              <description><![CDATA[
	              <p>I just stumbled across some <a href="http://www.imdb.com/title/tt0367279/" onclick="window.open(this.href); return false;">Arrested Development</a> 'inspired' merchandise on <a href="http://www.onehorseshy.com/cool/" onclick="window.open(this.href); return false;">One Horse Shy</a>. All pieces feature the same bit of text often uttered by the characters in the series<br />
<br />
</p><div class="pre quote"><p>I've made a huge mistake</p></div><p><br />
<br />
<img src="http://blog.charanj.it/uploads/hugemistakebadge.jpg" alt="image" /></p>
	              ]]></description>
	              <pubDate>Thu, 4 Sep 2008 11:36:09</pubDate>
	            </item>
		    <item>
                      <title>Michael Jackson's Thriller 25</title>
	              <link>http://blog.charanj.it/post/73/michael-jackson-s-thriller-25</link>
	              <description><![CDATA[
	              <p>The album pretty much defined my summer holiday in Spain by being played while we drove around the South East coast for 10 days. It's been months since I've been back, but the album has found itself, along with Robin Thicke's The Evolution of Robin Thicke, in regular rotation.<br />
<br />
<img src="http://blog.charanj.it/uploads/thriller25cover.jpg" alt="image" /><br />
<br />
Thriller has now been around for 25 years. <strong><em>25</em></strong>! Despite his real world problems, his music speaks for itself and I wouldn't bet against it becoming considered timeless.<br />
<br />
Admittedly, I had heard the singles, but not with all the 'filler' tracks and they really do help to make an amazing album. I highly recommend it, especially the 25th anniversary special edition(s) that feature additional productions by Will I Am, featuring various artists and a DVD with the music videos. I have discovered some real gems, although slightly cheesy, that I really wouldn't have heard if the 25th anniversary of it's release hadn't been publicised so much!</p>
	              ]]></description>
	              <pubDate>Wed, 3 Sep 2008 16:41:52</pubDate>
	            </item>
		    <item>
                      <title>Web to do list just gets more and more useful</title>
	              <link>http://blog.charanj.it/post/72/web-to-do-list-just-gets-more-and-more-useful</link>
	              <description><![CDATA[
	              <p>I find myself using the web version of <a href="http://hogbaysoftware.com/products/taskpaper" onclick="window.open(this.href); return false;">TaskPaper</a>, a digital <a href="http://blog.charanj.it/search/hog" onclick="window.open(this.href); return false;">to do list</a>, more and more.<br />
<br />
There was a time when I would email every little note, comment, link or thought to myself and then pick them up alter, but I can now keep my email free for other types of spam. I must admit, my use is probably more limited to quickly sharing links with myself from work, and I often forget to pick them up at home, but having them in one central place is becoming more and more convenient!<br />
<br />
Sending NSFW stuff for viewing at home has never been so easy! :)</p>
	              ]]></description>
	              <pubDate>Wed, 3 Sep 2008 14:03:14</pubDate>
	            </item>
		    <item>
                      <title>Apple event imminent (invitations are out!)</title>
	              <link>http://blog.charanj.it/post/71/apple-eventimminent-invitations-are-out-</link>
	              <description><![CDATA[
	              <p>All this talk of a refreshed iPod range to be announced on the 9th is beginning to annoy me! I <em>really</em> want an iPod Touch but with rumours of a price drop and the possibility of the iPhone 2 interface (currently a pay for upgrade) being included, I'm just sitting tight and waiting. It's been months since the rumours began to pick up steam, around the time of the iPhone announcement, so every little bit of news is just making the wait harder to deal with.<br />
<br />
As I've said numerous times, my MacBook is perfect for my needs, so I am not really fussed about any new laptop's, desktops or anything, but I will be a little pissed if they now come with a Blu-ray or (for some odd reason) a HD-DVD drive! What that would, hopefully, mean is that there would be Blu-ray/HD DVD compatible software on the way, which is the only thing preventing me from using the <a href="http://blog.charanj.it/post/40/hd_dvd_drive_is_here" onclick="window.open(this.href); return false;">Xbox 360</a> drive I purchased and buying up the stupidly cheap HD-DVD's of the films I really want to watch in HD!<br />
<br />
So, just a week left and then we'll know for sure.</p>
	              ]]></description>
	              <pubDate>Wed, 3 Sep 2008 10:16:07</pubDate>
	            </item>
		    <item>
                      <title>now on twitter</title>
	              <link>http://blog.charanj.it/post/70/now-on-twitter</link>
	              <description><![CDATA[
	              <p>I finally decided to sign up to <a href="http://www.twitter.com/cchana" onclick="window.open(this.href); return false;">twitter</a> to see what all the fuss is about. So far, it's all been concious, rather than spontanious twittering, but that may change the more I use it.<br />
<br />
If you'd like to follow me on twitter, you can find me at <a href="http://www.twitter.com/cchana" onclick="window.open(this.href); return false;">http://www.twitter.com/cchana</a>. You'll also see my new avatar there and on <a href="http://pownce.com/cchana" onclick="window.open(this.href); return false;">Pownce</a>!</p>
	              ]]></description>
	              <pubDate>Mon, 1 Sep 2008 19:52:10</pubDate>
	            </item>
		    <item>
                      <title>Villa, Alonso and the season so far</title>
	              <link>http://blog.charanj.it/post/69/villa-alonso-and-the-season-so-far</link>
	              <description><![CDATA[
	              <p></p><div class="pre quote"><p>Xabi Alonso nets more than almost any other sitting midfielder. (His record is almost twice as good as Didi Hamann's was during his stint at the club. And of course, Alonso even scores directly from the holding midfield <em>area</em> of the pitch.) </p></div><p><br />
<br />
A quote from Paul Tomkins in his latest <a href="http://www.liverpoolfc.tv/news/drilldown/NG161121080901-0941.htm" onclick="window.open(this.href); return false;">column</a> on the official Liverpool website.<br />
<br />
The game against Villa was quite poor and the injury to Torres a pure nightmare, but sitting second, only on goal difference is some achievement so far.<br />
<br />
Two weeks off and then we're off to Old Trafford for what will hopefully be a match where we have everyone fit. If we have Torres, Gerrard, Babel and Agger(?) back, I'll be in a far more confident mood about our chances of snatching some points!</p>
	              ]]></description>
	              <pubDate>Mon, 1 Sep 2008 10:53:48</pubDate>
	            </item>
		    <item>
                      <title>Flickr update: Spain 2008</title>
	              <link>http://blog.charanj.it/post/68/flickr-update-spain-2008</link>
	              <description><![CDATA[
	              <p>I've been back from my summer holidays for almost 3 months, but I just never took the time to get my Fisheye photos developed!<br />
<br />
They're now all available, along with some photos taken with a standard lens and some taken with a wide angle lens on my Nike D70, in my <a href="http://www.flickr.com/photos/cchana/sets/72157606300258874/" onclick="window.open(this.href); return false;">Spain '08</a> Flickr set.<br />
<br />
<img src="http://farm4.static.flickr.com/3175/2784991684_038de1e14a.jpg" alt="image" /><br />
<br />
I've created a new <a href="http://www.flickr.com/photos/cchana/collections/72157606300262828/" onclick="window.open(this.href); return false;">holiday collection</a> which I'll be grouping my holidays into. I believe there are some other rogue holiday snaps from Las Vegas and Amsterdam, so I'll be sorting those out soon too!</p>
	              ]]></description>
	              <pubDate>Fri, 29 Aug 2008 10:55:47</pubDate>
	            </item>
		    <item>
                      <title>More Windows pain</title>
	              <link>http://blog.charanj.it/post/67/more-windows-pain</link>
	              <description><![CDATA[
	              <p><a href="http://en.wikipedia.org/wiki/Preview_(software)" onclick="window.open(this.href); return false;">Preview</a> in OS X is an awesome bit of software that makes it easy to, funilly enough, preview various file types. Wonderful if you want to browse through some photos before dragging them into Photoshop or maybe into the <a href="http://www.flickr.com/tools/uploadr/" onclick="window.open(this.href); return false;">Flickr Uploadr</a>.<br />
<br />
Windows' own version of preview software isn't so great. Zoomed into an image? Want to scroll up? Grab the handles. No mouse gestures here, just zooming when you click or use the scroll wheel. Keyboard keys? Forget it, next or previous images!<br />
<br />
How can such a fundamental piece of software be so wrong?<br />
<br />
There is one nice feature, which is the ability to close the image you're on and open it for editing... only problem is, it doesn't use Photoshop, it uses Paint!<br />
<br />
The fact that it only previews image formats is also a problem for me. Adobe Acrobat is slow and bloated. Yes there are alternatives, but when Apple can provide an awesome, simple, intuitive all-in-one solution, why can't Microsoft supply a product which is at least 2 of the 4? Simply adding some intuition to it's simplicity would be more than enough!<!--fold--><br />
<br />
I know Vista has better preview capabilities built in. Especially when it comes to previewing documents in a side panel in the Explorer window . Avery nice touch, but I wonder how the Preview works for graphic and PDF files...<br />
<br />
<em><strong>Update:</strong> OK, so I accidentally figured out the move controls, you just hold down the ctrl key, grab with your mouse and move the document about... but as with using the scroll bar, there's no live scrolling, so it's all guess work! Better than nothing, but still a huge pain!<br />
<br />
Oops! OK, so there's live scrolling too, but only if I move at a snails pace and the drag method is not a default state when you hold the ctrl key if you've zoomed in!<br />
<br />
It must sound like I am just nitpicking, but really, should I need to open Photoshop for when I want to just reference small details on a design?!<br />
<br />
<strong>Another update</strong>: OK, so the middle mouse button acts as a drag too BUT the lag is still there and now I'm getting annoyed with there only ever being one instance of the preview app to be available at once. Want to preview two files from different folders? Forget about it!</em></p>
	              ]]></description>
	              <pubDate>Fri, 29 Aug 2008 10:45:20</pubDate>
	            </item>
		    <item>
                      <title>Threadless x Staple Design</title>
	              <link>http://blog.charanj.it/post/66/threadless-x-staple-design</link>
	              <description><![CDATA[
	              <p>A few weeks back, I started writing a blog post for <a href="http://www.beunequaled.com" onclick="window.open(this.href); return false;"><span style="color: #f50">Be Unequaled</span></a> about the brand <a href="http://www.threadless.com?streetteam=cchana" onclick="window.open(this.href); return false;">Threadless</a>, however I closed the window midway through because to be honest, the visitors to BU just don't have the same interest in a brand unless the prices are high.<br />
<br />
I will admit to being somewhat the same, but I have plenty of love for the budget brands! Not Primark though!<br />
<br />
Anyway, my post was going to be about how bigger brands work together but Threadless has been fairly self contained. Their guest artists that make up their 'Select' range haven't really been anything special (to me anyway) in terms of their names...<br />
<br />
Cue <a href="http://www.threadless.com/product/1411/SOS?streetteam=cchana" onclick="window.open(this.href); return false;">Jeff Staple</a> of <a href="http://www.stapledesign.com" onclick="window.open(this.href); return false;">Staple Design</a>! <span class="strikethrough">His design isn't that good in my opinion</span>, but for me it's a new cross over between a successful, budget brand and a brand who's <a href="http://www.freshnessmag.com/content/features/files/0205/pigeon_dunk_stpl/" onclick="window.open(this.href); return false;">Pigeon Dunk</a> collaboration caused a <a href="http://www.sneakerfreaker.com/Elvis_Killed_Kennedy/1179431062/" onclick="window.open(this.href); return false;">riot in New York</a>!<!--fold--><br />
<br />
<a href="http://www.threadless.com/product/1411/SOS?streetteam=cchana" onclick="window.open(this.href); return false;"><img src="http://media.threadless.com//product/1411/zoom.gif" alt="image" /></a><br />
<br />
<span class="strikethrough">As I said, I don't think the design is great, but the collaboration itself is interesting and</span> I hope it's a sign of things to come from Threadless.<br />
<br />
edit: Actually, it's not that bad, but only as a design. I don't think it works on a t-shirt as well as it does as a stand alone graphic.</p>
	              ]]></description>
	              <pubDate>Tue, 26 Aug 2008 19:49:22</pubDate>
	            </item>
		    <item>
                      <title>Nike+ blog feature</title>
	              <link>http://blog.charanj.it/post/65/nike-blog-feature</link>
	              <description><![CDATA[
	              <p>In my quest to get a little fitter and shed a bit of weight, I got myself a <a href="/post/2/nike-sportband" onclick="window.open(this.href); return false;">Nike+ SportBand</a> which I've been using on and off for a while now.<br />
<br />
I just happened to check <a href="http://zachholman.com/past/2008/08/19/looks-and-apis" onclick="window.open(this.href); return false;">Zach Holman's blog</a> the day he changed his layout and added some Nike+ functionality. It's a great feature and one I hadn't really considered. Turns out there's a <a href="http://www.crustybugger.com/blog/?p=10" onclick="window.open(this.href); return false;">Wordpress plugin</a> and a great <a href="http://lerdorf.com/php/nikeplus.phps" onclick="window.open(this.href); return false;">PHP script</a> that gives you a decent amount of info from your Nike+ account.<br />
<br />
If I'm honest, I don't run as much as I could/should but hopefully making the info a little more public will give me a bit of a spur to take it more seriously. I decided to take a similar route to the <a href="/post/32/new_blog_layout_feature_featuring_imdbphp" onclick="window.open(this.href); return false;">Arrested Development quotes</a> I took and add a basic bit of info fed through this unofficial API.<br />
<br />
You can see my total runs, distance and last run info in my <a href="#nikeplus" onclick="window.open(this.href); return false;">Nike+ sidebar</a> area. If you need a hand with getting the API to work, feel free to leave a comment.<!--fold--><br />
<br />
Mini update... I had to remove the Flickr feed because it was causing a 500 error. Unfortunately, it was causing my portfolio site to fail too, so I've removed it for now... I am sure it was working earlier and it may be an issue on Flickr's side, so I'll re-investigate the issue in a day or too!<br />
<br />
Mini update 2... Put the Flickr feature back on this blog as a test, but not on my portfolio site just yet. If i have anymore 500 erros, then it's coming out for good!</p>
	              ]]></description>
	              <pubDate>Sun, 24 Aug 2008 22:09:07</pubDate>
	            </item>
		    <item>
                      <title>Nike iD - London Studio</title>
	              <link>http://blog.charanj.it/post/64/nike-id-london-studio</link>
	              <description><![CDATA[
	              <p>Ever since the store opened a couple of months ago, I've been dying to go! Doing it online is fine, and pretty much how the whole 'by appointment' service works, it's just... <em>better</em>!<br />
<br />
After making my appointment, I spent a few days lurking through forums, trawling through the Nike archives and picking the brains of previous visitors for ideas, inspirations and what to expect.<br />
<br />
My research was pretty much pointless, because apart from one key colour I wanted, I ended up with something a little unexpected but something that I will definitely be wearing when it arrives.<br />
<br />
Oh, and be sure to read the whole article to see what I created.<!--fold--><br />
<br />
Floor one of the London Studio, is pretty much open to the public. It's the same as what you see online, BUT you can see hundreds of shoes on display. You can pick them up, touch them, see the materials up close. I didn't have time to visit this section on this visit, but it would definitely make me think twice about certain colours and combos.<br />
<br />
The second floor is where it's appointment only and you are assigned a design consultant. I was assigned Simon, who was a great help. You may know what you want, but with extra materials and more panel options, you can get a little too crazy, so it's great to have someone there as a guide.<br />
<br />
All of the consultants have had training in various aspects of the Nike iD experience, and they're not just the pick of the day from the shop floor, so they do know what they're talking about!<br />
<br />
I managed to spend the full 45 minutes (and then some) on designing my shoe. I ended up with 5 final options, but went with the first one I did!<br />
<br />
Currently, there's a choice of the following:<br />
<br />
Dunk hi, dunk lo, Air Force 25, Classic BW and the Air Max 90. A great selection and they're all open for even more customization than the Nike iD website. Currently, you have the choice of normal , cracked patent and a wood effect leather, all of which can be combined in any number of ways.<br />
<br />
Oh, and with the dunk celebrating 10 years since it's re-introduction into production, look out for any specials that may appear at the London Studio.<br />
<br />
Here's mine:<br />
<br />
<img src="http://www.beunequaled.com/elements/uploaded/1/nike_id_v1.jpg" alt="image" /><br />
<br />
<span class="strikethrough">I'll reveal the design once it arrives in 2-4 weeks! ;)</span><br />
<br />
I have posted loads of photos of the final product on <a href="http://www.flickr.com/photos/cchana/sets/72157604493768428/" onclick="window.open(this.href); return false;">Flickr</a>, so feel free to take a good look around.<br />
<br />
Find out more about <a href="http://www.beunequaled.com/brands/21/nike" onclick="window.open(this.href); return false;">Nike</a> and <a href="http://www.beunequaled.com/stores/38/nike_id" onclick="window.open(this.href); return false;">Nike iD</a> on the Be Unequaled <a href="http://www.beunequaled.com/brands" onclick="window.open(this.href); return false;">brand</a> and <a href="http://www.beunequaled.com/stores" onclick="window.open(this.href); return false;">store</a> pages.<br />
<br />
<strong>Update(s):</strong><br />
6<sup>th</sup> January, visited the studio and order placed! <strong>:)</strong><br />
7<sup>th</sup> January, status set to 'on hold/awaiting payment'<br />
8<sup>th</sup> January, status set to 'in progress'...<br />
14<sup>th</sup> January, still in progress... :(<br />
22<sup>nd</sup> January, still in progress... :( :(<br />
23<sup>rd</sup> January, shipped to store... <strong>:)</strong><br />
25<sup>th</sup> January, arrived in store?! <strong>:?</strong><br />
26<sup>th</sup> January, confirmation they arrived in store yesterday<br />
<br />
I will be trying my hardest to make it to the store this weekend to pick them up, but if I don't I'll make the trip on Monday and I'll be sure to blog about them as well as post up photos in the forum of my little callabo with Nike!<br />
<br />
<strong>Last update:</strong> I picked up the shoes on the 28<sup>th</sup>, check <a href="http://www.beunequaled.com/forum/viewtopic.php?p=78653#78653" onclick="window.open(this.href); return false;">this post</a> in the Nike iD thread I started for photos!<br />
<br />
<em>(This post was originally posted on the <a href="http://www.beunequaled.com/blogs/posts/132" onclick="window.open(this.href); return false;">Be Unequaled blog</a>)</em></p>
	              ]]></description>
	              <pubDate>Fri, 22 Aug 2008 13:00:51</pubDate>
	            </item>
		    <item>
                      <title>JavaScript truncation and tag removal</title>
	              <link>http://blog.charanj.it/post/63/javascript-truncation-and-tag-removal</link>
	              <description><![CDATA[
	              <p>Posted for my own reference really, as I would normally do this server side, but might be useful for anyone that happens to stumble across this page.<br />
<br />
</p><div class="pre code"><pre>function truncate(content, append, len) {
  // get the length that should be truncated
  if(!len) {
    var len = 255;
  }
  var p = content;
  // If nothing's been specified to be appended to the end of the truncation
  if(!append) {
    append = '';
  }
  if (p) {
    var trunc = p;
    // if the post is longer than the max length
    if (trunc.length &amp;gt;= len) {
    // remove images
    trunc = trunc.replace(/&amp;lt;\img[^&amp;gt;]*&amp;gt;/g,'');
    // remove flash videos
    trunc = trunc.replace(/&amp;lt;object(?:.|\s)*?&amp;lt;\/object&amp;gt;/g,'');
    // truncate the text left over
    trunc = trunc.substring(0, len);
    // find the last whole word
    trunc = trunc.replace(/\w+$/, '');
  } else {
    // remove images
    trunc = trunc.replace(/&amp;lt;\img[^&amp;gt;]*&amp;gt;/g,'');
    // remove flash videos
    trunc = trunc.replace(/&amp;lt;object(?:.|\s)*?&amp;lt;\/object&amp;gt;/g,'');
  }
  return p;
}</pre></div><p><br />
<br />
The above function will strip out image and flash video tags and then truncate the text to a specified maximum length (255 default). Once it's been truncated, it will go back to the last full word. The code isn't actually that long, I just left the comments I wrote in for convenience.<!--fold--><br />
<br />
It would be easy to add more tags, striping out formatting or script tags. My regular expressions, especially in JavaScript, are not my strong point so I'm sure there would be any easier way to do the striping out. I'm thinking something similar to the str_replace function in PHP where you can pass an array of terms to replace.<br />
<br />
Lots of the functionality was learnt on the <a href="http://webdevtips.co.uk/webdevtips/js/striptag.shtml" onclick="window.open(this.href); return false;">WebDevTips</a> website and especially using their <a href="http://www.webdevtips.co.uk/webdevtips/resources/regex.php" onclick="window.open(this.href); return false;">Regular Expressions Tester</a>.</p>
	              ]]></description>
	              <pubDate>Thu, 21 Aug 2008 11:57:01</pubDate>
	            </item>
		    <item>
                      <title>My idea of a perfect room</title>
	              <link>http://blog.charanj.it/post/62/my-idea-of-a-perfect-room</link>
	              <description><![CDATA[
	              <p>There's no way I will get away with this for myself, but when I have a little boy, I am so doing his room up like this <a href="http://antoinettejcitizen.googlepages.com/home" onclick="window.open(this.href); return false;">Super Mario Bros</a> themed one!<br />
<br />
<img src="/uploads/smbroom.jpeg" alt="image" /><br />
<br />
Complete with a fully working NES!</p>
	              ]]></description>
	              <pubDate>Thu, 21 Aug 2008 11:04:06</pubDate>
	            </item>
		    <item>
                      <title>Apple anyone?</title>
	              <link>http://blog.charanj.it/post/61/apple-anyone-</link>
	              <description><![CDATA[
	              <p>Looking to switch from a PC to a Mac? It's a talking point and a practice that has gathered a lot of steam over the last few years, but is it worth doing?<br />
<br />
Let me start by saying that I am a Mac user that switched after over 10 years on a PC. I still use a PC at work but develop my own apps and sites using a Mac at home.<br />
<br />
Right, first things first. Cost is going to be a factor. Your local computer store is likely to have a good selection of well spec'd, sub £300 machines that will do everything you need. Apple's base price point for a Mac Mini is a penny under £400. which well spec'd but not mind blowing. Notebooks are also dropping in price on the windows side, with the sub 10" screen versions costing less than £200 in some cases. Again, Apple's cheapest notebook weighs in at a penny under £700 and isn't going to blow you away with power.<!--fold--><br />
<br />
One important, but often overstated factor is that the OS is going to take some getting used to. It's definitely a consideration but over the years, both Apple and Microsoft have 'swapped' and adapted ideas of each other and are not that far apart. <a href="http://www.youtube.com/watch?v=TaIUkwPybtM" onclick="window.open(this.href); return false;">Vista</a> clearly has taken a big leaf out of OS X's approach to interface and interaction, but even XP isn't that different. Once you get used to the OS X way of things, it can make more sense in some areas. Application specific menus are put under the application's name in the top bar, rather than hidden away in Tools or Options tabs.<br />
<br />
Your use of your chosen system has got to be the biggest factor. Even if you can afford the £1,800, 17", MacBook Pro, that's great, but if you're just going to be doing word processing and surfing the web, there are 17" Windows machines that will do the same for some £1,500 less. The <a href="http://eeepc.asus.com/global/" onclick="window.open(this.href); return false;">Asus Eee PC</a> will do it for more than £1,500 less! Off course, if you're set on a Mac, then maybe a MacBook rather than a MacBook Pro is better suited to your needs. Similarly, a Mac Pro with a Mac display isn't necessary when an iMac will do.<br />
<br />
I love my <a href="http://flickr.com/photos/cchana/2380595775/" onclick="window.open(this.href); return false;">MacBook</a>. It is absolutely perfect for what I need it for. Web development has never been so easy. I'll admit I sometimes struggled with my Mac Mini after I fucked up a key file in Apache and it's semi-regular struggle with a lack of RAM, but I got by and, crucially, I learned from my mistake!<br />
<br />
For design purposes, I can understand why a Mac would be preferred, but it doesn't mean it will be perfect. If you're happy in a Windows environment, there really isn't a need to change. A Mac offers a different way of working that I would say most designers find more intuitive, but other than that, there's not really going to be much difference between using Photoshop in OS X or Windows, especially when a <a href="http://www.apple.com/uk/mightymouse/" onclick="window.open(this.href); return false;">Mighty Mouse</a> is involved.<br />
<br />
If you're going to surf the web, check your email and do a bit of word processing, a Mac will be more than capable, but for it's price, maybe not the best investment (unless you go down the <a href="http://store.apple.com/Apple/WebObjects/ukstore.woa/wa/RSLID?sf=w2YF4JXY4AHCAJCDF&amp;amp;nclm=C61AFE24" onclick="window.open(this.href); return false;">refurbished route</a>). I will give it the thumbs up as a basic home cinema. If you want an all in one, the Mac Mini could not be better priced or placed. OK, storage isn't great, but it features Apple's Front Row (more on that later), which is very similar to the <a href="http://www.apple.com/uk/appletv/features.html" onclick="window.open(this.href); return false;">Apple TV</a> interface (if not the same), a lot more storage than Apple TV and access to the almost infinite number of videos available on the net that aren't hosted by YouTube.<br />
<br />
It's price point is also very good for what it offers and with DVi out, you can pick up up a <a href="http://shop.ebay.co.uk/?_nkw=dvi+to+hdmi" onclick="window.open(this.href); return false;">DVi to HDMI cable</a> on eBay for a few pounds and have a HD ready source.<br />
<br />
A small selection of games are available, but gaming isn't really what a Mac is for. Yet. I believe more is to come from publishers like EA, but we're going to have to wait.<br />
<br />
In summary, If you're set on a Mac, consider a Mini for everyday and basic use or a MacBook for mobility but whatever you do, just don't make the change to be cool!</p>
	              ]]></description>
	              <pubDate>Wed, 20 Aug 2008 15:40:05</pubDate>
	            </item>
		    <item>
                      <title>More HD frustrations</title>
	              <link>http://blog.charanj.it/post/60/more-hd-frustrations</link>
	              <description><![CDATA[
	              <p>Why is no one (to my knowledge) developing software that makes HD-DVD or Blu-Ray discs Mac compatible? I've tried the Windows alternatives via boot camp on my MacBook but the amount of time it takes, the lack of support and the general feeling of shame from booting a Mac into Windows is just not enough to make me fork out for the full version of HD playback software that I can't get to work during it's trial period.<br />
<br />
I think I'm going to weigh up the practicalities and cost of building a media centre for myself. Oh, and get rid of XP on my MacBook. The 10Gb I'll get back will be much appreciated.<!--fold--><br />
<br />
Here's a list of what I'd like in a media centre PC and I'll update it with the lowest costs I can find:<br />
<br />
</p><ul><li>Case <strong>£???</strong></li><li>Motherboard &amp;amp; CPU <strong>£???</strong></li><li>2Gb RAM (4Gb RAM) <strong>£???</strong></li><li>DVD RW <strong>£???</strong></li><li>Blu-Ray/HD-DVD ROM (RW if possible and only one bundled with playback software) <strong>£???</strong></li><li>Graphics card (HDMi output (DVi woud be OK too)) <strong>£???</strong></li><li>Sound card (5.1) <strong>£???</strong></li><li>Wireless network card <strong>£???</strong></li><li>Front mounted memory card reader and USB slot(s) <strong>£???</strong></li></ul><p><br />
<br />
The following would be nice to have too:<br />
<br />
</p><ul><li>Firewire card (may already have one) <strong>£???</strong></li><li>Bluetooth (own a dongle already, but integrated would be better) <strong>£???</strong></li><li>TV input for basic DVR (and to accept the Wii?!) <strong>£???</strong></li></ul><p><br />
<br />
I will most definitely post up photos of my progress if it's viable and I go ahead. And just to see how far out of touch I am with building a PC, I estimate the things I deem to be essential to amount to around £450 and everything £475. Hmmm, maybe a PS3 wouldn't be such a bad idea!</p>
	              ]]></description>
	              <pubDate>Mon, 18 Aug 2008 17:07:57</pubDate>
	            </item>
		    <item>
                      <title>Opening match of the season (2008/09)</title>
	              <link>http://blog.charanj.it/post/59/opening-match-of-the-season-2008-09-</link>
	              <description><![CDATA[
	              <p>Once again, Fernando Torres got a goal for Liverpool, but overall the team was well below their best. It was a performance similar to the one we saw a few days ago against Standard Liege. 1-0 was an improved scoreline from the one we got in midweek, and I hope it leads to more confidence and composure.<br />
<br />
The big talking point was always going to be the new partnership between Fernando Torres and Robbie Keane and we saw more of the same from midweek. They certainly did have clearer sights at goal but it's early days and there is no reason that in their preferred roles that they won't be successful together.<br />
<br />
The biggest plus from this game was Xabi Alonso, man of the match despite playing just 45 minutes. He distributed the ball in a similar manner to when he first joined. He took yet another shot from his own half and only missed by a yard and most importantly, got the assist for the winning goal. Plessis was far to conservative for me and constantly passed the ball just a few yards, never looking for a way through the Sunderland defence. That may have been a result of his back injury, but in my opinion Liverpool already have 4 key midfielders and Plessis has some way to go before he can consider himself in real contention.<!--fold--><br />
<br />
As most Liverpool fans, I sincerely hope Xabi Alonso stays on Merseyside. Since returning from injury at the end of last season he's been back to his very best. His vision and range of passing are just amazing and something Liverpool sometimes need when the going gets tough. We saw his contribution to Spain's cause this summer and I for one was impressed.<br />
<br />
Gareth Barry is a very good player but certainly not in the same league as Xabi Alonso. Juventus were foolish to be scared off by the £16million price tag, especially when they paid £10million for Momo Sissoko at the start of the year who quickly went from being a promising youngster all the way to a real liability.<br />
<br />
Rafa, forget Barry, keep Alonso and I assure you that <strong><span style="color: #F00">you'll never walk alone</span></strong>.</p>
	              ]]></description>
	              <pubDate>Sat, 16 Aug 2008 20:25:09</pubDate>
	            </item>
		    <item>
                      <title>Watchman book finally arrives</title>
	              <link>http://blog.charanj.it/post/58/watchman-book-finally-arrives</link>
	              <description><![CDATA[
	              <p>I had to wait quite a while for this one, but I finally received the <a href="http://www.waterstones.com/waterstonesweb/displayProductDetails.do?sku=4624153" onclick="window.open(this.href); return false;">Watchmen</a> book from Waterstones.<br />
<br />
There's been a huge amount of buzz for this graphic novel since the trailers release and plenty of discussion about the forthcoming film and the success of the book at this year's <a href="http://www.comic-con.org" onclick="window.open(this.href); return false;">Comic-Con</a>.<br />
<br />
<img src="/uploads/watchmen_unpacking1.jpg" alt="image" /><br />
<br />
I got the book to see how much of all this is just unnecessary hype and to get a better understanding of the following it seems to have. At first glance, it just seems like many other graphic novels that I've browsed through, but hopefully the story and illustrations come together in a way that I can forgive the hype for!</p>
	              ]]></description>
	              <pubDate>Sat, 16 Aug 2008 09:20:25</pubDate>
	            </item>
		    <item>
                      <title>Life imitating the Simpsons</title>
	              <link>http://blog.charanj.it/post/57/life-imitating-the-simpsons</link>
	              <description><![CDATA[
	              <p>Anyone remember that episode of the Simpsons when Homer puts a deep fat fryer in his car? Well, we're almost there with 12V microwaves.<br />
<br />
Marketed as a <a href="http://www.maplin.co.uk/Module.aspx?ModuleNo=225121&amp;amp;criteria=microwave&amp;amp;doy=13m8" onclick="window.open(this.href); return false;">12V In-Car Microwave</a> by Maplin, I would assume it's better suited to a caravan or motor home environment! Or at the very least, this should be kept in the back seat.<br />
<br />
<img src="/uploads/12vmicrowave.jpg" alt="image" /><br />
<br />
</p><div class="pre quote"><p>It is advised that you start the vehicle prior to using the microwave to <strong>improve cooking times</strong> and prevent the car battery from becoming discharged.</p></div><p><br />
<br />
I wonder if it would cook food faster if it was plugged into a Bugatti Veyron rather than something like one of those Austin Metros?!</p>
	              ]]></description>
	              <pubDate>Wed, 13 Aug 2008 11:03:28</pubDate>
	            </item>
		    <item>
                      <title>No Street Fighter IV for Wii</title>
	              <link>http://blog.charanj.it/post/56/no-street-fighter-iv-for-wii</link>
	              <description><![CDATA[
	              <p>I don't really care for console exclusives or for most console omissions. Games that matter to me usually make it on to my console of choice or don't interest me in the slightest.<br />
<br />
Until now.<br />
<br />
<a href="http://www.streetfighter.com/flash/" onclick="window.open(this.href); return false;">Street Fighter IV</a> is soon to be released and is currently an XBox 360 and PS3 only title. This is sad for me because I'm a huge fan of the game and even downloaded Street Fighter II Turbo through the virtual console on the Wii. Had it been a NES game, I'd have it on that too!<br />
<br />
Visit the website and checkout the awesome opening sequence featuring Ryu and Ken. The game looks like a very good and faithful progression for the game and if you have either of the supported consoles, <a href="http://www.gamestop.com/browse/ProductMerch.aspx?groupid=130" onclick="window.open(this.href); return false;">pre-order your copy now!</a><!--fold--><br />
<br />
I was actually looking for Street Fighter merchandise when I came across the site again and made this discovery. Turns out there will be a PC version too. I can only pray that it makes it to either the Wii or Mac OS X!</p>
	              ]]></description>
	              <pubDate>Tue, 12 Aug 2008 12:08:51</pubDate>
	            </item>
		    <item>
                      <title>My wedding website launched!</title>
	              <link>http://blog.charanj.it/post/54/my-wedding-website-launched-</link>
	              <description><![CDATA[
	              <p>As friends, family and most acquaintances already know, I'm due to get married next year and to mark the occasion and all events leading up to it, I started a <a href="http://wedding.cchana.co.uk" onclick="window.open(this.href); return false;">wedding website</a> to keep a record of everything.<br />
<br />
<a href="http://wedding.cchana.co.uk" onclick="window.open(this.href); return false;"><img src="/uploads/weddingcc.jpg" alt="image" /></a><br />
<br />
My fiance and I have been fortunate enough to have had hundreds, if not thousands, of photos taken and we've added the best of them to the website. For privacy reasons, you do need to be logged in to see the full size photos. If you don't have access and would like to see them, please get in <a href="/page/contact" onclick="window.open(this.href); return false;">contact</a> with me if you'd like to see them (although the username and password will be handed out at my discretion).<!--fold--><br />
<br />
A lot of effort was taken to make sure this website is compatible with the most popular browsers (possibly the last website I <a href="http://blog.charanj.it/post/12/ie6_no_more_for_me_at_least_" onclick="window.open(this.href); return false;">built before my new rule</a>), so users of IE 6+, FF2+, Safari 2+ and Opera 9+ should not have any problems. If you do, please let me know and I'll do my best to get things fixed.<br />
<br />
Similarly, do get in contact if you'd like a similar website for you and your other half and we can definitely discuss the possibility!</p>
	              ]]></description>
	              <pubDate>Thu, 7 Aug 2008 19:28:50</pubDate>
	            </item>
		    <item>
                      <title>A fix for IE6's pseudo class problems</title>
	              <link>http://blog.charanj.it/post/53/a_fix_for_ie6_s_pseudo_class_problems</link>
	              <description><![CDATA[
	              <p>Alex Mauzon has come up with a great way to combat the <a href="http://www.mauzon.com?p=85" onclick="window.open(this.href); return false;">omission of the :first-child and :last-child pseudo classes in IE6</a>. Using CSS expressions, you can run a simple check for items that need to adhere to the same rules.<br />
<br />
Where you would use the following for standards compliant browsers:<br />
<br />
</p><div class="pre code"><pre>element:first-child {
  background-color: red;
}</pre></div><p><br />
<br />
For IE6, you can simply use the following to check for a previous sibling:<br />
<br />
</p><div class="pre code"><pre>element {
  background-color: expression(this.previousSibling==null?'red':'green');
}</pre></div><p><br />
<br />
The above checks for a previous sibling and where there are none, the background color is red, where there are previous siblings (every other item), the background color is green. Similarly, you can just use the following to re-create the :last-child pseudo-class:<!--fold--><br />
<br />
</p><div class="pre code"><pre>element {
  background-color: expression(this.nextSibling==null?'red':'green');
}</pre></div><p><br />
<br />
So there you are, a simple fix for some of your pseudo-class woes!<br />
<br />
I did have some trouble, but as you can see from the comments on the page, I got there in the end.<br />
<br />
Please remember, that this fix relies on JavaScript to work, and if the end user does not have JavaScript enabled, the style will be ignored. To make sure standards compliant browsers see this, just make sure you keep the pseudo-class anyway!</p>
	              ]]></description>
	              <pubDate>Thu, 7 Aug 2008 19:11:53</pubDate>
	            </item>
		    <item>
                      <title>Barcelona's pointless battle</title>
	              <link>http://blog.charanj.it/post/52/barcelona-s-pointless-battle</link>
	              <description><![CDATA[
	              <p>Although it will probably pave the way for a review of how players are chosen for the Olympics in the future, Barcelona, Shalke and Werder Bremen have all just finished fighting a battle they all won, but then decided not to pursue.<br />
<br />
Fifa originally stated a few weeks ago that it was fine for the three clubs' players to play in the Olympics this August and each club was powerless to recall anyone under the age of 23, however that <a href="http://news.bbc.co.uk/sport1/hi/olympics/football/7518008.stm" onclick="window.open(this.href); return false;">ruling was overturned</a> earlier this week meaning the three could forbid their players participating in the competition.<br />
<br />
And what happens? Messi plays for Argentina in their opening game and scores. And then? <a href="http://www.skysports.com/story/0,19528,11827_3945341,00.html" onclick="window.open(this.href); return false;">Barcelona say it's OK for him to stay</a> since it's what he wants. Well, he stated that some time ago but his words fell onto deaf ears.<br />
<br />
I believe the other two clubs also gave in, so this was all a pointless excercise. I'm sure lots of money was wasted and I hope the three players suffer burn out at a crucial point next season.<!--fold--><br />
<br />
Oh and I just saw that <a href="http://news.bbc.co.uk/sport1/hi/football/teams/m/milton_keynes_dons/7515480.stm" onclick="window.open(this.href); return false;">Roberto Di Matteo has been appointed the manager of MK Dons</a>! In some ways it's an odd choice for both sides, but I remember him being a class player, so hopefully he can transfer some of that ability to the management side of things.</p>
	              ]]></description>
	              <pubDate>Thu, 7 Aug 2008 15:06:29</pubDate>
	            </item>
		    <item>
                      <title>W3 Consortium's sense of humour</title>
	              <link>http://blog.charanj.it/post/51/w3-consortium-s-sense-of-humour</link>
	              <description><![CDATA[
	              <p>The W3 Consortium do a lot of important work which helps to make the web a better place to code in. Amongst all the serious stuff that they have going on, it's nice to see that they do have a laugh every now and again. As well as the internet joke feature on the <a href="http://w3schools.com">W3 Schools homepage</a>, their current joke takes you to a <a href="http://www.w3schools.com/downloadwww.htm">joke landing page</a> with the following animation:<br />
<br />
<img src="http://www.w3schools.com/images/downloadwww.gif" alt="image" /><br />
<br />
I can only imagine how tedious writing a spec for something like HTML 5 can be, especially when you look at the length of some of the documents, so I think it's only fair they get to let their hair down and have some fun!<!--fold--><br />
<br />
The Window's interface only makes it even funnier for me because and the truth of the error message is just genius!</p>
	              ]]></description>
	              <pubDate>Wed, 6 Aug 2008 14:30:02</pubDate>
	            </item>
		    <item>
                      <title>The welcome return of Futurama</title>
	              <link>http://blog.charanj.it/post/50/the-welcome-return-of-futurama</link>
	              <description><![CDATA[
	              <p>I am extremely late on this, but Futurama is to return! I do remember reading something a while ago, but it was really just rumours and must have been an old story because Comedy Central revealed their purchase of the show back in 2006!<br />
<br />
For me, Futurama is a far better show than the Simpsons and it actually saddened me that a fresh, interesting show was cancelled while the Simpsons just seemed to roll on despite it's now continued lack of originality. Click on 'read more' to see the video trailer.<!--fold--><br />
<br />
</p><div class="flashcontent"><object height="333" align="middle" width="426" id="movie" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"><param value="sameDomain" name="allowScriptAccess"/><param value="http://www.speedbumpstudios.com/futurama/movie.swf" name="movie"/><param value="high" name="quality"/><param value="#ffffff" name="bgcolor"/><embed height="333" align="middle" width="426" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" allowscriptaccess="sameDomain" name="movie" bgcolor="#ffffff" quality="high" src="http://www.speedbumpstudios.com/futurama/movie.swf"/></object></div><p><br />
<br />
Thankfully, <a href="http://www.skypressoffice.co.uk/SkyOne/news/showarticle.asp?id=2526" onclick="window.open(this.href); return false;">Sky One</a> will be airing the new Futurama episodes in the UK this autumn, so the wait is almost over. With 13 episodes to wet our apetites, I'm hoping this, long overdue, new series will lead to even more.</p>
	              ]]></description>
	              <pubDate>Wed, 6 Aug 2008 11:43:20</pubDate>
	            </item>
		    <item>
                      <title>Sesame Street goes hardcore!</title>
	              <link>http://blog.charanj.it/post/49/sesame-street-goes-hardcore-</link>
	              <description><![CDATA[
	              <p>I was watching <a href="http://revision3.com/diggreel/vintenove" onclick="window.open(this.href); return false;">the Digg Reel</a> and came across two awesome <a href="http://www.sesameworkshop.org/sesamestreet/" onclick="window.open(this.href); return false;">Sesame Street</a> videos that just made me smile so much.<br />
<br />
The first one was so wrong, but so funny, and featured <a href="http://www.youtube.com/watch?v=D8Vh9_Hi1kY" onclick="window.open(this.href); return false;">unnecassary censorship of Sesame Street</a> (video below). The second featured my two favourite characters, Bert and Ernie as they become the centre of a well edited video put the sound of <a href="http://www.youtube.com/watch?v=21OH0wlkfbc" onclick="window.open(this.href); return false;">MOP's <em>Ante Up</em></a>!<br />
<br />
</p><div class="flashcontent"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/21OH0wlkfbc&amp;amp;hl=en&amp;amp;fs=1&amp;amp;color1=0x2b405b&amp;amp;color2=0x6b8ab6"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/21OH0wlkfbc&amp;amp;hl=en&amp;amp;fs=1&amp;amp;color1=0x2b405b&amp;amp;color2=0x6b8ab6" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"></embed></object></div><p><br />
<br />
The editing is so good and if you have any memories of Sesame Street you shouldn't be able to hold in a smile! Read on more video gold!<!--fold--><br />
<br />
<strong>Unnecassary censorship:</strong><br />
</p><div class="flashcontent"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/D8Vh9_Hi1kY&amp;amp;hl=en&amp;amp;fs=1&amp;amp;color1=0x2b405b&amp;amp;color2=0x6b8ab6"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/D8Vh9_Hi1kY&amp;amp;hl=en&amp;amp;fs=1&amp;amp;color1=0x2b405b&amp;amp;color2=0x6b8ab6" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"></embed></object></div><p><br />
<br />
<strong>Dave Chappell on Sesame Street:</strong><br />
</p><div class="flashcontent"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/i73dWYJqVHk&amp;amp;hl=en&amp;amp;fs=1&amp;amp;color1=0x2b405b&amp;amp;color2=0x6b8ab6"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/i73dWYJqVHk&amp;amp;hl=en&amp;amp;fs=1&amp;amp;color1=0x2b405b&amp;amp;color2=0x6b8ab6" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"></embed></object></div><p><br />
<br />
<strong>Beatboxing flute Sesame Street theme tune</strong><br />
</p><div class="flashcontent"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/clcza815sao&amp;amp;hl=en&amp;amp;fs=1&amp;amp;color1=0x2b405b&amp;amp;color2=0x6b8ab6"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/clcza815sao&amp;amp;hl=en&amp;amp;fs=1&amp;amp;color1=0x2b405b&amp;amp;color2=0x6b8ab6" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"></embed></object></div><p><br />
<br />
<strong>The count censored:</strong><br />
</p><div class="flashcontent"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/B-Wd-Q3F8KM&amp;amp;hl=en&amp;amp;fs=1&amp;amp;color1=0x2b405b&amp;amp;color2=0x6b8ab6"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/B-Wd-Q3F8KM&amp;amp;hl=en&amp;amp;fs=1&amp;amp;color1=0x2b405b&amp;amp;color2=0x6b8ab6" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"></embed></object></div><p><br />
<br />
<strong>the Count f**ks coockies:</strong><br />
</p><div class="flashcontent"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/2aYzbf_crQQ&amp;amp;hl=en&amp;amp;fs=1&amp;amp;color1=0x2b405b&amp;amp;color2=0x6b8ab6"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/2aYzbf_crQQ&amp;amp;hl=en&amp;amp;fs=1&amp;amp;color1=0x2b405b&amp;amp;color2=0x6b8ab6" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"></embed></object></div><p><br />
<br />
<strong>Ernie censored:</strong><br />
</p><div class="flashcontent"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/OoAphNkDSE0&amp;amp;hl=en&amp;amp;fs=1&amp;amp;color1=0x2b405b&amp;amp;color2=0x6b8ab6"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/OoAphNkDSE0&amp;amp;hl=en&amp;amp;fs=1&amp;amp;color1=0x2b405b&amp;amp;color2=0x6b8ab6" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"></embed></object></div><p></p>
	              ]]></description>
	              <pubDate>Sat, 2 Aug 2008 09:21:08</pubDate>
	            </item>
		    <item>
                      <title>Web professional? Take the survey</title>
	              <link>http://blog.charanj.it/post/48/web-professional-take-the-survey</link>
	              <description><![CDATA[
	              <p><a href="http://www.alistapart.com/articles/survey2008" onclick="window.open(this.href); return false;"><img src="http://aneventapart.com/webdesignsurvey/templates/ala/images/i-took-the-2008-survey.gif" alt="image" /></a><br />
<br />
I just took the <a href="http://www.alistapart.com/articles/survey2008" onclick="window.open(this.href); return false;">A List Apart web design survey</a>. Approx 40 questions on your involvement with the industry which weren't too intrusive. Will be interesting to see how the results fit in with my answers!</p>
	              ]]></description>
	              <pubDate>Wed, 30 Jul 2008 23:38:01</pubDate>
	            </item>
		    <item>
                      <title>Damaged SportBand is a mystery</title>
	              <link>http://blog.charanj.it/post/47/damaged-sportband-is-a-mystery</link>
	              <description><![CDATA[
	              <p><img src="/uploads/nike_sb_broken01.jpg" alt="image" /><br />
<br />
The above image shows my Nike+ SportBand with a couple of flaws in the digital display which are a bit of a mystery. The unit is extremely tough and cannot be bent with a fair amount of force being applied so it's a complete mystery as to how this happened. Considering I can't really think of a situation where anything more than a few pieces of paper or an empty water bottle would have been on top of it, I really am stumped as to how this came about.<!--fold--><br />
<br />
<img src="/uploads/nike_sb_broken02.jpg" alt="image" /><br />
<br />
Here's a close up, but it doesn't really shed any light on the situation. I'm still very happy with the unit and it seems to be functioning fine, although I have recently discovered that it doesn't pick up any movement if you're cycling! I don't know what I was expecting, but over the course of 3Km, not even a total of 10m were registered!</p>
	              ]]></description>
	              <pubDate>Wed, 30 Jul 2008 14:00:13</pubDate>
	            </item>
		    <item>
                      <title>Business cards for me</title>
	              <link>http://blog.charanj.it/post/46/business-cards-for-me</link>
	              <description><![CDATA[
	              <p>I've wanted a business card for some time now, but never really had a solid idea or design that stands out. Add to that the initial cost, not being able to get a fully customised card and the uncertainty over customs charges, it became a less and less attractive option. Luckily, I was given the chance to design my first business card in the last few days and I am very happy with the final results.<br />
<br />
The business cards of other developers I've met are often cluttered and contain so much information. Name, title, company, address, telephone, mobile, fax, email, favourite colour, pet's name and so on. I wanted something simple that allowed people to know who I am, what I do and how to get in touch. What more does a business card need to do?!<br />
<br />
I settled on having the following information<br />
<br />
</p><ul><li>Name</li><li>job title</li><li>email</li><li>website</li><li>skills</li></ul><p><br />
<br />
I also wanted a double sided design. After playing with some options, I settled on having my <a href="http://charanj.it" onclick="window.open(this.href); return false;">portfolio site's URL</a> as a centre piece. It may only be something that other programmers appreciate from some of the responses I've had, but it's something I really like and am proud to have.<!--fold--><br />
<br />
<img src="/uploads/bc00.jpg" alt="image" /><br />
<br />
My first attempt really got me thinking creatively. I wanted to hide my details with in small snippets of code, but coming back to make some changes a few days later made it clear that it was just too much.<br />
<br />
I thought it was clever and highly relevant to my field of work, but I hope to be giving the majority of cards out to potential clients, rather than fellow developers, so it made sense to keep it normal and sensible. After all, if no one can decipher what the symbols and letters mean, I won't be getting much business from them!<br />
<br />
My first amendment was to centre my name/URL horizontally, but I kept it close to the top rather than completely centre it. My second amendment was to move the key information to the back. With my previous attempt, I had struggled with what I should add to the back so this new approach gave me the opportunity to add more info and to present it in a clearer way than before. My name, position and contact info becoming more prominent.<br />
<br />
Despite wanting to make things less cluttered, there was plenty of space on offer. I decided to add my key skill set to the bottom of the card. I could clearly show what they were and what I am good at. This was one thing I wasn't really sure about, because to a potential client, this may mean nothing. On the other hand, if they recognised a few words, or did some research, I would hope that they would impressed the range of languages I could work with. For networking opportunities, this would be an easy way of letting other's know what I had to offer.<br />
<br />
After a couple of weeks, I finally got my hands on them so here are some pictures of the final piece, I hope you like them.<br />
<br />
<img src="/uploads/bc01.jpg" alt="image" /><br />
<img src="/uploads/bc02.jpg" alt="image" /><br />
<img src="/uploads/bc03.jpg" alt="image" /><br />
<br />
You can <a href="/downloads/ccbc.pdf" onclick="window.open(this.href); return false;">download a digital version of my card</a>, email me for a hard copy or for a vcard that should be Address Book (Mac) and Outlook compatible.<br />
<br />
I would like to hear some opinions on what you think of my cards! Please feel free to leave a link to your own business cards.</p>
	              ]]></description>
	              <pubDate>Wed, 30 Jul 2008 13:28:45</pubDate>
	            </item>
		    <item>
                      <title>The HulaBike</title>
	              <link>http://blog.charanj.it/post/45/the-hulabike</link>
	              <description><![CDATA[
	              <p>Watching the <a href="http://gadgetshow.five.tv/index.htm" onclick="window.open(this.href); return false;">Gadget Show</a> isn't something I ever got into the rythm off until very recently, but I am so glad it finally happened. I've always enjoyed he odd bits I've seen but none more so than the weird bikes segment on this weeks show.<br />
<br />
<img src="http://www.bikeforest.com/hularental.jpg" alt="image" /><br />
<br />
The HulaBike was my favourite from the show and I wish it was in production. Luckily enough they provide some CAD applets that allow you to go about building your own. If I ever come across one, I will seriously consider buying one.</p>
	              ]]></description>
	              <pubDate>Tue, 29 Jul 2008 21:19:21</pubDate>
	            </item>
		    <item>
                      <title>HD DVD, more problems, few solutions</title>
	              <link>http://blog.charanj.it/post/44/hd-dvd-more-problems-few-solutions</link>
	              <description><![CDATA[
	              <p>The HD DVD saga rolls on... I managed to get the XBox 360's HD DVD drive to mount with my MacBook, but only if I held the USB cable in place. Not ideal. I popped into PC World and managed to exchange it for another. Luckily, there were no problems with this one which now has pride of place next to my TV!<br />
<br />
In OS X, the drive mounted and the HD DVD was recognised. Apple's DVD player actually started but didn't play anything. VLC was unable to comply with my wishes either :(<br />
<br />
I decided to restart my MacBook and booted into Ubuntu. I re-connected the drive but unfortunately, Ubuntu couldn't mount it. I have seen a <a href="https://help.ubuntu.com/community/RestrictedFormats/BluRayAndHDDVD" onclick="window.open(this.href); return false;">walkthrough to get HD DVDs playing on Ubuntu</a>. so I know it's possible. I just need to spend some time to get it installed!</p>
	              ]]></description>
	              <pubDate>Sun, 27 Jul 2008 01:18:31</pubDate>
	            </item>
		    <item>
                      <title>Full MP3 meta data with MPFreaker</title>
	              <link>http://blog.charanj.it/post/43/full-mp3-meta-data-with-mpfreaker</link>
	              <description><![CDATA[
	              <p>I've always enjoyed having the full details of the MP3s in my iTunes library. Long before I started sing iTunes, Winamp got the same treatment!<br />
<br />
With iTunes, it's been easier to keep the data correct because it gets most of the info before ripping commences, but I used to use Audiograbber, but as it's a Windows only product, I had to make some sort of switch.<br />
<br />
Another drawback from manual updating files is that the artwork is often missing. I don't have a colour screen iPod (yet) so artwork isn't necessary at the moment, but it's always been something I've wanted to have for the fancy features in iTunes and for when I eventually upgrade my iPod.<br />
<br />
A few days ago I came across an app called <a href="http://www.lairware.com/mpfreaker/" onclick="window.open(this.href); return false;">MPFreaker</a> which takes care of a lot of the meta data. I gave the trial version a whirl but within a few minutes I was ready to purchase the full version. The $20 wasn't exactly steep and with ability to now rip through 1000s of songs at once, it seems like a bargain.<br />
<br />
It can update almost all of the meta data for the songs on your machine and even adds lyrics! It has a play function, reads from your iTunes library and even lets you search and refine your listings by the playlists you have in iTunes so it really could just take the place of iTunes on your machine. If I didn't download so many podcasts, I'd probably make the switch myself.<!--fold--><br />
<br />
This is a Mac only product, but an episode of <a href="http://geekbrief.tv/gbtv-393-geekbrieftv" onclick="window.open(this.href); return false;">Geek Brief</a> I caught up on yesterday highlighted an iTunes app called <a href="http://tuneupmedia.com/" onclick="window.open(this.href); return false;">TuneUp</a> that has similar, and extra, features, but is only available for the Windows version of iTunes.<br />
<br />
The data for MPFreaker is collected from <a href="http://www.discogs.com" onclick="window.open(this.href); return false;">Discogs.com</a> and is pretty accurate. I especially love the updated artwork, which is often a lot better than the versions I've had. There are some instances where no updates are made to any of the meta data or the artwork, but i would say 75% of my collection was amended. Where it thinks you've made a mistake and these are highlighted in a useful report in a task draw. The errors/warnings are in red, changes made in blue and success messages in green.<br />
<br />
The icon choice wasn't great for the button that really gets you going, but it's a minor flaw in an otherwise great bit of software.</p>
	              ]]></description>
	              <pubDate>Fri, 25 Jul 2008 03:42:08</pubDate>
	            </item>
		    <item>
                      <title>To do</title>
	              <link>http://blog.charanj.it/post/42/to-do</link>
	              <description><![CDATA[
	              <p>Need motivation or something to work towards? Sometimes, there's nothing better than a list of tasks that you need to complete. This isn't always possible or practicle because paper tears, is misplaced or just gets thrown away. One solution is <a href="http://hogbaysoftware.com/products/taskpaper" onclick="window.open(this.href); return false;">TaskPaper</a> by <a href="http://e26.co.uk" onclick="window.open(this.href); return false;">Edd Sowden</a>. Released as a product by Hog Bay Software, TaskPaper is an interactive to do list which is available in more than one form.<br />
<br />
I have both the standalone Mac OS X app and also have a personal install of TaskPaper.web, which is a PHP/JavaScript version that runs in your browser.<br />
<br />
TaskPaper as an app is definitely more refined and easier to use than the .web version, and I have yet to try the other versions. The real appeal with TaskPaper isn't the fact that you can create lists, it's that you can really tick them off one by one. By adding @done at the end of an item, you effectively cross it of your list and this is more than just a metaphor. The item greys out and a line is put through it.<br />
<br />
I used it almost religiously for a few weeks, with not much real use for it. I have been using it on and off to keep track of feature requests/ideas for this blog and it's come in very useful. For this blog I used the .web version, which has been great as I can add to the list from anywhere and then pick it up anytime.<br />
</p>
	              ]]></description>
	              <pubDate>Fri, 25 Jul 2008 03:40:08</pubDate>
	            </item>
		    <item>
                      <title>I really LOL'd at this FAIL</title>
	              <link>http://blog.charanj.it/post/41/i-really-lol-d-at-this-fail</link>
	              <description><![CDATA[
	              <p>Just like icanhascheesburger.com[/url], <a href="http://failblog.org" onclick="window.open(this.href); return false;">failblog.com</a> provides us with hundreds of images that are there for the sole purpose of making us laugh. Now, I love a good laugh, but if I'm honest, these sites rarely make enough of an impression to literally LOL.<br />
<br />
I did, however, literally laugh my ass off at work at this one:<br />
<br />
<a href="http://failblog.org/2008/06/10/backwards-b-fail/" onclick="window.open(this.href); return false;"><img src="http://failblog.files.wordpress.com/2008/06/fail-backwards-b.jpg" alt="image" /></a><br />
<br />
Yes, the <a href="http://failblog.org/2008/06/10/backwards-b-fail/" onclick="window.open(this.href); return false;">Backwards B fail</a> had me in stitches. Another worthy of note is the <a href="http://failblog.org/2008/06/04/book-rental-fail/" onclick="window.open(this.href); return false;">book rental fail</a> which also bought a huge smile to my face!<br />
</p>
	              ]]></description>
	              <pubDate>Fri, 25 Jul 2008 03:37:40</pubDate>
	            </item>
		    <item>
                      <title>HD DVD drive is here</title>
	              <link>http://blog.charanj.it/post/40/hd-dvd-drive-is-here</link>
	              <description><![CDATA[
	              <p>I finally got my hands on the XBox 360 HD DVD drive I'd been after for almost a week now. After <a href="http://blog.charanj.it/post/37/saga_of_the_hd_dvd_drive" onclick="window.open(this.href); return false;">Gamestation refunded me</a> for the order they couldn't fulfill, <a href="http://www.pcworld.co.uk" onclick="window.open(this.href); return false;">PC World</a> came through and had the drive waiting for me when I went to collect it instore.<br />
<br />
As an added bonus, <a href="http://www.play.com" onclick="window.open(this.href); return false;">Play.com</a> sent me an email saying that they'd sent out the Batman Begins HD DVD that I'd ordered yesterday. Once I have them both I'll be doing my best to get the HD DVD playing on my MacBook and subsequently into my HD TV!<br />
<br />
While I wait for Batman Begins to arrive I'll be trying a few other things because although it was just under £30, I don't want what will effectively be a dead drive if I can't find away to get the HD DVDs to work!</p>
	              ]]></description>
	              <pubDate>Thu, 24 Jul 2008 08:43:04</pubDate>
	            </item>
		    <item>
                      <title>The Dark Knight</title>
	              <link>http://blog.charanj.it/post/39/the_dark_knight</link>
	              <description><![CDATA[
	              <p>I've literally just got back from an advanced preview of the new Batman film, The Dark Knight. I have to say that I was impressed. The story, the action, the acting and everything else was almost perfect.<br />
<br />
I had heard lots about the length of the film, but never once did I urge it to hurry up. Nothing felt out of place and everything just came together so well.<br />
<br />
Christian Bale has definitely made the Batman role his own and I just cannot see another person taking his place. Gary Oldman as Lieutenant Gordan got the bigger role he deserved. More screen time, more dialogue and just generally a lot more importance really suited him and the character.<br />
<br />
Aaron Eckhart's role(s) were both very well done and the special effects for his role as Two Face are just mind blowing.<br />
<br />
As I said, the story was very good. I didn't feel the need to question anything that was happening which is always a good thing.<br />
<br />
<img src="http://snarkerati.com/movie-news/files/2007/12/darkknight2.jpg" alt="image" /><br />
<br />
As for Heath Ledger. Best Joker? Most probably. I have a soft spot for Jack Nicholson's version as it's the one I've compared every other too for the last 19 years, but Heath Ledger brings something special to the table. The laugh, the tone, the expressions and his general manner are all brilliantly executed. Oscar? Not for me. I had heard that he captivated the screen whenever he was on it, but he wasn't the only good thing about the film. The chemistry between Christian Bale and Heath Ledger is plain to see and really it's their scenes together that are among the best in the film. Whether that's down to Heath Ledger isn't up to me to decide, but if it was, he may well get a nomination, but not a win.<br />
</p>
	              ]]></description>
	              <pubDate>Thu, 24 Jul 2008 08:42:05</pubDate>
	            </item>
		    <item>
                      <title>Not a fan of the Sounds I'm Seeing</title>
	              <link>http://blog.charanj.it/post/38/not-a-fan-of-the-sounds-i-m-seeing</link>
	              <description><![CDATA[
	              <p>N*E*R*D are a band I came across some time ago now, back in the days <strong>before</strong> Pharrell Williams was cool and long, long, long before his somewhat ill-fated partnership with the Japanese outfit A Bathing Ape.<br />
<br />
In Search Of... is an album I have, and will, recommend time and time again. It may not be a perfect album and has it's share of flaws, but it was a good start for the R'n'B/rock fusion that the Neptunes and Shay were going for.<br />
<br />
Fly or Die, like ISO, had some great lyrics and really just picked up where they left off. Soon after, Pharrell announced N*E*R*D was to be no more, but soon took it back and no one really knew where anyone stood.<br />
<br />
Fast forward 4 whole years and all of a sudden, they're back with a new album, Seeing Sounds. After hearing In My Mind, Pharrell's solo effort, and Hell Hath No Fury, I wasn't really expecting to take much interest in the Neptunes. <a href="http://www.robinthicke.com/discography/detail.aspx?pid=89" onclick="window.open(this.href); return false;">Robin Thicke's album</a> was very good, one of my favourites in fact, but knowing that a new N*E*R*D album was on it's way out, I'll admit a small smile appeared.<br />
<br />
<img src="/uploads/seeingsoundscover.jpg" alt="image" /><br />
<br />
Shortly after seeing some artwork that makes it into the inside of the cover of the album, I heard that a single had been doing the rounds, and there was a video, called Everyone Nose.  Straight to <a href="http://youtube.com/watch?v=PA1HB_yJii4" onclick="window.open(this.href); return false;">YouTube</a> for a first listen/watch and first impressions were not good, a complete change in direction to what made them so likable. 10 or 15 seconds in and I was hooked. What a song. It may not be lyrically rich or deep like we're used to from the boys from Virginia, but it was catchy. It was fresh. It was the Neptunes (and Shay) at their very best again.<!--fold--><br />
<br />
I just had to pre-order the album. I was sure it was going to be a good one and a return to form for Pharrell and Chad. Oh how wrong I was.<br />
<br />
Rather than taking things forward, the album continues the tradition of being OK, almost good at best. I would rather have waited another 4 years and have some effort put into it. I won't say the album is shit, because it isn't. It has it's catchy bits, it's fun and exciting bits, but so did ISO and FOD. Seeing Sounds shouldn't have been another attempt, it should have been a step closer to perfection from them. It should have MUCH better lyrics. I didn't really want to touch on that part, but while writing this, I've been listening to the album and the following lyrics keep popping up through a song<br />
<br />
</p><div class="pre quote"><p>I'm a little teapot</p></div><p><br />
<br />
Are you serious? For a duo that have been featured on what must be over 300 songs as the writers or co-writers and producers, this is not what you expect. Having to pay for the album, this is most definitely not what you deserve to hear.<br />
<br />
Pharrell's involvement with the BBC clothing line has obviously detracted him from what he's best at, and that's been evident for at least 3 years now when the Neptunes almost completely disappeared from the airwaves just as quickly as they took them.<br />
<br />
My <a href="http://www.guardian.co.uk/music/2008/jun/13/urban.shopping" onclick="window.open(this.href); return false;">favourite review for Seeing Sounds</a> is by Alexis Petridis of the Guardian who raises valid points and I guess makes a similar point to the one I'm trying to make. I don't agree that Timbaland's efforts as I think he was far more successfull with his fusion. The following quote from his review had me in stitches though!<br />
<br />
</p><div class="pre quote"><p>Seeing Sounds holds back on that kind of thing. Instead, the lyrics are largely about sex. Occasionally, this is diverting: "Nobody make me come like you," offers You Know What, a funny thing for a bloke to sing, implying as it does that she makes it shoot out of his ears or something.</p></div><p><br />
<br />
If you're a fan of N*E*R*D, you won't be disappointed as it's typical N*E*R*D, but almost 7 years from the release of their first album, countless hits, product and writing credits and a big enough fan base to work for, I just feel that they haven't delivered.<br />
</p>
	              ]]></description>
	              <pubDate>Wed, 23 Jul 2008 03:06:02</pubDate>
	            </item>
		    <item>
                      <title>Saga(?) of the HD DVD drive</title>
	              <link>http://blog.charanj.it/post/37/saga-of-the-hd-dvd-drive</link>
	              <description><![CDATA[
	              <p>My order with Gamestation for the XBox 360's HD DVD drive has just been canceled. I am annoyed that it took them 4 days to tell me, although they did refund me for the drive, the movie I bought and delivery.<br />
<br />
I went straight to the <a href="http://www.game.co.uk" onclick="window.open(this.href); return false;">Game</a> website, but they are still out of stock. I began to rack my brains for another retailer that I could try and after some time, I tried <a href="http://www.pcworld.co.uk" onclick="window.open(this.href); return false;">PC World</a>, Dixons and Comet. I tried HMV, Play.com, Toys 'R' Us and many others, but they were all above what I am willing to pay for what will be a part time and make do solution for my HD needs.<!--fold--><br />
<br />
I have reserved a drive and will hopefully pick it up tonight <span class="strikethrough">while I'll be looking to buy a HD DVD movie on my lunch break!</span><br />
<br />
<strong>Update:</strong> Turns out HMV don't really stock HD DVDs anymore. I wasn't sure if they did anyway, but they had the smallest selection for any medium I've ever seen. They had three titles, Transformers, one of the Shrek films and a Mission Impossible trilogy box set. £15, £15 and £30 respectively and I promptly made way back from lunch and ordered Batman Begins for £3.99 on <a href="http://www.play.com" onclick="window.open(this.href); return false;">Play.com</a>!<br />
</p>
	              ]]></description>
	              <pubDate>Wed, 23 Jul 2008 03:00:02</pubDate>
	            </item>
		    <item>
                      <title>Accelerometer applications</title>
	              <link>http://blog.charanj.it/post/36/accelerometer-applications</link>
	              <description><![CDATA[
	              <p>Some research I was doing bought me across a few accelerometer based apps for the Mac. Unbeknown to me, there's actually an accelerometer built into the MacBook lineup, which is used to protect the hard drive in your notebook from falls by taking the heads away from the discs when a fall is detected.<br />
<br />
A few people have developed apps that tap into this feature and few are as cool as the <a href="http://uri.cat/software/LiquidMac/" onclick="window.open(this.href); return false;">LiquidMac</a> application which is able to detect the orientation of your MacBook.<br />
<br />
<object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/Gf4fAMShTBA&amp;amp;hl=en&amp;amp;fs=1&amp;amp;color1=0x2b405b&amp;amp;color2=0x6b8ab6"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/Gf4fAMShTBA&amp;amp;hl=en&amp;amp;fs=1&amp;amp;color1=0x2b405b&amp;amp;color2=0x6b8ab6" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"></embed></object><br />
<br />
I took a video screen capture of the application in full screen mode, above. I rotated my MacBook randomly, left and right. I have tried upside down, but that's just one trick too far for this app.<!--fold--><br />
<br />
<a href="http://blog.medallia.com/2006/05/smacbook_pro.html" onclick="window.open(this.href); return false;">SmackBook</a> is a new way to switch between 'spaces' in Leopard. By taping your laptop on the left or right side, you're able to make switch between the spaces. A very nice use of the hardware.<br />
<br />
If you have any more apps, be sure to post a comment!</p>
	              ]]></description>
	              <pubDate>Tue, 22 Jul 2008 07:17:30</pubDate>
	            </item>
		    <item>
                      <title>Rafa's gems almost ready for the spotlight</title>
	              <link>http://blog.charanj.it/post/35/rafa-s-gems-almost-ready-for-the-spotlight</link>
	              <description><![CDATA[
	              <p>Rafa Benitez has made some great signings for Liverpool and for me, he has a higher success rate that some of his more recent predecessors.<br />
<br />
Lucas Leiva was a highly rater player, but not much was known about him. He got his chance last season, largely due to Xabi Alonso's absence through injury, and he really grabbed it. He continues to improve and looks to be a versatile midfielder.<br />
<br />
During the last week, Liverpool traveled to FC Lucerne and grabbed a 2-1 victory. Not knowing it was on TV (I was out anyway), I missed the match but heard lots about the two Liverpool goals scored by Lucas and Andriy Voronin. I heard most about Voronin's finish followed by some comments on the assist for Lucas' goal. For me, the assist was the most impressive bit of play and was provided by a youngster who has continued to impressive over the course of Liverpool's pre-season build up so far.<br />
<br />
Daniel Pacheco was signed from Barcelona and is still just 17 years old, but he's showing great promise. Just take a look at the assist below!<br />
<br />
<object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/efIek-13JJo&amp;amp;hl=en&amp;amp;fs=1&amp;amp;color1=0x2b405b&amp;amp;color2=0x6b8ab6"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/efIek-13JJo&amp;amp;hl=en&amp;amp;fs=1&amp;amp;color1=0x2b405b&amp;amp;color2=0x6b8ab6" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"></embed></object><br />
<br />
The finish wasn't too shabby either!<!--fold--><br />
<br />
I hope to see more from the numerous youngsters that Rafa's bought over the past 4 years, especially if they can become reliable squad players over the coming season and help to mount a serious title challenge that takes us right up to the end of the season.<br />
<br />
Lucas made a quick step up and it's easy to forget Mascherano, Babel and, to some extent, Arbeloa's ages. The future really does look bright and I hope they all make the step up to the first team soon.</p>
	              ]]></description>
	              <pubDate>Sun, 20 Jul 2008 18:23:03</pubDate>
	            </item>
		    <item>
                      <title>HD DVD on my MacBook?</title>
	              <link>http://blog.charanj.it/post/34/hd-dvd-on-my-macbook-</link>
	              <description><![CDATA[
	              <p>I have been looking for an input device for sometime now. With Blu-ray now the 'winner' in the 'war', I've primarily looked for a Blu-ray device, but a few films that I want are still only available on HD DVD.<br />
<br />
I suddenly remembered an email I sent out to friends which showed them an <a href="http://www.gamestation.co.uk/product.asp?id=xb360a026" onclick="window.open(this.href); return false;">USB HD DVD drive for under £20</a>. I didn't really take notice because I was so set looking for a Blu-ray drive, but once it hit me, I went on the hunt for that email.<br />
<br />
The HD DVD drive in question is Microsoft's one for the XBox 360. It has a USB interface and, from my research, is a Toshiba drive. A few people have already hooked one up to their Macs and made <em>some</em> progress with it. I'm hopeful that the versions of Apple's DVD Player and VLC I have are both up to date and have some sort of support for playing HD DVDs as I ordered Batman Begins at the same time as I ordered the drive!<br />
<br />
<img src="http://www.xbox.com/NR/rdonlyres/6C5D406C-9193-4FDF-8CC5-E1CE1A52B06C/0/simhddvdnew002.jpg" alt="image" /><br />
<br />
I do feel somewhat odd plugging a Microsoft branded product into my MacBook, but I had previously plugged a Mighty Mouse into a PC successfully, so I can only hope that this new pairing is half as good.<br />
<br />
If worst comes to worst, I should be able to at least read the disk and rip the contents. Any DRM might be a problem, but again, I should be able to get around this. Once I have the content, VLC should be able to handle it in it's usual support everything way!<br />
<br />
I am hopeful that even if neither player is able to handle the discs directly that an application will arrive for OS X soon. It would be far more convenient and I wouldn't mind putting my hands in my pockets to get it.<br />
<br />
Since my MacBook has a DVI output, sound won't be transfered to my hi-def TV, so I'll need to figure out a new audio setup too, but for the £30 I paid for the drive, movie and delivery, I'm more than happy to use my MacBook's built in speakers for testing purposes with the intent to upgrade/sort out the setup at home.<!--fold--><br />
<br />
I'll be sure to update the blog with as much info as I can once I have the drive in my hands. Fingers crossed!<br />
<br />
<strong>Update:</strong> Having rung a local Game Station store before hand, trying to save on shipping and waiting times, I was told that they were out of stock. It also seems I may have purchased the last drive they had online because when I went back to fetch the direct link, it's marked as out of stock. The retailer Game has it an even lower price, with free shipping, but with no indication if/when they will be getting them back in stock.</p>
	              ]]></description>
	              <pubDate>Sat, 19 Jul 2008 04:20:31</pubDate>
	            </item>
		    <item>
                      <title>The Dark Knight is everywhere</title>
	              <link>http://blog.charanj.it/post/33/the-dark-knight-is-everywhere</link>
	              <description><![CDATA[
	              <p>Buses, billboards and all over the web, the new buzz around the Batman movie, <a href="http://www.imdb.com/title/tt0468569/" onclick="window.open(this.href); return false;">The Dark Knight</a>, is really beginning to take a hold.<br />
<br />
Every other story on Digg seems to be something Batman related, which is great for Batman fans (like me) and the sheer variety is amazing. The simple viral campaigns are slowly winding down, which is a shame as they were quite effective and really got the buzz going, but thankfully the onslaught of amazing posters has really produced some amazing work.<br />
<br />
I have tickets to an advanced preview for the 23rd July, with the movie scheduled for release on the 2th, so I'm really excited about it and will most definitely post up my thoughts on the movie once I've seen it.<br />
<br />
I made the unfortunate mistake of not seeing <a href="http://www.imdb.com/title/tt0372784/" onclick="window.open(this.href); return false;">Batman Begins</a> until it came on DVD, largely due to the complete failure of the 4th Tim Burton movie. Had I read a review or even seen a trailer, I would have gone, but I really didn't hear much about and so wish I'd seen it on a bigger screen. To be honest, I don't remember seeing anything about it and calmly let various invites fall to the side without a second thought.<br />
<br />
As for this 'sequal', I have heard lots. Specifically, I remember hearing Heath Ledger was going to be as the Joker and I wasn't too happy about it, but every photo, clip and trailer just seems to make him look as good a Joker as Jack Nicholson. I don't think it's fair to compare them too much because both films and actors have a different take on events and the atmosphere of each film is different, but I think it's fair to say that they will both be remembered for a long time yet as the Jokers. It will be interesting to see just how good Heath Ledger is, considering he's being tipped for an Oscar, despite his death not too long ago.<!--fold--><br />
<br />
Speaking of DVDs, I am on the look out for a HD device (<a href="" onclick="window.open(this.href); return false;">other than my MacBook</a>) and with Blu-ray 'winning' the war, I hope that Warner Bros titles soon make the jump across!<br />
</p>
	              ]]></description>
	              <pubDate>Fri, 18 Jul 2008 03:27:50</pubDate>
	            </item>
		    <item>
                      <title>New blog layout feature, featuring IMDBPHP</title>
	              <link>http://blog.charanj.it/post/32/new-blog-layout-feature-featuring-imdbphp</link>
	              <description><![CDATA[
	              <p><a href="http://projects.izzysoft.de/trac/imdbphp/" onclick="window.open(this.href); return false;">IMDBPHP</a> is a wonderful bit of PHP that delves deep into the world of <a href="http://www.imdb.com" onclick="window.open(this.href); return false;">IMDB</a>.<br />
<br />
As you may know, I am a big fan of Arrested Development, and really wanted to feature a quote script from <a href="http://www.bluthfamily.com" onclick="window.open(this.href); return false;">bluthfamily.com</a> but the resulting layout didn't really fit into the layout of my own blog.<br />
<br />
I did write to the author/owner of bluthfamily.com, but as soon as I pressed send, I wondered if there was an IMDB API. It turns out there isn't, but IMDBPHP does exactly what I wanted.<!--fold--><br />
<br />
With the quotes returned in an array, I was able to randomly select a quote and display it to screen. What's more, I spent a bit of time playing with the rand function and got it to randomly pick one of three programs (Arrested Development, the Office and The Smoking Room) and then select a random quote.<br />
<br />
The documentation isn't great, but the <a href="http://projects.izzysoft.de/trac/imdbphp/wiki/MovieDetails" onclick="window.open(this.href); return false;">movie details</a> page gives you the best example of how to get going.<br />
<br />
You can see the result of my work just below the list of external links in the sidebar. <!--If you'd like to see the script behind my random quote generator, take a look at the <a href="http://charanj.it/examples" onclick="window.open(this.href); return false;">examples section</a> of my portfolio website, where I will soon be adding more examples for reference purposes.--><br />
<br />
Sorry for any bad language!<br />
</p>
	              ]]></description>
	              <pubDate>Sun, 13 Jul 2008 03:22:22</pubDate>
	            </item>
		    <item>
                      <title>setAttribute workaround for IE</title>
	              <link>http://blog.charanj.it/post/31/setattribute-workaround-for-ie</link>
	              <description><![CDATA[
	              <p>Another beautiful quirk in Internet Explorer is it's poor implementation of the setAttribute method. It's something I tried to make use of for my custom 'lightbox', but off course I had a lot of trouble getting it working.<br />
<br />
After a bit of searching I came across a <a href="http://www.webmasterworld.com/forum91/5025.htm" onclick="window.open(this.href); return false;">fix at webmasterworld.com</a>. Using the setAttribute method should allow you to apply a class, an id, an event or any other attribute to an element. From what I've read, IE does this to some extent. It does apply the attribute you request, but not to the HTML element, it instead applies it to the JavaScript reference to the HTML element.<br />
<br />
A subtle difference in definition, but another subtle difference that can add hours to your development time!<!--fold--><br />
<br />
Whereas compliant browsers would use:<br />
<br />
</p><div class="pre code"><pre>element.setAttribute('onclick','event();')</pre></div><p><br />
<br />
IE needs the following:<br />
<br />
</p><div class="pre code"><pre>element.onclick = eventCaller;

function eventCaller() {
  event();
}</pre></div><p><br />
<br />
Once I had the above working, I was confident that I could work around this so that the eventCaller function wasn't necessary, but it seems that it is.<br />
<br />
For other attributes, such as the class name, you'll need the following:<br />
<br />
</p><div class="pre code"><pre>element.className = 'class-name';</pre></div><p><br />
<br />
Styles work in a different way and it makes sense not to use the setAttribute method, but it would be nice to have the option to apply all your styles just once, rather than creating a new reference for every single one.<br />
<br />
Microsoft promises that IE8 will be the most compliant version, but I sincerely hope that their claims don't just apply to CSS and the DOM, but to the JavaScript API and JavaScript methods too.<br />
</p>
	              ]]></description>
	              <pubDate>Thu, 10 Jul 2008 02:01:08</pubDate>
	            </item>
		    <item>
                      <title>PHP includes and requires</title>
	              <link>http://blog.charanj.it/post/30/php-includes-and-requires</link>
	              <description><![CDATA[
	              <p>This is really here for my own benefit, but maybe it will help you to remember the differences between the include and require functions in PHP.<br />
<br />
The names are descriptive, but I would assume that a lot of people don't really give their naming much thought or even know what the differences are.<br />
<br />
The <em>include</em> functions include a file that your request. The file that you request may not exist at the path you've specified, but this won't necessarily fail your document.<br />
<br />
The <em>require</em> functions, literally requires the file you've asked for. If this file is not found, the document will stop loading and processing where it is.<br />
<br />
The require functions are what I use most of the time, they help to ensure that your code is up to scratch and nothing, no matter how small or insignificant it may be, is missing.<br />
<br />
Both of these functions are have two variations, include and include once or require and require_once.<br />
<br />
The '_once' part of the function name basically limits the file to being loaded just once, whereas using just include or require, you could load the same file again and again and again, at various places throughout the document.<!--fold--><br />
<br />
<a href="http://www.php.net" onclick="window.open(this.href); return false;">PHP.net</a> has great documentation and the user contributed examples are generally quite good for trying to get your head around things.</p>
	              ]]></description>
	              <pubDate>Mon, 7 Jul 2008 03:13:35</pubDate>
	            </item>
		    <item>
                      <title>Registering charanj.it</title>
	              <link>http://blog.charanj.it/post/29/registering-charanj-it</link>
	              <description><![CDATA[
	              <p><a href="http://www.charanj.it" onclick="window.open(this.href); return false;">Charanj.it</a> is the new URL for my personal website. It's also the domain that this blog's sub domain now belongs too.<br />
<br />
During development, I was using the now removed blog.cchana.co.uk but I had been looking for something different, something witty, something clever or something random.<br />
<br />
I feel I found something that fit a number of the above criteria, but none of them grabbed me. It was actually seeing <a href="http://ma.tt" onclick="window.open(this.href); return false;">ma.tt</a> as a website's URL that made me go for it. I really wanted to register a few different domains, but the costs involved for some suffixes were beyond ridiculous.<br />
<br />
Registering a .it domain isn't too bad, but far more time consuming than registering a .co.uk or .com domain. Upon purchased, at almost £40 for two years, I had to mail/fax a signed document that would then be reviewed. None of this was explained clearly and from what I read before attempting to register the domain, the document was a formality. In fact, the domain wasn't officially released until it had been received and checked.<br />
<br />
The experience wasn't great with Livetodot, but it got the job done and the domain is now mine.<br />
<br />
I toyed with the idea of having the address charanj.it/sblog for this blog, but I thought that this may confuse a few people, so I stuck to my somewhat tried and tested sub domain method.<br />
<br />
</p><ul><li><a href="http://charanj.it" onclick="window.open(this.href); return false;">Charanj.it</a> is now the URL for my personal portfolio</li><li><a href="http://blog.charanj.it" onclick="window.open(this.href); return false;">Blog.Charanj.it</a> is now the URL for this blog</li><li>hello [at] charanj.it is now the email address I'll be handing out to potential clients and to fellow professionals but will actually forward to...</li><li>chaz [at] cchana.co.uk, which will remain my main email address</li></ul><p><br />
<br />
Please feel free to share your own URLs that are personal to you, for whatever reason.<br />
</p>
	              ]]></description>
	              <pubDate>Fri, 4 Jul 2008 05:05:02</pubDate>
	            </item>
		    <item>
                      <title>Jabra BT620s Headphones</title>
	              <link>http://blog.charanj.it/post/28/jabra-bt620s-headphones</link>
	              <description><![CDATA[
	              <p>I picked these up for a bargain price on <a href="http://www.play.com/Electronics/Electronics/4-/5809253/Jabra-BT620S-Bluetooth-Stereo-Headphones-With-iPod-Bluetooth-Adaptor-A125S/Product.html" onclick="window.open(this.href); return false;">Play.com</a> (have since gone up a little) and was very pleased once I finally got my hands on them.<br />
<br />
After the initial charge, I instantly tried to pair them with my Mac Mini, not knowing that OS X doesn't support the correct profile for a stereo bluetooth device... no matter, Skype wasn't my main reason for buying these! Being able to use these with iTunes would have been a huge plus, but again, no biggie!<br />
<br />
<img src="http://www.slashphone.com/uploads/3393/mainphoto5299.jpg" alt="image" /><br />
<br />
Syncing with my Nokia N70 was easy as anything, but the resulting sound from the MP3s I had stored on the memory card wasn't great, but the bluetooth profile was the most likely cause for this. <span class="strikethrough">I haven't had a chance to use these when taking a call yet.</span><!--fold--><br />
<br />
I had read that the headphones were heavy and didn't really think this at all with the first few uses, but you do begin to notice the weight after prolonged periods of use. Being around 100g and resting on your ears with the neckband design isn't the most comfortable thing n the world after 2 hours use, but they are bearable. For me at least.<br />
<br />
They really deliver the sound to your ears too, with the sound only audible when very close to them. Even when you're not wearing them, you can't really hear much until you get them on, which is great for the commute and for an office environment.<br />
<br />
I love the design, the blue/red/green LEDs, although for the full RRP, the finish on the buttons could be better. I did find that the head on view when worn can make you look like one of those old Martian stress toys though.<br />
<br />
<img src="/uploads/poppinmartian.jpg" alt="image" /><br />
<br />
The pairing with the included iPod attachment is very easy too. I didn't get it right the first few goes, but once I'd READ the instructions, it's very simple!<br />
<br />
The sound quality is generally quite good, but not great. I can easily look past that thanks to the convenience they bring though. The range is nowhere near what bluetooth is/should be capable off. A couple of metres is all I've managed before it distorts or frequently cuts out, which is a shame because I want to be able to leave my iPod on a desk while I roam around the room. A thorough test at work meant I was able to listen to my iPod for most of the day wirelessly with my iPod in my bag. Approximately 1.5 metres distance between the two devices and the reception was good.<br />
<br />
On a venture out at lunch time, my iPod remained at a similar distance but in my pocket, and the reception was, at times, just terrible. Over the course of an hour I didn't hear a single song in full and ended up pausing the music and letting the headphones hang around my neck. When I had the iPod in my hand, the reception was almost flawless, and with the armband I have, I could probably overcome this problem myself, but it's not an ideal situation by any means. I don't know if battery life had an effect, but I'll be sure to test them when walking with both the transmitter and the headphones fully charged.<br />
<br />
The response to the mounted controls are not instant, but quick enough. For my daily commute and the general hustle and bustle of life, the volume is great, but in quite environments, the lowest setting isn't really low enough. One good thing about the volume controls is that they are independent of the device, so with an iPod, you can turn the volume down completely, prolonging your listening pleasure that little bit more!<br />
<br />
The best bit about the transmitter is that it needs charging. This means it doesn't drain your iPod. A big minus is that you only get one mains charger with one plug. It would have been nice to have been able to charge both at the same time. You can if you use the USB charger, but my Mac Mini is hardly ever on these days and I don't need my MacBook being drained when I'm doing other things.<br />
<br />
The worst thing about the transmitter is that it doesn't have any kind of clasp that something like a cable for syncing would have. This means that transmitter is free to fall out as it wishes, so may not actually work with my armband as well as I would like.<br />
<br />
Despite it's negative points, I would definitely recommend this for use with an iPod. It just makes listening to your music that little bit less cluttered. Reception can be an issue, but with a stereo bluetooth profile and the ability to sync with most other bluetooth devices, it's an impressive bit of kit.<br />
</p>
	              ]]></description>
	              <pubDate>Wed, 2 Jul 2008 02:25:19</pubDate>
	            </item>
		    <item>
                      <title>Victorious!</title>
	              <link>http://blog.charanj.it/post/27/victorious-</link>
	              <description><![CDATA[
	              <p>I was lucky enough to be in Spain for the European Championship Final, in which the Spanish faced Germany. I made it to a bar where I joined in the celebrations and festivities surrounding the showpiece of the tournament which ended in Vienna.<br />
<br />
There weren't really any festivities, and few celebrations, but I got to witness a final contested by the country I was in. Spain is currently an almost bi-annual second home, so coupled with the fact that 4 Liverpool players had made it into the squad, it was clear where my allegiances would lie.<br />
<br />
<img src="http://newsimg.bbc.co.uk/media/images/44789000/jpg/_44789902_trophygetty.jpg" alt="image" /><br />
<br />
The game was even for all of 20 minutes, but the Spanish soon took control and looked comfortable. For the remaining 80 minutes, Germany made a few adventures forward, but nothing that really tested Casillas.<br />
<br />
David Silva was lucky not to have been sent off, but had he been, Spain would have been well equipped to hold on to their lead rather than attack as they continued to do.<br />
<br />
Torres scored the winner and it was a sublime finish. The only goal of the game and a fitting end to a tournament where he has clearly not been <span class="strikethrough">the favourite</span> the first choice striker, but he proved his class and his worth by taking his goal perfectly. I was annoyed that he was dragged off considering how hard he has worked for the team, but the as I'm sure he has said (I am in still Spain and haven't seen <em>any</em> media coverage!) he will listen to the manager and do what is best for the team.<!--fold--><br />
<br />
<span class="strikethrough">I'll be sure to update with some pictures and possibly a celebration video soon!</span> The highlights on the BBC website has apparently 'expired' so I've put up a video of Torres' post match interview and an impromptu conga line!<br />
<br />
</p><div class="flashcontent"><object width="512" height="323" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" id="bbc_emp_fmtj_embed_obj"><param value="http://news.bbc.co.uk/player/emp/2_3_3887/player.swf" name="movie"/><param value="default" name="wmode"/><param value="true" name="allowFullScreen"/><param value="embeddedPlayer_7480565" name="name"/><param value="config=http://news.bbc.co.uk/player/emp/config/default.xml?v8&amp;amp;companionSize=300x30&amp;amp;companionType=adi&amp;amp;preroll=&amp;amp;config_settings_autoPlay=false&amp;amp;config_settings_showPopoutButton=false&amp;amp;playlist=http%3A%2F%2Fnews.bbc.co.uk%2Fmedia%2Femp%2F7480000%2F7480500%2F7480565.xml&amp;amp;config_plugin_fmtjLiveStats_pageType=eav1&amp;amp;embedReferer=http://news.bbc.co.uk/sport1/hi/football/euro_2008/7480512.stm&amp;amp;config_plugin_fmtjLiveStats_edition=Domestic&amp;amp;embedPageUrl=/sport1/hi/football/euro_2008/7480565.stm&amp;amp;" name="flashvars"/><embed width="512" height="323" flashvars="config=http://news.bbc.co.uk/player/emp/config/default.xml?v8&amp;amp;companionSize=300x30&amp;amp;companionType=adi&amp;amp;preroll=&amp;amp;config_settings_autoPlay=false&amp;amp;config_settings_showPopoutButton=false&amp;amp;playlist=http%3A%2F%2Fnews.bbc.co.uk%2Fmedia%2Femp%2F7480000%2F7480500%2F7480565.xml&amp;amp;config_plugin_fmtjLiveStats_pageType=eav1&amp;amp;embedReferer=http://news.bbc.co.uk/sport1/hi/football/euro_2008/7480512.stm&amp;amp;config_plugin_fmtjLiveStats_edition=Domestic&amp;amp;embedPageUrl=/sport1/hi/football/euro_2008/7480565.stm&amp;amp;" name="embeddedPlayer_7480565" allowfullscreen="true" wmode="default" id="bbc_emp_fmtj_embed_emb" src="http://news.bbc.co.uk/player/emp/2_3_3887/player.swf" type="application/x-shockwave-flash"/></object></div><p></p>
	              ]]></description>
	              <pubDate>Mon, 30 Jun 2008 07:03:34</pubDate>
	            </item>
		    <item>
                      <title>Germany vs Spain in the Euro 2008 final</title>
	              <link>http://blog.charanj.it/post/25/germany-vs-spain-in-the-euro-2008-final</link>
	              <description><![CDATA[
	              <p>Both semi finals proved to be good football matches, but Germany vs Turkey provided the most entertainment. Both teams wanted to win and it was very end to end throughout. The goals were a mixture of great and fortunate, but the German's won't care or mind after they made it through to their 3rd international final in 12 years, or 4th in 18. Some record, when you consider the company they're in.<br />
<br />
I mean, in the past 5 world cups, we've seen Germany (2), Brazil (3), France (2), Italy (2) and Argentina (1) contest all 5 finals between themselves.<br />
<br />
Germany deserved their win, but Turkey gave as good as they got. Russia were unlucky with Spain managing to find three goals from not much. They had plenty of drive to go forward, but no real cutting edge until, somewhat ironically, their top scorer went of injured just before half time. They began to find more room.<br />
<br />
As a Liverpool fan, it's been frustrating watching Torres play second fiddle to Villa. As good as Villa is, Torres is better. The same can be said for the competition between Xavi and Xabi Alonso.<br />
<br />
Alonso has performed better, but Xavi is guaranteed a place. The fact he got Spain of the mark against the Russians won't help Alonso's case, but he should be considered a little harder after his displays in the tournament and towards the end of the last season.<br />
</p>
	              ]]></description>
	              <pubDate>Sat, 28 Jun 2008 03:03:52</pubDate>
	            </item>
		    <item>
                      <title>3 pixel bug (IE6)</title>
	              <link>http://blog.charanj.it/post/24/3-pixel-bug-ie6-</link>
	              <description><![CDATA[
	              <p>Internet Explorer 6 is possibly <em>the</em> single biggest pain in my life. I can cope with anything else that's thrown at me, but development time being doubled, if not tripled, because of IE6 is just something that really tests my love of web development.<br />
<br />
I deliberately didn't develop for IE6 when building this blogging platform because I feel that I have a responsibility to promote better browsing. As a web developer, I do understand the need for backwards compatibility, but when a new version is released, it should be embraced. Plus, it's a <strong>FREE</strong> upgrade, whether you go from IE6 to 7, to Firefox, Opera or even Safari! The fact that so many people still use IE6 is a bit of a joke. It's around 10 years old, has well known security issues, is poor at doing what it's supposed to do and just simply doesn't work!<br />
<br />
Forget the box model issues, forget the JavaScript issues and the lack of support for PNGs and even the ridiculous reliance on ActiveX controls, the 3 pixel bug is possibly the dumbest and most annoying thing that IE has in it's code. These 3 pixels that can quite simply ruin a perfect layout. 3 pixels that go unnoticed with dummy content throughout development and testing, but surface as concerns from clients when real content is introduced.<br />
<br />
There are some 'accepted' fixes, but I seem to have stumbled across another!<!--fold--><br />
<br />
</p><div class="pre code"><pre>height: 1%</pre></div><p><br />
<br />
Adding the above to a floated element somehow fixes <em>some</em> issues, while in other instances it does nothing at all. This is the fix I've come across most in my travels, but it has only worked in maybe 25% of instances that I've needed to use it.<br />
<br />
The fix I've come across has worked in the few instances I've given it a go in. I've even left the original styles on the element and just added my fix to an IE6 specific stylesheet.<br />
<br />
</p><div class="pre code"><pre>display: inline;</pre></div><p><br />
<br />
That's it. Well, almost. This fixes a few issues but in some ways creates others. With a float, other items will adapt around it by filling the space that's left. When using the above fix, any other elements that <em>should</em> be on the same line will tend to wrap round. The fix for this is to apply the same fix. If you put these all into a containing div, that doesn't need to have any of it's own styles, or may even exist, it will wrap around perfectly, from top to bottom.<br />
<br />
The first issue this creates is that all the elements with the inline attribute will all be vertically aligned to the bottom of the tallest one. This can be fixed with the following applied to all affected elements:<br />
<br />
</p><div class="pre code"><pre>vertical-align: top;</pre></div><p><br />
<br />
One of the issues this inline fix fixes is that margins will no longer double in IE6 as they can when you float an element. The biggest plus for this 'hack' is that it completely avoids the 3pixel bug and will hopefully that will just mean fewer IE6 specific styles.<br />
<br />
Please remember that the fixes should be IE specific, whether you <a href="/post/16/some_dirty_hacks_for_a_couple_of_my_favourite_browsers_" onclick="window.open(this.href); return false;">hack that</a> or use a conditional comment to create an IE6 stylesheet, Firefox will completely ignore a whole bunch of any styles you set (width most importantly) if you use the inline attribute.<br />
<br />
I mainly posted this for my own reference, but please do leave a comment and let me know if it works for you!<br />
</p>
	              ]]></description>
	              <pubDate>Thu, 26 Jun 2008 04:44:08</pubDate>
	            </item>
		    <item>
                      <title>The free iPhone SDK</title>
	              <link>http://blog.charanj.it/post/23/the-free-iphone-sdk</link>
	              <description><![CDATA[
	              <p>Apple's development kit for the iPhone is pretty impressive. What is 1.2Gb worth of a disk image soon installs to reveal a wealth of tools that can be used to create applications on your iPhone. I assume these tools can also be used on your iPod Touch, but the iPhone's been such a huge success, it's not mentioned in many places.<br />
<br />
I saw the <a href="http://www.apple.com/quicktime/qtv/wwdc08/" onclick="window.open(this.href); return false;">keynote speech</a> that really showcased the SDK featuring a large number of developers showcasing their tools. One of the speakers was an Apple employee who headed the development of the SDK and he was able to show off some simple application builds on stage and then demo them on screen.<br />
<br />
This prompted me to take another look at the iPhone's SDK and I suddenly noticed the free version. I downloaded it to have a play and was mightily impressed. The interface building tools are impressive and very easy to use. I have yet to really get stuck in but I look forward to it.<br />
<br />
<img src="/uploads/iphoneemulator.jpg" alt="image" /><br />
<br />
The above screenshot was from the iPhone Simulator application that is part of the SDK. It faithfully reproduces the iPhone interface and allows you to test out your applications. It also has a basic version of the multi-touch surface, accessed by holding the option key, but it seems to only be good for zooming in and out, as I haven't been able to rotate with finger gestures so far!<!--fold--><br />
<br />
On my earlier point about the iPod Touch, this is my most likely entry into the market because I don't have the need for an iPhone, but the iPod interface on the iPhone is a must have for me. The interface is also proving to be an up and coming development environment and Apple are increasingly making it a more and more important branch of their business.<br />
<br />
If I'm able to develop anything of note for the iPhone/iPod Touch, I'll be sure to post up some sreenshots of how I went about it.<br />
</p>
	              ]]></description>
	              <pubDate>Thu, 26 Jun 2008 03:57:15</pubDate>
	            </item>
		    <item>
                      <title>Euro 2008 semi-finals</title>
	              <link>http://blog.charanj.it/post/22/euro-2008-semi-finals</link>
	              <description><![CDATA[
	              <p>So we have Germany vs Turkey and Russia vs Spain and both look to be exciting matches. Turkey will not be pushovers, but we'll have to see which Germany side turns up. Against the Portuguese they were almost unstoppable, really taking it to their opponents. I see the Germans making it through, but not without a lot of hard work and luck.<br />
<br />
Spain will also need to make sure the right version turns up. They weren't able to break the Italians down, but fully deserved their victory, albeit on penalties.<br />
<br />
I'm sure the Russians will prove to be a harder test this time round, especially since they will surel want to put the record straight after their 4-1 thrashing at the hands of the Spanish in the opening game of their group.<br />
<br />
I hope Spain make it through and win the tournament, but the fitness and ability of the Russian side is nothing to be laughed at. With Gus Hiddink at the helm, anything is possible.</p>
	              ]]></description>
	              <pubDate>Tue, 24 Jun 2008 06:05:35</pubDate>
	            </item>
		    <item>
                      <title>Waking a closed MacBook</title>
	              <link>http://blog.charanj.it/post/21/waking-a-closed-macbook</link>
	              <description><![CDATA[
	              <p>I have previously toyed with my MacBook's HD capabilities, but I struggled to find a way to wake my closed MacBook from sleep mode. My MacBook is often woken accidentally from sleep mode when I'm using Front Row on my mac Mini, so I knew it was possible, I just didn't know how to do it on purpose!<br />
<br />
Having Googled my problem, I just couldn't find an answer, but then it hit me! Your MacBoook just has to be plugged into the mains. Once it's plugged in, awakening isn't a problem at all.<br />
<br />
<img src="http://farm4.static.flickr.com/3002/2587200343_67a624853b_o.jpg" alt="image" /><br />
<br />
Being plugged into the mains and connecting to an external display means you can use Front Row with nothing more than your remote. This makes playing videos, movies, trailers, video podcasts and even DVDs very easy. You'll need an external keyboard and mouse to use it for any other reason (BBC iPlayer, YouTube etc...), but what better excuse is there for buying a wireless keyboard and mighty mouse!?</p>
	              ]]></description>
	              <pubDate>Tue, 24 Jun 2008 05:38:18</pubDate>
	            </item>
		    <item>
                      <title>OLED keyboard and some awesome Russian design</title>
	              <link>http://blog.charanj.it/post/20/oled-keyboard-and-some-awesome-russian-design</link>
	              <description><![CDATA[
	              <p>Art. Lebedev Studios have come out with some interesting products over the years. One product that has really caught everyone's attention is the <a href="http://www.artlebedev.com/everything/optimus/" onclick="window.open(this.href); return false;">Optimus Maximus Keyboard</a>. It features OLED keys that can be customized via macros set throught desktop that allow you to display any image or animation on each key or even over a set of keys.<br />
<br />
<a href="http://revision3.com/tekzilla/rblock" onclick="window.open(this.href); return false;">Tekzilla</a> featured the keyboard with Ryan Block after mentioning it on a previous episode and being inundated with requests.<br />
<br />
The keyboard is certainly impressive and comes in two colours.<br />
<br />
<img src="/uploads/optimusmaximuskeyboard.jpg" alt="image" /><br />
<br />
Art. Lebedev Studio have a lot more in their arsenal though<!--fold-->.<br />
<br />
They have a load of desktop 'posters' available for download, all playing with their barcode logo theme. Some really nice pieces of art that would do well as a desktop on anyone's machine.<br />
<br />
They also dabble in different aspects of design, web design, print, graphics and products are also covered.<br />
<br />
I had a browse through their online store and came across a couple of gems. Not cheap, but the neither is the Optimus Maximus Keyboard ($1,800US at time of writing).<br />
<br />
The Optimus Mini is a nice, much cheaper introduction into the world of OLED keyboards.<br />
<br />
<img src="/uploads/optimusminikeys.jpg" alt="image" /><br />
<br />
The photo above shows one thing that was really interesting to me. Having your system resources displayed would be a very nice use of this product. For me, three keys to launch FireFox, TextWrangler and Vicomsoft's FTP client would be heaven!<br />
<br />
The one thing I loved most above everything were these Russian dolls.<br />
<br />
<img src="/uploads/techrussiandolls.jpg" alt="image" /><br />
<br />
A very geeky take on the old classic, but one that works so well. From a huge tera, all the way down to a tiny byte, everything is covered!<br />
<br />
I originaly saw the Optimus Maximus keyboard over at <a href="http://square-mag.co.uk" onclick="window.open(this.href); return false;">square. magazine</a>, but it was the full demo on Tekzilla that got me even more into the idea.</p>
	              ]]></description>
	              <pubDate>Mon, 23 Jun 2008 02:48:04</pubDate>
	            </item>
		    <item>
                      <title>Almost, but out</title>
	              <link>http://blog.charanj.it/post/19/almost-but-out</link>
	              <description><![CDATA[
	              <p>And they're out. The Dutch had shown so much class, so much adventure and so much style, just decimating everyone in their path. France and Italy suffered at their hands, both loosing by a two goal margin, while the plucky Romanian's were put to bed by their second string.<br />
<br />
From what I saw, Russia were better. Their chances clearer and their intent was clear to see. Not that the Dutch were bad.<br />
<br />
Thanks to their performance in their first match of the tournament, Holland became many people's favourites to win and there was plenty to backup their optimism. They had great strength in depth, a sense of unity that had been lacking for many years and a set of players playing their best football.<br />
<br />
For me, this is the second shock of the round. Germany, I wanted to go through just to <a href="/post/18/portugal_you_re_out_" onclick="window.open(this.href); return false;">get rid of Ronaldo</a>, while I expected to Dutch to find their way past the Russians. I didn't think it would be easy, but definitely possible. The other surprise for me was Croatia's loss against Turkey.<br />
<br />
The Croats had found themselves in a similar position to the Dutch, only their unity was real and had been for a long time. Thinking back to their wonderful run during the '98 World Cup and you would be hard pressed to find a group of players that work so hard for each other. Their manager has become a respected figure and a player I once admired, despite his stint on the blue half of Merseyside.<br />
<br />
Spain and Italy find themselves in the last game of the round, with a trip to face the Russian's on offer. This was a fixture no-one was talking about and one that they'll be approaching a lot differently. I am an avid a long time Italy fan, but I really believe Spain have more about them. I may watch this game as a nutreal, but if I had to choose, I'd love to see Torres and Alonso finish the season with some silverware and would want them to gently pass the Italians in a close fought match.<br />
</p>
	              ]]></description>
	              <pubDate>Mon, 23 Jun 2008 02:39:34</pubDate>
	            </item>
		    <item>
                      <title>Portugal, you're out!</title>
	              <link>http://blog.charanj.it/post/18/portugal-you-re-out-</link>
	              <description><![CDATA[
	              <p>I for one am glad that Portugal are out of Euro 2008. They were poor last night. Ronaldo was ineffective and fluffed an easy chance that a player of his 'caliber' should have buried. I'm not a huge fan of the German national team, but their performance against the Portuguese was impressive and bought a little more credibility to their title as favourites. It's not one I agree with, but they will certainly give the Croatians or Russians a bigger test than they may have been expecting.<br />
<br />
<img src="/uploads/ronaldophil.jpg" alt="image" /><br />
<br />
The quarter final should be a good game, and I am really looking forward to it.<br />
<br />
Hopefully Ronaldo will sort his future out soon and we won't hear from 'Big Phil' too much before the season begins.</p>
	              ]]></description>
	              <pubDate>Fri, 20 Jun 2008 23:38:23</pubDate>
	            </item>
		    <item>
                      <title>Euro 2008 matchday 12 and goodbye to Riise</title>
	              <link>http://blog.charanj.it/post/17/euro-2008-matchday-12-and-goodbye-to-riise</link>
	              <description><![CDATA[
	              <p>Every team has made it through their group stage fixtures and we're now facing the knockout faze.<br />
<br />
I've been really happy with the tournament so far, thanks in no small part to England's inability to qualify. Pre and post match nonsense is kept to a minimum and I don't have to trawl through article after article on the England team's breakfast menu in the morning papers to see how other teams have been performing and the latest summer transfer gossip.<br />
<br />
I wanted Spain to win, but I think Holland and Croatia have been the two most convincing. Spain's last two matches ended with lucky second goals, but a win is a win and you often need a bit of luck to make it to the winners podium. The group stages haven't produced any real surprises, but that means that we've got some great fixtures to look forward too:<br />
<br />
</p><ul><li><span class="strikethrough">Portugal vs</span> Germany</li><li><span class="strikethrough">Croatia vs</span> Turkey</li><li><span class="strikethrough">Holland vs</span> Russia</li><li>Spain <span class="strikethrough">vs Italy</span></li></ul><p><!--fold--><br />
<br />
I think the favourites for each match should find their way through, but the Portageus and the Spanish will need to be careful not to slip up. After Holland's wonderful and dominant start, they should probably be a llittle cautious too!<br />
<br />
The final Group D match between Greece vs Spain match was a good one, not the best, but lots of talking points and plenty of chances. It also gave Xabi Alonso the chance to show exactly why Liverpool should keep him for another season at the very least. His vision, passing (short and long) and shooting ability from ridiculous distances are an asset to any team. As much as I like Gareth Barry as a player, and as well as he plays alongside Gerrard for England, can he really offer as much as Alonso?<br />
<br />
I for one really hope Alonso stays, because we missed his experience and vision through much of last season. When he made his second comeback, he was looking like he was getting back to his best.<br />
<br />
Rubén de la Red's goal was another highlight from the game. An shot struck with real venom.<br />
<br />
Antonis Nikopolidis didn't have his best game, but it was a nice touch that he was able to wear the armband during his final game. 90 caps is an impressive total for anyone, but I wonder how Greece will cope without him.<br />
<br />
<strong>As for John Arne Riise.</strong><br />
<br />
Liverpool and Roma are my two favourite teams, so I have mixed feelings about Riise's transfer from Merseyside to Rome. Liverpool have finally moved on a player who's best days were probably two seasons ago, but he's gone to a club that I support and I am not really sure if he has what it takes to succeed. He'll probably have more freedom, more time on the ball and a change of scenery could make this a good move for him and I wish him all the best... I just hope it's a good move for Roma.<br />
</p>
	              ]]></description>
	              <pubDate>Thu, 19 Jun 2008 19:25:13</pubDate>
	            </item>
		    <item>
                      <title>Some 'dirty' hacks for a couple of my 'favourite' browsers!</title>
	              <link>http://blog.charanj.it/post/16/some-dirty-hacks-for-a-couple-of-my-favourite-browsers-</link>
	              <description><![CDATA[
	              <p>As a follow up to my previous post on <a href="/post/12/ie6_no_more_for_me_at_least_" onclick="window.open(this.href); return false;">stopping development for IE6</a>, I thought I'd share my knowledge of all the 'dirty' hacks that I'd picked up for IE6 and IE7.<br />
<br />
They're not really 'dirty', but they're not always considered to be the best method because they cause your CSS to fail validation. For me however, they're just as effective as the conditional comment that people use to exploit IE's 6 &amp;amp; 7 to behave in the way they like.<br />
<br />
I have used them many times, but have recently tried to switch to the conditional comment method. I do use them during development though, because I can just dump them into the CSS and HTML through the Firebug toolbar and I don't have to constantly switch between stylesheets<!--fold-->.<br />
<br />
There are two for IE7, but I'll just be using the one I've made use of more often because you generally use it to reset what IE6 gets wrong! I may highlight the other method in the future for reference purposes.<br />
<br />
The code below shows how you would float an element and add a 100px margin to the left.<br />
<br />
</p><div class="pre code"><pre>
div {
  float: left;
  margin: 0 0 0 100px;
}
</pre></div><p><br />
<br />
A problem with floats is that IE6 doubles margins ([among other things!), and it's a pain to get right when you have values that don't divide equally into two!<br />
<br />
</p><div class="pre code"><pre>
div {
  float: left;
  margin: 0 0 0 100px;
  _margin: 0 0 0 50px;
}
</pre></div><p><br />
<br />
This would half the margin in IE6, which then doubles it giving you the correct value. The problem with this is that IE7 still reads this hack. Annoying. However, there are two ways to reset what you've just done. One way requires a new block of code, which just bloats things even more. The other, the one illustrated bellow actually mimics the IE6 hack, but only IE7 can read it!<br />
<br />
</p><div class="pre code"><pre>
div {
  float: left;
  margin: 0 0 0 100px;
  _margin: 0 0 0 50px;
  *margin: 0 0 0 100px;
}
</pre></div><p><br />
<br />
The first margin is for all browsers, IE6 and 7 both read the second margin value, but then we make sure IE7 gets the value it really needs with the third one. This is three times the code we SHOULD need, but with the conditional comments, we'd be creating more files and more code because we'd have to re-define the selectors, so for the odd hack it's not so bad when it comes to development.<br />
<br />
If you're finding that you've got more than 10 or 20 lines of hacks, it's probably better to organize them into a file on their own. The only drawback to this method is that your CSS won't validate, but as I suggested, keeping it either separate or after your real CSS, you won't run into any problems!<br />
<br />
If you know of any other hacks, please feel free to comment.</p>
	              ]]></description>
	              <pubDate>Sun, 15 Jun 2008 02:06:30</pubDate>
	            </item>
		    <item>
                      <title>Euro 2008, matchday 4</title>
	              <link>http://blog.charanj.it/post/15/euro-2008-matchday-4</link>
	              <description><![CDATA[
	              <p>Euro 2008 began with a great <a href="http://blog.charanj.it/post/14/switzerland_vs_czech_republic_the_opening_game_of_euro_2008" onclick="window.open(this.href); return false;">opening game</a> between Switzerland and the Czech Republic and for me it's been a very good tournament so far. I've seen 5 of the opening 6 games and it will be 6 1/2 out of 8 by tonight. I'm not going to comment much on Italy's game, but the Dutch really took it to them and deserved their win. I personally interpreted the first goal as offside, but the referees have been 'proved' to be right, so there's not much anyone can do about that.<br />
<br />
The other two goals were lovely bits of team play. Dirk Kuyt did what he does best, working hard for the team, while those around him played their socks off.<br />
<br />
<span class="strikethrough">I'm really looking forward to the Spain result tonight, I say result because I won't see much of the game, but I am hoping Torres starts where he left off at the end of the season. God knows my fantasy football team needs it</span><br />
<br />
The Spain game was extremely enjoyable from what I saw and I hope their final group game is as good because it might the only one I see in full during the group stages.<br />
<br />
</p><div class="flashcontent"><object id="bbc_emp_fmtj_embed_obj" width="512" height="323" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"><param value="http://news.bbc.co.uk/player/emp/2_2_2564/player.swf" name="movie"/><param value="default" name="wmode"/><param value="true" name="allowFullScreen"/><param value="embeddedPlayer_7447341" name="name"/><param value="config=http://news.bbc.co.uk/player/emp/config/default.xml?v4&amp;amp;companionSize=300x30&amp;amp;companionType=adi&amp;amp;preroll=&amp;amp;config_settings_suppressItemKind=advert, ident&amp;amp;config_settings_autoPlay=false&amp;amp;playlist=http%3A%2F%2Fnews.bbc.co.uk%2Fmedia%2Femp%2F7440000%2F7447300%2F7447341.xml&amp;amp;config_plugin_fmtjLiveStats_pageType=eav1&amp;amp;embedReferer=http://news.bbc.co.uk/sport1/hi/football/euro_2008/spain/default.stm&amp;amp;config_plugin_fmtjLiveStats_edition=Domestic&amp;amp;embedPageUrl=/sport1/hi/football/euro_2008/7447341.stm&amp;amp;" name="flashvars"/><embed id="bbc_emp_fmtj_embed_emb" width="512" height="323" flashvars="config=http://news.bbc.co.uk/player/emp/config/default.xml?v4&amp;amp;companionSize=300x30&amp;amp;companionType=adi&amp;amp;preroll=&amp;amp;config_settings_suppressItemKind=advert, ident&amp;amp;config_settings_autoPlay=false&amp;amp;playlist=http%3A%2F%2Fnews.bbc.co.uk%2Fmedia%2Femp%2F7440000%2F7447300%2F7447341.xml&amp;amp;config_plugin_fmtjLiveStats_pageType=eav1&amp;amp;embedReferer=http://news.bbc.co.uk/sport1/hi/football/euro_2008/spain/default.stm&amp;amp;config_plugin_fmtjLiveStats_edition=Domestic&amp;amp;embedPageUrl=/sport1/hi/football/euro_2008/7447341.stm&amp;amp;" name="embeddedPlayer_7447341" allowfullscreen="true" wmode="default" src="http://news.bbc.co.uk/player/emp/2_2_2564/player.swf" type="application/x-shockwave-flash"/></object></div><p></p>
	              ]]></description>
	              <pubDate>Wed, 11 Jun 2008 03:16:56</pubDate>
	            </item>
		    <item>
                      <title>Switzerland vs Czech Republic, the opening game of Euro 2008</title>
	              <link>http://blog.charanj.it/post/14/switzerland-vs-czech-republic-the-opening-game-of-euro-2008</link>
	              <description><![CDATA[
	              <p>My history kind of dictates that I support the Czechs. From '96 I've been a fan and with Patrick Berger and Milan Baros both gracing the Anfield turf, it was a no brainer who I was going to support going into the game.<br />
<br />
However, I've always been a fan of Stéphan Henchoz, and Liverpool have recently signed a Swizz international, Phillip Degen, so I had a small amount of hope that Switzerland would perform well and really give the Czechs a good game. They did not disappointed. For an opening game, it was very good and it's set a standard in my opinion<!--fold-->.<br />
<br />
Out of the two, the Swizz really went for it and deserved a lot more from the game, but a combination of poor delivery and bad luck meant they walked away with nothing. 1-0 didn't tell the full story, but they can take a lot of positives from their performance, although they'll hope that loosing Frei isn't too costly.<br />
<br />
Next up is Portugal vs Turkey and I don't really have a preference, I just hope Ms. Twinkle-toes stays upright and it's somewhere near as enjoyable to watch as the opening game!<br />
<br />
Update: ITV's picture quality is embarrassing in comparison to the BBC's!</p>
	              ]]></description>
	              <pubDate>Sun, 8 Jun 2008 03:55:17</pubDate>
	            </item>
		    <item>
                      <title>Bubble - a JavaScript game for your browser and iPhone</title>
	              <link>http://blog.charanj.it/post/13/bubble-a-javascript-game-for-your-browser-and-iphone</link>
	              <description><![CDATA[
	              <p>From a casual browse around the net, I found a game built in Flash which had been ported onto the iPhone. It was a simple puzzle game, but I have never been able to find it again.<br />
<br />
<img src="/uploads/bubble_game.jpg" alt="image" /><br />
<br />
From my searches to re-discover that gem, I came across <a href="http://xwuz.com/bubble/game.html" onclick="window.open(this.href); return false;">Bubble</a>, a game in a similar vein and probably more refined than the one I was looking for. what makes it even more impressive is the fact that it's all JavaScript based and seems to work flawlessly.<br />
<br />
The game doesn't seem to be bloated with lots of code, and works great in FireFox. I haven't tested it in other browsers, but I don't imagine there being many, if any, issues.<br />
<br />
The people behind Bubble have also introduced a <a href="http://xwuz.com/stack/game.html" onclick="window.open(this.href); return false;">log stacking</a> game, which isn't too shabby itself! The presentation is lovely and the use of JavaScript is truly inspiring to me. I wouldn't mind taking a crack at re-producing the Bubble game, but I very much doubt I'd ever make it as elegant and easy to use!<br />
<br />
One of the best things is the fact that it should work on a iPhone/iPod Touch because it doesn't require Flash, just a browser with JavaScript enabled. The size of the games, I'm guessing, should match the screen on these devices and would look pretty sweet.</p>
	              ]]></description>
	              <pubDate>Fri, 6 Jun 2008 05:08:31</pubDate>
	            </item>
		    <item>
                      <title>IE6 no more. For me at least!</title>
	              <link>http://blog.charanj.it/post/12/ie6-no-more-for-me-at-least-</link>
	              <description><![CDATA[
	              <p>That's it. No more. I don't have the time or patience to do it anymore.<br />
<br />
Internet Explorer 6 will no longer be developed for. Well, by me anyway. Some of my most recent projects have doubled in development time because of IE6. As a result of this wasted time, I've decided to stop and just add a bit of code to each of the new builds I do.<br />
<br />
<img src="/uploads/cc_IE6_warning.jpg" alt="image" /><br />
<br />
The above shows how it will appear. A simple bit of code that only IE6 reads and displays. It may seem 'lazy' on my part, but in almost any other industry, doubling your work load just for a shrinking demographic to make the most of your product, you'd be asked to phase it out as soon as possible<!--fold-->.<br />
<br />
I'd guess that 90% of professionals have the latest versions of the software they use in their sector, so why should their browser be any different. It may not be seen as an essential bit of software, but I'd guess that they spent more time using the internet than they even realise<!--fold-->.<br />
<br />
Considering the upgrade options are numerous and, most importantly, free, it's completely outrageous that such a large (thankfully reducing) number of people still use IE6.<br />
<br />
For my day job, I have to meet client's specifications, but as a 'freelancer' and on my personal projects, I won't develop for anything older than IE7 or Firefox 2. I will even be going as far as turning work down if the client uses an older browser!<br />
<br />
I code to an extremely high standard and most of my work translates to IE6 perfectly well. It's the nicer details that don't. CSS support is somewhere between non-existent and just plain wrong and JavaScript is seen as such a big threat that it spazzes out each time it's encountered!<br />
<br />
<em>PS. It's slightly ironic that the above screenshot meant developing and using IE6!</em></p>
	              ]]></description>
	              <pubDate>Fri, 6 Jun 2008 05:03:35</pubDate>
	            </item>
		    <item>
                      <title>Stand up comedy</title>
	              <link>http://blog.charanj.it/post/11/stand-up-comedy</link>
	              <description><![CDATA[
	              <p>Comedy is one of my favourite things. I love a good laugh and I enjoy watching stand up comedy. I've been lucky enough to see Russell Peters and Bill Bailey live and I'm looking forward to the possiblity of seeing Russell Peters again and seeing Lee Evans live for the first time.<br />
<br />
There are a few comedians that really make me laugh, with the above and Richard Pryor at the very forefront. Michael McIntyre is another that's grabbed my attention recently and I've enjoyed the odd clip I've seen online.<br />
<br />
Anyway, here's a clip of Russell Peters, I hope you enjoy!<br />
<br />
<object width="490" height="375"><param name="movie" value="http://www.youtube.com/v/AxbrXD0kgrQ&amp;amp;hl=en"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/AxbrXD0kgrQ&amp;amp;hl=en" type="application/x-shockwave-flash" wmode="transparent" width="490" height="375"></embed></object></p>
	              ]]></description>
	              <pubDate>Wed, 4 Jun 2008 04:27:10</pubDate>
	            </item>
		    <item>
                      <title>Essential web development tools (for a Mac)</title>
	              <link>http://blog.charanj.it/post/10/essential-web-development-tools-for-a-mac-</link>
	              <description><![CDATA[
	              <p>I thought I'd blog a bit about web development tools, more specifically, the ones that I feel are essential for web development on a Mac. I'll be trying to cover both Tiger and Leopard versions of OS X.<br />
<br />
First up;<br />
<br />
</p><h4>Text editors</h4><p><br />
<br />
Among the most important tools you'll need for web development, unless of course you plump for using Dreamweaver. Personally, I find <a href="http://www.barebones.com/" onclick="window.open(this.href); return false;">Bare Bones</a>' selection of software to be the best. <a href="http://www.barebones.com/products/textwrangler/" onclick="window.open(this.href); return false;">Text Wrangler</a> is an awesome, free, tool and is now compatible with another piece of software that was previously only compatible with BBEdit, Bare Bones' flagship product<!--fold-->.<br />
<br />
If you can afford <a href="http://www.barebones.com/products/bbedit/" onclick="window.open(this.href); return false;">BBEdit</a>, there are plenty more features, but I've found Text Wrangler to be good enough. Having usedBBEdit previously, I do miss the odd feature, but if you haven't used it before, you'll find it to be a very reliable bit of software.<br />
<br />
It's worth checking out this video podcast from <a href="http://www.pixelcorps.tv/macbreak96" onclick="window.open(this.href); return false;">MacBreak</a> for a quick look at some alternatives and how they stack up against Text Wrangler and BBEdit.<br />
<br />
<br />
</p><h4>FTP</h4><p><br />
<br />
When it comes to FTP, getting your files online is all you really need and there are plenty of free tools around. I've personally used <a href="http://www.columbia.edu/acis/software/fugu/" onclick="window.open(this.href); return false;">Fugu</a> and found it to be very good at what it does.<br />
<br />
I personally use <a href="http://www.ftpclient.com/" onclick="window.open(this.href); return false;">VicomSoft's FTP client</a>, which previously catered for BBEdit users and allowed them to edit live files right of the server. It is now compatible with Text Wrangler and a selection of other text editors, so it's well worth a look. The interface is also really nice and straightforward.<br />
<br />
Fugu is a great free alternative, but you don't get the almost priceless integration of your favourite text editor with your FTP client!<br />
<br />
<br />
</p><h4>Graphics</h4><p><br />
<br />
For photo editing, look no further than <a href="http://www.pixelmator.com/" onclick="window.open(this.href); return false;">Pixelmator</a>. For the very basics, it does it's job fast, efficiently and very well. There are no vector capabilities and the results from using non-photo editing aspects are not always that great, but for chopping, resizing and manipulating photos quickly and easily, you can't go wrong with this!<br />
<br />
For something like Flash, unfortunately, Adobe's offering is the only one that works. For website layouts, you could give <a href="http://www.tweakersoft.com/vectordesigner/" onclick="window.open(this.href); return false;">VectorDesigner</a> a go, but there are hardly any tutorials and very little help around right now. If you've used Illustrator in the past, you shouldn't have many problems with it. Both of these programs make use of Leopard's core features andVectorDesigner has the added bonus of Flickr integration! For raster based design, Photoshop will probably be your best bet.<br />
<br />
<br />
</p><h4>Stats</h4><p><br />
<br />
<a href="http://www.google.com/analytics" onclick="window.open(this.href); return false;">Google Analytics</a> is probably one of the best web stat tools around. <a href="http://www.woopra.com/" onclick="window.open(this.href); return false;">Woopra</a> is currently in beta and showing some real promise. They were featured on <a href="http://geekbrief.tv/introducing-woopra-youre-gonna-want-it" onclick="window.open(this.href); return false;">GeekBrief.tv</a> and seemed to be very impressive. <a href="http://www.beunequaled.com" onclick="window.open(this.href); return false;">Be Unequaled</a> has too many monthly page impressions to be considered for the testing, but if you give it a go, let me know how you find it... I might actually enroll this blog into it, just to see how it works.<br />
<br />
You can't go wrong with Analytics though. Documentation, presentation and ease of use are the best from what I've seen when compared to similar services and especially in comparison with the standard web stats you normally get through your host!<br />
<br />
<br />
</p><h4>Server</h4><p><br />
<br />
As you may know, Mac OS X ships with Apache and PHP installed, but it's not the easiest thing to setup. <a href="http://www.mamp.info/" onclick="window.open(this.href); return false;">MAMP</a> solves that problem with ridiculous ease. As well as MySQL,PHPMyAdmin and various other features come standard. Oh and it's free! There is a paid version, but I haven't had the need for it just yet. It allows you to share local development work outside of your desktop or laptop. A very nice feature indeed.<br />
<br />
<br />
</p><h4>Resources</h4><p><br />
<br />
There are so many resources out there, and you can generally find what you need from a simple Google search. For specific results, try some of these bad boys:<br />
<br />
PSDtutes<br />
Good-Tutorials<br />
PHP.net<br />
Sitepoint<br />
Alistappart<br />
Flashkit<br />
<br />
Check back as I intend to update the list with any suggestions I recieve or with any sites I might come across on my travels!</p>
	              ]]></description>
	              <pubDate>Wed, 4 Jun 2008 04:09:14</pubDate>
	            </item>
		    <item>
                      <title>Euro 2008 (pre tournament thoughts)</title>
	              <link>http://blog.charanj.it/post/9/euro-2008-pre-tournament-thoughts-</link>
	              <description><![CDATA[
	              <p>Well, the English season came to an end a couple of weeks ago, but we're just a week away from seeing the start of Euro 2008.<br />
<br />
I am really looking forward to it, even more so because England won't be taking part. I'm sure the media in each participating country are as one sighted as the English, but it does get a bit much with all the unnecessary talk and highlights.<br />
<br />
I'm sure we'll have the 'If England were playing...' mentioned again and again, but I don't care. The commentary and support will be far less biased and the pre and post match talk will be focused rather than interrupted with what high-heels David Beckham bought himself on a rare excursion from the team hotel.<br />
<br />
I'm personally supporting Italy and Spain. I've always been a huge Italy fan and was pleased as punch to see Zidane sent off and then the mighty Azzuri go on to win, but that fact that Liverpool have so many players in the Spain squad has made it a little harder for me to ignore them<!--fold-->.<br />
<br />
Before looking at the groups, I boldly predicted that we'd see Italy, Spain, Holland and France in the semi finals, but three of them are in the same group!<br />
<br />
I can see the Czech Republic, and possibly Germany, having a strong tournament, but I full expect three of my original predictions to make it to the semi-finals!<br />
<br />
I've had a look through the kick off times and I don't expect to miss too much football with just a small handful of games starting at 17:00, the rest will thankfully kick-off after I am home from work, something that cannot be said about the 2002 world cup. Not only did exams get in the way, the starting times for matches were somewhere well beyond belief!<br />
<br />
Oh, and I am most definitely <strong><em>not</em></strong> looking forward to the stuff that passes for commentary these days.</p>
	              ]]></description>
	              <pubDate>Sun, 1 Jun 2008 00:19:02</pubDate>
	            </item>
		    <item>
                      <title>Wii back online</title>
	              <link>http://blog.charanj.it/post/8/wii-back-online</link>
	              <description><![CDATA[
	              <p>When I first got a Wii, over a year ago, I spent a lot of time trying to get my Mac Mini to act as a wireless hub so that I could connect my Wii to the world wide web. After some stupidly complicated process, I got it working, but it meant my Mac Mini had to be on, whenever I wanted to play online. Very soon it became a feature I had but wasn't going to use.<br />
<br />
Once again, my Airport Express base station has opened up my Wii to the wonders of playing someone somewhere else in the world.<br />
<br />
I haven't had a chance to play Fifa '08 online yet, but Mario Strikers Charged is twice, if not three times, as good online as it is in normal tournament mode where it can get a little predictable.<br />
<br />
I'm looking forward to getting back into the online play and maybe even picking up a few more games that will really make the most of the Wii.</p>
	              ]]></description>
	              <pubDate>Fri, 30 May 2008 00:00:48</pubDate>
	            </item>
		    <item>
                      <title>Marware Sportsuit Sensor+</title>
	              <link>http://blog.charanj.it/post/7/marware-sportsuit-sensor-</link>
	              <description><![CDATA[
	              <p>In a follow up post to my early rambles about the Nike+ SportBand, I thought I'd blog about the Marware product I'm using instead of buying a pair of Nike+ shoes.<br />
<br />
At the beginning of May, I did make a trip to Niketown in London and tried on a pair of Nike+ Everyday Free shoes, but they weren't comfortable enough to make me part with my money. I had already parted with a few pounds on eBay for the Marware Sportsuit<sup>TM</sup> and thought I would just wait for that to turn up.<br />
<br />
<img src="http://www.marware.com/core/media/media.nl/id.2780/c.631249/.f?h=a064a00c520161858a21" alt="image" /><br />
<small>(stock photo)</small><br />
<br />
I am very glad that I did because it doesn't seem to be any less accurate than the 'official' method<!--fold-->.<br />
<br />
The sensor is housed in a neoprene, rubber and velcro housing which fasten around your laces. They fit comfortably and don't make any real difference to the shoe or get in the way.<br />
<br />
Having run with it on a treadmill, the data is spot on and I won't be investing in a pair of Nike+ trainers anytime soon... I did want to get a pair of the throw away Mayflys though. They're only £20 but last for just 100km or so. They no longer sell them in London store, although I am hoping this is a temporary thing since they are refurbishing this spring and much of the store is off limits.<br />
<br />
<img src="http://www.ngv.vic.gov.au/sneakers/all/images/81581_600.jpg" alt="image" /><br />
<small>(Nike Mayflys)</small><br />
<br />
I'm currently using a pair of Nike Shox Rivals that I bought last summer and had completely forgotten about. I love them but they look odd with jeans and being black, don't look so good in the sun. I've finally found a purpose for them, which is great. A potential drawback was the lack of laces, but luckily the velcro strap across the top was just the right width to fit the Sportsuit snuggly in place!<br />
</p>
	              ]]></description>
	              <pubDate>Tue, 27 May 2008 23:54:29</pubDate>
	            </item>
		    <item>
                      <title>Iron Man</title>
	              <link>http://blog.charanj.it/post/6/iron-man</link>
	              <description><![CDATA[
	              <p>A lot of friends had already been to seen Iron Man and everyone had only positive things to say. With the trailers, hype and recommendations I couldn't help but get my hopes up! Only Transformers had got me this excited in recent times and I was really looking forward to it.<br />
<br />
Iron Man is most certainly a film I would recommend to any comic book fan. I don't remember much about the character from my youth, but on the evidence of this film, it was most certainly a film that deserved to be made.<br />
<br />
<img src="/uploads/ironman.jpg" alt="image" /><br />
<br />
Rover Downey Jr is an excellent choice for Tony Stark as was the choice for every role, except maybe Pepper Pots, but that's a minor detail and she got better as the film progressed.<br />
<br />
The CGI, acting, story and action are all very very good.<br />
<br />
There were some wonderful touches, including finger print smudges on the helmet when he wears the completed costume for the first time. It was something that really made it all feel just that much better.<br />
<br />
I can't wait for this to come out on DVD, but I'm hoping Blue Ray players will have come down in price by the time it's out.</p>
	              ]]></description>
	              <pubDate>Tue, 27 May 2008 04:03:33</pubDate>
	            </item>
		    <item>
                      <title>Two Macs and an Airport Express</title>
	              <link>http://blog.charanj.it/post/5/two-macs-and-an-airport-express</link>
	              <description><![CDATA[
	              <p>At the same time that I purchased my MacBook, I did some research and went for an Airport Express base station.<br />
<br />
Now, through my wireless home network, I am able to log into my Mac Mini and read any file I like (application permitting) from the comfort of any chair in my house! It’s a wonderful luxury, and one that I am not likely to want to give up anytime soon.<br />
<br />
However, there are instances when I actually need to be able to open or edit the files that I don't have applications for on my MacBook. I've deliberately kept my Macbook free of unnecessary clutter and have only installed the applications I know that I will use and need most. Photoshop, Illustrator and Flash files are all things I still have to edit on my (<span class="strikethrough">soon to be</span> now upgraded) Mac Mini.<br />
<br />
For big changes, this is fine. I have somewhere to go and do the work without having other distractions around me. For smaller ones though, this isn’t ideal… which is where a little experiment came into play.<br />
<br />
I logged into my Mac Mini via my MacBook and went to the users’ portion of the hard drive and tried to select the applications folder. I wasn’t able to go into it, so I went back a few directories and selected the Macintosh HD drive. From here I was able to select the applications folder and easily browse its contents.<br />
<br />
I simply searched for an app my MacBook was missing (Photoshop in this instance) and attempted to open it. To my surprise, Photoshop opened up and was ready within a few minutes. It definitely took longer to get going than it ever has on my Mac Mini, even prior to my RAM upgrade.<br />
<br />
It's not something I'm planning to do often, or possibly ever again as every change I have to make seems to be a big one! I'm also not really sure how the license is affected, but it's an option I'm glad I have.</p>
	              ]]></description>
	              <pubDate>Tue, 20 May 2008 21:47:56</pubDate>
	            </item>
		    <item>
                      <title>Camera Tossing</title>
	              <link>http://blog.charanj.it/post/4/camera-tossing</link>
	              <description><![CDATA[
	              <p>I am a regular veiwer of <a href="http://revision3.com/tekzilla/angrypand" onclick="window.open(this.href); return false;">Tekzilla</a>, a technology video podcast. Tekzilla has introduced me to quite a few things, but none I've embraced so quickly as camera tossing.<br />
<br />
<a href="http://www.flickr.com/photos/cchana/2461396983/" onclick="window.open(this.href); return false;"><img src="http://farm3.static.flickr.com/2275/2461396983_14af0e7e72.jpg" alt="image" /></a><br />
<br />
It may sound dangerous and in some ways it is! As Patrick Norton suggests, maybe try this with a budget camera if possible. I've only tried it with my Nokia N70 so far and with relatively short throws.<br />
<br />
The purpose of camera tossing is to throw, or toss, your camera while it's taking a photo. The rapid movement means even relatively short exposures cause streaks to appear across the photo. Results vary and from my own, short, experiences you can't know what the results will be<!--fold-->.<br />
<br />
The results are pretty nifty, as you may be able to tell from the photo above, which was actually my second attempt. You can see the rest of my attempts in my <a href="http://www.flickr.com/photos/cchana/sets/72157604864367835/" onclick="window.open(this.href); return false;">flickr camera tossing set</a>.<br />
<br />
It's something I'll be trying again soon, and I may even be brave enough to give it a go with my Nikon D70!</p>
	              ]]></description>
	              <pubDate>Sun, 4 May 2008 02:57:34</pubDate>
	            </item>
		    <item>
                      <title>Sharing Mac apps</title>
	              <link>http://blog.charanj.it/post/3/sharing-mac-apps</link>
	              <description><![CDATA[
	              <p>At the same time that I purchased my MacBook, I did some research and went for an Airport Express base station.<br />
<br />
<img src="/uploads/apple_macbook.jpg" alt="image" /><br />
<br />
Now, through my wireless home network, I am able to log into my Mac Mini and read any file I like (application permitting) from the comfort of any chair in my house! It’s a wonderful luxury, and one that I am not likely to want to give up anytime soon.<br />
<br />
However, there are instances when I actually need to be able to open or edit the files that I don't have applications for on my MacBook. I've deliberately kept my Macbook free of unnecessary clutter and have only installed the applications I know that I will use and need most. Photoshop, Illustrator and Flash files are all things I still have to edit on my (<span class="strikethrough">soon to be</span> now upgraded) Mac Mini<!--fold-->.<br />
<br />
For big changes, this is fine. I have somewhere to go and do the work without having other distractions around me. For smaller ones though, this isn’t ideal… which is where a little experiment came into play.<br />
<br />
I logged into my Mac Mini via my MacBook and went to the users’ portion of the hard drive and tried to select the applications folder. I wasn’t able to go into it, so I went back a few directories and selected the Macintosh HD drive. From here I was able to select the applications folder and easily browse its contents.<br />
<br />
I simply searched for an app my MacBook was missing (Photoshop in this instance) and attempted to open it. To my surprise, Photoshop opened up and was ready within a few minutes. It definitely took longer to get going than it ever has on my Mac Mini, even prior to my RAM upgrade.<br />
<br />
It's not something I'm planning to do often, or possibly ever again as every change I have to make seems to be a big one! I'm also not really sure how the license is affected, but it's an option I'm glad I have.</p>
	              ]]></description>
	              <pubDate>Sat, 3 May 2008 02:35:04</pubDate>
	            </item>
		    <item>
                      <title>Nike+ SportBand</title>
	              <link>http://blog.charanj.it/post/2/nike-sportband</link>
	              <description><![CDATA[
	              <p>The Nike/Apple relationship has always been very interesting to me. I'm a big fan of what they promote, and the Nike+ service has always looked very slick and well managed.<br />
<br />
<img src="/uploads/stock_sportband.jpg" alt="image" /><br />
<br />
I finally 'caved' in and bought a Nike+ product to help me keep a better record of the running I do. I did contemplate buying the whole range; as in shoes, attachment AND an iPod nano, but when I actually sat down and thought about the cost, it was just too much. Instead, I bought the new Nike+ SportBand and that was that<!--fold-->.<br />
<br />
It was the previews of the SportBand that really got me thinking more seriously about it. I recently purchased a pedometer that I mainly use when I play football on a 5-a-side pitch. It's been very useful to see how far I've run, but it doesn't really offer more than that. As well as the statistical advantage, I'm hoping the SportBand can give me an extra incentive to run a bit more. Maybe even cover more distance, improve my stamina (for running!) and maybe even help me better manage my running capabilities.<br />
<br />
The product is very nice. The sport band is comfortable and light. The electronic readout is clear and it's also quite discreet. I've even considered wearing it as a watch on a daily basis, <span class="strikethrough">just the fact that I'd need to charge it on a regular basis has stopped me going that far</span>. (my previous point wasn't as valid as I thought because it's always in watch mode and I haven't yet found a way to switch it off, but in the end I decided not to go down that route just yet).<br />
<br />
Since I play football at night, a backlight might have been nice, but I'm sure battery life would have been more of an issue.<br />
<br />
The readout part of the band actually detaches and is plugged into a USB port for syncing and charging. It works on both a Mac and a PC, with a Mac being my machine of choice. You'll need to download software, which was less than 20Mb installed on a Mac, and have a Nike account. Other than that, there's not much else to it. It really is plug and play. You also get the necessary shoe sensor, which I have been able to tuck in nicely behind laces on my Adidas shoes! The movement was minimal and sideways, so I won't be forking out for a pair of Nike+ trainers anytime soon.<br />
<br />
I've seen a third party accessory that acts as a shoe bag for the sensor. I may get one of this if I find my lace method doesn't holding up. As for football, my Nike astro-turf trainers have a lace cover which is snug enough for the sensor to fit in.<br />
<br />
The SportBand is takes 2 hours for a 100% charge, which isn't too bad, considering it charges while it's syncing anyway and from my early experience a 25 minute run takes about 2 minutes to recharge the battery to full capacity.<br />
<br />
I originally have found syncing with the website a little problematic. The website <span class="strikethrough">does not</span> didn't seem to remember if your logged in, so you <span class="strikethrough">have</span> to constantly log in. <span class="strikethrough">Even refreshing (flash based site) means you'll have to log in again.</span> It was highly annoying when my first 1.7mile run was shown on screen as a guest, but when I finally logged in, I'd lost the ability to sync. Not ideal. <span class="strikethrough">I'm sure I'll be able to figure out the best way to sync soon enough, but it's a fundamental feature that should be as easy as plugging in your iPod!</span> My second sync was a lot easier, after I noticed the smallest 'Nike+ members log in' text on the run overview screen, and also imported the previous runs I thought I'd lost.<br />
<br />
<span class="strikethrough">I guess this is a reason that the Nike/Apple products came out a long while before this SportBand, Apple know how to sync. Flawlessly, in my experiences.</span><br />
<br />
The Nike+ website is a visual delight and I statistics it provides are useful and the graphics give a better sense of achievement than a pedometer would!<br />
<br />
I don't think this will spell the end of the Nike/Apple relationship, but it's a very welcome addition to the Nike+ lineup. Apple's position is still very relevant, but not everyone has, wants or needs an iPod Nano.<br />
<br />
In all, it's an excellent product, although the £40 they are asking does seem a little steep. Had the price point been around £30, it would have been an even better purchase.<br />
<br />
After a few more runs and syncs, I'll update with more info on how this process has gone.<br />
</p>
	              ]]></description>
	              <pubDate>Fri, 2 May 2008 04:25:08</pubDate>
	            </item>
		    <item>
                      <title>The beginning</title>
	              <link>http://blog.charanj.it/post/1/the-beginning</link>
	              <description><![CDATA[
	              <p>After some time using a blogging platform to keep the content fresh on a few of my personal projects, I finally decided to setup my own blog to let the world know about my thoughts.<br />
<br />
I made a decision early on to build my own blogging platform, giving me a chance to really put my all into making something that I may be able to pass on to any friends or family that require a simple setup. I also thought it would also be a very good opportunity to get stuck into some OOP (PHP5) as well as some MySQL.<br />
<br />
I've worked with a number of CMS' and blogging platforms, but very few impress me. Wordpress is the only one I'd really recommend to anyone, especially after being completely underwhelmed by Joomla. I've recently come across a few companies that role out Drupal as 'their' CMS, branding and modding to their customers needs, but for me that wasn't an option.<br />
<br />
At the end of the day, this is a personal project that may evolve into something more, but there's a very real possibility that in two years time I may actually be the only person using the system I've built! I made the bold decision to build just for my needs, but to also leave enough scope to allow for future expansion.<br />
<br />
</p><h4>From the beginning</h4><p><br />
<br />
After spending some time planning my database structure, I wanted to make a decision early on about how content would be entered. I've got some experience in working with the TinyMCE WYSIWYG, but I'm not a big fan of the tools in general. TinyMCE can actually be very simple with the most basic options, or it can be scaled up to include a large number of features. The basic version appealed to me, but I prefer to write in code so that I have complete control over how the content I produce is formatted.<br />
<br />
I decided that the first build of the CMS would feature a text area with some custom BBCode functionality, but for others that may take up my 'system', I'd give them the option for using the WYSIWYG, which should be a fairly painless changeover. Ultimately, I'd like that to be configurable as it is in Wordpress' admin area, but that's something for the future.<!--fold--><br />
<br />
The BBCode functionality was something that required a lot more work than I'd hoped because I wanted to be able to control the HTML wherever possible, while also having a code view. This meant abandoning the usual str_replace() function that replaces greater and less than symbols in the markup for most of the content. After quite a few hours, I stumbled across the answer and it's made BBCode even better! I'll be posting my version of BBCode in the future, so keep an eye out for it!<br />
<br />
</p><h4>Admin</h4><p><br />
<br />
The look of the admin section was a very important aspect of the blog. Wordpress has set a high standard in my eyes and although I wanted to replicate their ease of use, I didn't want to copy what had already been done. It was important because I intended for it to be the only piece that was guaranteed to be copied again and again, whereas the front end could be built in a million different ways. I also wanted my future use of the system to be as easy as possible. I have websites that are updated purely through PHPMyAdmin, but this isn't an option for something I want to take seriously.<br />
<br />
Once I had the public end of the site being fed the way I wanted it to be, I began building the admin area as just very simple pages. I wanted to give the user some continuity between the front and back end, so I've tried to use the same styles wherever possible. Once I had everything working, I went back into the display class and mixed it up a bit!<br />
<br />
Off course, only those that use the blog for their own sites will know how it looks and how well it works!<br />
<br />
</p><h4>Client side</h4><p><br />
<br />
The visitors end of the site was also something I wanted to make a really show piece on my personal blog. I wanted it to be feature rich, but simple and intuitive. Hopefully I've achieved that, but if I haven't, please do tell me where I've gone wrong! I've kept the overall theme as minimal as possible, with graphics and icons only added to make certain things stand out more.<br />
<br />
Getting features like the tag clouds, categories and the pagination working wasn't as painful as it has been in the past. I guess practice has made it easier for me to get things done. Tag clouds were new to me, on the build front, but with a bit of thought and planning it went very well. I'd even suggest it went a LOT better than I had expected, considering it worked first time!<br />
<br />
I decided to put in features that be useful for the user but also for future products, the pick of which were the tag cloud, categorisation, tagging, related topics (by tag relevance). The related topics feature was among the most difficult, but I managed to minimize the processing by getting a MySQL query do most of the work.<br />
<br />
Being a fan of the open source community, but wanting to cover my own intellectual property, I decided to put mark my posts as being part of the Creative Commons license (see bottom of this page). I have a comment listing a few details with links to the correct documentation that applies to the license I would enforce.<br />
<br />
</p><h4>JavaScript &amp;amp; Ajax</h4><p><br />
<br />
I REALLY wanted to showcase my JavaScript skills, but I like to build degradable features. With that in mind, I found it difficult to come up with something that would really benefit the site enough to be included. I decided against using any frameworks so that I could get stuck in. I know for sure that what I have isn't coded as elegantly or as simply as it possibly could be, but it's built to the best of my ability and at the time of writing, the JavaScript file is just 4kb!<br />
<br />
The first bit of JS that made it in was a simple image re-sizer. In the event that I link to external images, or am just too lazy to re-size an image in the first place, all images are dynamically given a CSS style the changes their width to match the width of the main content. I've used this on the <a href="http://www.beunequaled.com" onclick="window.open(this.href); return false;">Be Unequaled blog</a> and it was a feature that I first, inadvertently, installed on the <a href="http://www.billionaire-boys-club.co.uk/forum" onclick="window.open(this.href); return false;">Billionaire-Boys-Club.co.uk forum</a>. It's a very useful tool that keeps content nicely formatted. This off course doesn't really degrade as such, BUT it doesn't add anything that will be missed if you haven't got JavaScript enabled.<br />
<br />
The second feature was the ability to click on these re-sized images and view them in a light-box. Again, a simple feature, just not one that is available to those without JavaScript. I ended up making a custom script that just works so nicely. If an image is a link, regardless of size, it stays a link and doesn't show a light-box. Also, any images that would popup in a window larger than the available screen space would actually cause a few scrolling problems. I over came this by disabling the light-box feature, but making this image open in a new window. Not as elegant as a light-box, but certainly better than having a window that doesn't go anywhere. The light-box was completely custom made and I'm really proud of it and I've tried to make it as flexible as possible.<br />
<br />
The first Ajax feature was allowing dynamic commenting. This was just a piece of work I had to re-think and re-hash some code from a similar feature on a <a href="http://www.dpmhi.com" onclick="window.open(this.href); return false;">previous project</a>. This had to be degradable, so it works with and without JavaScript, but with it, it's just so much more fancy!<br />
<br />
</p><h4>Accessibility and SEO</h4><p><br />
<br />
I find that many of the issues raised through trying to make an accessible website apply to SEO. Correctly ordered tags, good markup and descriptive meta data, link text and well structured content usually end up ticking both boxes. SEO isn't my favourite thing because many people seem to be under the impression it can (read should!) be improved (read cheated).]<br />
<br />
I always go by the mantra that good content will get you where you deserve to be. Not that I'm an expert at writing good content, but I hope to be descriptive and interesting enough to command a place I deserve. Whether that's first, last or anywhere in between, that's purely up to Google to decide!<br />
<br />
</p><h4>W3</h4><p><br />
<br />
For many years I've followed the W3 specs and coded to a XMHTL strict standard. I have continued to for this blogging platform and I've tried to make the content delivered dynamically adhere to this specification too. If you find any pages that don't, please let me know!<br />
<br />
</p><h4>Search</h4><p><br />
<br />
I have made a lot of effort in recent years to get my head around search engine friendly URLs and getting my markup into shape, so when it came to search, I initially went down a very basic tag and category only filter. After some thought and plenty of use of the blog during development, I decided a search feature might not be so bad. Specifically for finding articles I may have written to help myself! Not much use if I can't find them with ease!<br />
<br />
For this blog, I am using the URL to send the necessary information. I have, on a personal level, normally stuck to using PHP's $_POST request over the $_GET request, but for some SEO, but mainly pagination, reasons, I decided to mix it up and get stuck in with the $_GET request.<br />
<br />
The query is quite simple. I have filtered common words like 'and', 'the', 'it' and so on and so on. This was purely to stop results getting skewed when they were returned. Upon testing my queries, I found that some posts had 'the' up to 33 times, whereas others had just one or two instances. Couple this the more important terms in a search string often not reaching the dizzy heights of occurrences like the words 'the', 'and' or 'it' and it was an easy decision to make.<br />
<br />
The results that are displayed are actually gathered by finding out how common the search terms are within the content for that post. I played with the idea of searching the content, title and description, but I had to keep in mind that I knew it would double, if not triple, the SQL execution time.<br />
<br />
In the end, I thought it would be smart to search through this for the time being, as the title and meta description may be the reason someone finds my post through a search engine, so why not give them the same opportunity here? This could be something I review in a few months after looking over all the data I collect. If I personally find the server side load to be too much, I can always review it sooner.<br />
<br />
</p><h4>Comments</h4><p><br />
<br />
I really wanted to push commenting in this project. I've always wanted to allow commenting and always been a fan of it, I just never knew how to approach it. I think it adds a whole other dimension to a site, so I decided to bring it to the blog!<br />
<br />
I've shied away from using it on my own personal sites because of the threat of spam, but my curiosity won through and it's now a part of the blog! I originally planned for a password based system, but it got too complicated for a simple blog and didn't really make sense. I had too many rules and requirements that would turn me off, let alone any casual visitors that might stroll through. Hopefully what I have is enough without being too basic, as I have allowed some custom BBCode. I've also introduced Gravatars, which I think will be a nice little touch and make the comments a far more appealing part of each post.<br />
<br />
<strong>Update:</strong> After having come across a threaded comment feature on <a href="http://www.jakeandamir.com" onclick="window.open(this.href); return false;">jakeandamir.com</a>, which uses <a href="http://disqus.com" onclick="window.open(this.href); return false;">Disqus</a> (I just got that), I decided to see if I could replicate it. Initially, only available to those with JavaScript, I intend to make it available to those without too.<br />
<br />
<strong>Update 2:</strong> I got comments working without JavaScript too, which meant more work in certain areas than I thought, but wasn't too bad overall. You can now reply to comments down to a third level.<br />
<br />
</p><h4>Launch</h4><p><br />
<br />
So, here we are after a few months of continuous development. As you may be able to tell, I was blogging during this development time. At first the admin area was little more than a single page, but it's grown to cover every aspect of the blog that needed to be managed and I'm really really happy with how it's turned out.<br />
<br />
</p><h4>The future</h4><p><br />
<br />
I really do hope that my blogging platform comes in handy for others. Be it a personal or a professional project. I feel it's simple enough for me to use and expand on in the future and could well make up the foundations of future projects.<br />
<br />
Right now, I think it's doing it's job quite nicely!<br />
</p>
	              ]]></description>
	              <pubDate>Thu, 1 May 2008 07:24:26</pubDate>
	            </item>
		    </channel>
</rss>