<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Imthiaz Blog</title>
	
	<link>http://imthi.com</link>
	<description>me and stupid works....!!!</description>
	<lastBuildDate>Mon, 16 Aug 2010 12:08:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/hmimthiaz" /><feedburner:info uri="hmimthiaz" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><geo:lat>25.251944</geo:lat><geo:long>55.280000</geo:long><creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/2.0/</creativeCommons:license><image><link>http://imthi.com</link><url>http://feeds.feedburner.com/~fc/hmimthiaz?bg=000000&amp;amp;fg=FFFFFF&amp;amp;anim=0</url><title>Imthiaz Blog</title></image><item>
		<title>iPhone SDK base64 encode / decode</title>
		<link>http://feedproxy.google.com/~r/hmimthiaz/~3/TfPfiFjjf7Q/iphone-sdk-base64-encode-decode.php</link>
		<comments>http://imthi.com/blog/programming/iphone-sdk-base64-encode-decode.php#comments</comments>
		<pubDate>Mon, 16 Aug 2010 12:08:12 +0000</pubDate>
		<dc:creator>Imthiaz</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[objective-c]]></category>

		<guid isPermaLink="false">http://imthi.com/?p=1514</guid>
		<description><![CDATA[I found this useful class for base64 encoding / decoding. It is written by Kiichi Takeuchi Base64.h @interface Base64 : NSObject { } + (void) initialize; + (NSString*) encode:(const uint8_t*) input length:(NSInteger) length; + (NSString*) encode:(NSData*) rawBytes; + (NSData*) decode:(const char*) string length:(NSInteger) inputLength; + (NSData*) decode:(NSString*) string; @end Sample Usage [Base64 initialize]; NSData * [...]]]></description>
			<content:encoded><![CDATA[<p>I found this useful class for base64 encoding / decoding. It is written by <a href="http://www.cocoadev.com/index.pl?BaseSixtyFour">Kiichi Takeuchi</a></p>
<p>Base64.h</p>
<pre class="brush: plain;">@interface Base64 : NSObject {
}

+ (void) initialize;
+ (NSString*) encode:(const uint8_t*) input length:(NSInteger) length;
+ (NSString*) encode:(NSData*) rawBytes;
+ (NSData*) decode:(const char*) string length:(NSInteger) inputLength;
+ (NSData*) decode:(NSString*) string;

@end</pre>
<p>Sample Usage</p>
<pre class="brush: plain;">[Base64 initialize];
NSData * data = [Base64 decode:@&quot;SGVsbG8gV29ybGQ=&quot;];
NSString * actualString = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
NSLog(@&quot;%@&quot;,actualString);
[actualString release];</pre>
<p><a href='http://icdn.s3.amazonaws.com/2010/08/base64.zip'>Download base64 encode / decode class</a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/hmimthiaz?a=TfPfiFjjf7Q:HChTIP5S984:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/hmimthiaz?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/hmimthiaz?a=TfPfiFjjf7Q:HChTIP5S984:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/hmimthiaz?i=TfPfiFjjf7Q:HChTIP5S984:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/hmimthiaz?a=TfPfiFjjf7Q:HChTIP5S984:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/hmimthiaz?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/hmimthiaz?a=TfPfiFjjf7Q:HChTIP5S984:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/hmimthiaz?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/hmimthiaz?a=TfPfiFjjf7Q:HChTIP5S984:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/hmimthiaz?i=TfPfiFjjf7Q:HChTIP5S984:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/hmimthiaz/~4/TfPfiFjjf7Q" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://imthi.com/blog/programming/iphone-sdk-base64-encode-decode.php/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://imthi.com/blog/programming/iphone-sdk-base64-encode-decode.php</feedburner:origLink></item>
		<item>
		<title>iPhone SDK generate MD5 Hash of a string</title>
		<link>http://feedproxy.google.com/~r/hmimthiaz/~3/hOPrjh8nOOA/iphone-sdk-generate-md5-hash-of-a-string.php</link>
		<comments>http://imthi.com/blog/programming/iphone-sdk-generate-md5-hash-of-a-string.php#comments</comments>
		<pubDate>Mon, 16 Aug 2010 11:44:56 +0000</pubDate>
		<dc:creator>Imthiaz</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[objective-c]]></category>

		<guid isPermaLink="false">http://imthi.com/?p=1509</guid>
		<description><![CDATA[This function will help you generate MD5 hash of a given string Class.h + (NSString *)getMD5FromString:(NSString *)source; Class.m + (NSString *)getMD5FromString:(NSString *)source{ const char *src = [source UTF8String]; unsigned char result[CC_MD5_DIGEST_LENGTH]; CC_MD5(src, strlen(src), result); NSString *ret = [[[NSString alloc] initWithFormat:@&#34;%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X&#34;, result[0], result[1], result[2], result[3], result[4], result[5], result[6], result[7], result[8], result[9], result[10], result[11], result[12], result[13], result[14], [...]]]></description>
			<content:encoded><![CDATA[<p>This function will help you generate MD5 hash of a given string</p>
<p>Class.h</p>
<pre class="brush: plain;">+ (NSString *)getMD5FromString:(NSString *)source;</pre>
<p>Class.m</p>
<pre class="brush: plain;">+ (NSString *)getMD5FromString:(NSString *)source{
	const char *src = [source UTF8String];
	unsigned char result[CC_MD5_DIGEST_LENGTH];
	CC_MD5(src, strlen(src), result);
    NSString *ret = [[[NSString alloc] initWithFormat:@&quot;%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X&quot;,
					  result[0], result[1], result[2], result[3],
					  result[4], result[5], result[6], result[7],
					  result[8], result[9], result[10], result[11],
					  result[12], result[13], result[14], result[15]
					  ] autorelease];
    return [ret lowercaseString];
}</pre>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/hmimthiaz?a=hOPrjh8nOOA:YDt9-BoRfwA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/hmimthiaz?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/hmimthiaz?a=hOPrjh8nOOA:YDt9-BoRfwA:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/hmimthiaz?i=hOPrjh8nOOA:YDt9-BoRfwA:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/hmimthiaz?a=hOPrjh8nOOA:YDt9-BoRfwA:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/hmimthiaz?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/hmimthiaz?a=hOPrjh8nOOA:YDt9-BoRfwA:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/hmimthiaz?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/hmimthiaz?a=hOPrjh8nOOA:YDt9-BoRfwA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/hmimthiaz?i=hOPrjh8nOOA:YDt9-BoRfwA:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/hmimthiaz/~4/hOPrjh8nOOA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://imthi.com/blog/programming/iphone-sdk-generate-md5-hash-of-a-string.php/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://imthi.com/blog/programming/iphone-sdk-generate-md5-hash-of-a-string.php</feedburner:origLink></item>
		<item>
		<title>iPhone SDK convert hex color string to UIColor</title>
		<link>http://feedproxy.google.com/~r/hmimthiaz/~3/Mfcnd9wTOBs/iphone-sdk-convert-hex-color-string-to-uicolor.php</link>
		<comments>http://imthi.com/blog/programming/iphone-sdk-convert-hex-color-string-to-uicolor.php#comments</comments>
		<pubDate>Mon, 16 Aug 2010 11:22:18 +0000</pubDate>
		<dc:creator>Imthiaz</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[objective-c]]></category>

		<guid isPermaLink="false">http://imthi.com/?p=1502</guid>
		<description><![CDATA[This function will help you to convert hex color string to UIColor Class.h + (UIColor *) colorWithHexString: (NSString *) stringToConvert; Class.m + (UIColor *) colorWithHexString: (NSString *) stringToConvert{ NSString *cString = [[stringToConvert stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]] uppercaseString]; // String should be 6 or 8 characters if ([cString length] &#60; 6) return [UIColor blackColor]; // strip 0X if [...]]]></description>
			<content:encoded><![CDATA[<p>This function will help you to convert hex color string to UIColor </p>
<p>Class.h</p>
<pre class="brush: plain;">+ (UIColor *) colorWithHexString: (NSString *) stringToConvert;</pre>
<p>Class.m</p>
<pre class="brush: plain;">+ (UIColor *) colorWithHexString: (NSString *) stringToConvert{
	NSString *cString = [[stringToConvert stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]] uppercaseString];
	// String should be 6 or 8 characters
	if ([cString length] &lt; 6) return [UIColor blackColor];
	// strip 0X if it appears
	if ([cString hasPrefix:@&quot;0X&quot;]) cString = [cString substringFromIndex:2];
	if ([cString length] != 6) return [UIColor blackColor];
	// Separate into r, g, b substrings
	NSRange range;
	range.location = 0;
	range.length = 2;
	NSString *rString = [cString substringWithRange:range];
	range.location = 2;
	NSString *gString = [cString substringWithRange:range];
	range.location = 4;
	NSString *bString = [cString substringWithRange:range];
	// Scan values
	unsigned int r, g, b;
	[[NSScanner scannerWithString:rString] scanHexInt:&amp;r];
	[[NSScanner scannerWithString:gString] scanHexInt:&amp;g];
	[[NSScanner scannerWithString:bString] scanHexInt:&amp;b];

	return [UIColor colorWithRed:((float) r / 255.0f)
						   green:((float) g / 255.0f)
							blue:((float) b / 255.0f)
						   alpha:1.0f];
}
</pre>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/hmimthiaz?a=Mfcnd9wTOBs:ZL9FgpEJnR0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/hmimthiaz?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/hmimthiaz?a=Mfcnd9wTOBs:ZL9FgpEJnR0:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/hmimthiaz?i=Mfcnd9wTOBs:ZL9FgpEJnR0:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/hmimthiaz?a=Mfcnd9wTOBs:ZL9FgpEJnR0:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/hmimthiaz?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/hmimthiaz?a=Mfcnd9wTOBs:ZL9FgpEJnR0:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/hmimthiaz?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/hmimthiaz?a=Mfcnd9wTOBs:ZL9FgpEJnR0:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/hmimthiaz?i=Mfcnd9wTOBs:ZL9FgpEJnR0:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/hmimthiaz/~4/Mfcnd9wTOBs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://imthi.com/blog/programming/iphone-sdk-convert-hex-color-string-to-uicolor.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://imthi.com/blog/programming/iphone-sdk-convert-hex-color-string-to-uicolor.php</feedburner:origLink></item>
		<item>
		<title>Screenshot of the day :-)</title>
		<link>http://feedproxy.google.com/~r/hmimthiaz/~3/sgV3IGoIS3s/screenshot-of-the-day.php</link>
		<comments>http://imthi.com/blog/personal/screenshot-of-the-day.php#comments</comments>
		<pubDate>Tue, 29 Jun 2010 06:20:06 +0000</pubDate>
		<dc:creator>Imthiaz</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://imthi.com/?p=1492</guid>
		<description><![CDATA[The problem is due to my DNS, but is still funny as hell.]]></description>
			<content:encoded><![CDATA[<p><img src="http://icdn.s3.amazonaws.com/2010/06/Screen-shot.png" alt="" title="Screen shot of the day" width="551" height="440" class="aligncenter size-full wp-image-1493" /></p>
<p>The problem is due to my DNS, but is still funny as hell.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/hmimthiaz?a=sgV3IGoIS3s:r-6TRgfc6-U:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/hmimthiaz?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/hmimthiaz?a=sgV3IGoIS3s:r-6TRgfc6-U:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/hmimthiaz?i=sgV3IGoIS3s:r-6TRgfc6-U:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/hmimthiaz?a=sgV3IGoIS3s:r-6TRgfc6-U:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/hmimthiaz?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/hmimthiaz?a=sgV3IGoIS3s:r-6TRgfc6-U:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/hmimthiaz?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/hmimthiaz?a=sgV3IGoIS3s:r-6TRgfc6-U:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/hmimthiaz?i=sgV3IGoIS3s:r-6TRgfc6-U:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/hmimthiaz/~4/sgV3IGoIS3s" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://imthi.com/blog/personal/screenshot-of-the-day.php/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://imthi.com/blog/personal/screenshot-of-the-day.php</feedburner:origLink></item>
		<item>
		<title>Released new Amazon S3 Plugin for wordpress</title>
		<link>http://feedproxy.google.com/~r/hmimthiaz/~3/PliFDfE20Nw/released-new-amazon-s3-plugin-for-wordpress.php</link>
		<comments>http://imthi.com/blog/web/released-new-amazon-s3-plugin-for-wordpress.php#comments</comments>
		<pubDate>Sun, 20 Jun 2010 15:59:08 +0000</pubDate>
		<dc:creator>Imthiaz</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[S3]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://imthi.com/?p=1484</guid>
		<description><![CDATA[Couple of months before one of my friend was asking about Amazon S3 plugin for wordpress. For me most of them were either complicated or not working. So my main focus of the plugin was to be really simple and in the same time effective. I would say I have kind of achieved the goal [...]]]></description>
			<content:encoded><![CDATA[<p>Couple of months before one of my friend was asking about Amazon S3 plugin for wordpress. For me most of them were either complicated or not working. So my main focus of the plugin was to be really simple and in the same time effective. I would say I have kind of achieved the goal to some extend in version 1.0 of this plugin release.</p>
<p>The toughest part in the plugin is to configure the Amazon S3 Setting, create a folder for caching and setup the wordpress cron file. Once these settings are done you don&#8217;t have to worry about anything else. The plugin will look for media files in your post and automatically schedule the files for amazon upload. Once the file is uploaded the media urls will be from the CDN. There are no changes done in your database and if you disable the plugin everything will go back to the old state.</p>
<p><a href="http://downloads.wordpress.org/plugin/wp-s3.zip">Download WordPress Amazon S3 Plugin</a></p>
<p><a href="http://imthi.com/wp-s3/">WordPress Amazon S3 Plugin</a></p>
<p><a href="http://wordpress.org/extend/plugins/wp-s3/">More information on WordPress Amazon S3 Plugin</a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/hmimthiaz?a=PliFDfE20Nw:6kI7IpDLkS4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/hmimthiaz?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/hmimthiaz?a=PliFDfE20Nw:6kI7IpDLkS4:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/hmimthiaz?i=PliFDfE20Nw:6kI7IpDLkS4:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/hmimthiaz?a=PliFDfE20Nw:6kI7IpDLkS4:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/hmimthiaz?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/hmimthiaz?a=PliFDfE20Nw:6kI7IpDLkS4:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/hmimthiaz?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/hmimthiaz?a=PliFDfE20Nw:6kI7IpDLkS4:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/hmimthiaz?i=PliFDfE20Nw:6kI7IpDLkS4:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/hmimthiaz/~4/PliFDfE20Nw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://imthi.com/blog/web/released-new-amazon-s3-plugin-for-wordpress.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://imthi.com/blog/web/released-new-amazon-s3-plugin-for-wordpress.php</feedburner:origLink></item>
		<item>
		<title>Breaking the silence after a long time.</title>
		<link>http://feedproxy.google.com/~r/hmimthiaz/~3/hf3nKIxWCv0/breaking-the-silence-after-a-long-time.php</link>
		<comments>http://imthi.com/blog/personal/breaking-the-silence-after-a-long-time.php#comments</comments>
		<pubDate>Sat, 19 Jun 2010 15:42:28 +0000</pubDate>
		<dc:creator>Imthiaz</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[blog update]]></category>

		<guid isPermaLink="false">http://imthi.com/?p=1456</guid>
		<description><![CDATA[It has been a while since I wrote anything on the blog. I don&#8217;t want to give any excuse as it was mostly being lazy. After a while I started to get a feeling what to blog and I was really running out of topics. Yesterday I got an email from WordPress team that their [...]]]></description>
			<content:encoded><![CDATA[<p>It has been a while since I wrote anything on the blog. I don&#8217;t want to give any excuse as it was mostly being lazy. After a while I started to get a feeling what to blog and I was really running out of topics. Yesterday I got an email from WordPress team that their new version 3.0 is out. This gave me a reason to goto my blog and start updating the software. As usual the upgrade was smooth as silk and everything worked spot on. I even upgraded my plugins and themes so everything works fine. All my plugins except organizer is working fine in the latest wordpress 3.0</p>
<p>Apart from that I was busy past month updating iPhone app Naviflix. The new version is already submitted to the app store. Once it is approved I will share some the hurdles I crossed while development.</p>
<p>Some of my friends requested me to write a plugin which helps to move the media files in their blog to Amazon S3. I have written a simple plugin and once I get the space in wordpress subversion I will be posting more details about the same. I have uploaded my niece Afifa picture below.</p>
<p style="text-align: center;"><a href="http://icdn.s3.amazonaws.com/2010/06/afifa.jpg"><img class="size-medium wp-image-1458 aligncenter" title="My niece Afifa" src="http://icdn.s3.amazonaws.com/2010/06/afifa-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p>If my plugin is working fine it should be serving the image from the S3 cdn.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/hmimthiaz?a=hf3nKIxWCv0:tDIE7bIcpE8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/hmimthiaz?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/hmimthiaz?a=hf3nKIxWCv0:tDIE7bIcpE8:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/hmimthiaz?i=hf3nKIxWCv0:tDIE7bIcpE8:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/hmimthiaz?a=hf3nKIxWCv0:tDIE7bIcpE8:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/hmimthiaz?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/hmimthiaz?a=hf3nKIxWCv0:tDIE7bIcpE8:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/hmimthiaz?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/hmimthiaz?a=hf3nKIxWCv0:tDIE7bIcpE8:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/hmimthiaz?i=hf3nKIxWCv0:tDIE7bIcpE8:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/hmimthiaz/~4/hf3nKIxWCv0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://imthi.com/blog/personal/breaking-the-silence-after-a-long-time.php/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://imthi.com/blog/personal/breaking-the-silence-after-a-long-time.php</feedburner:origLink></item>
		<item>
		<title>Naviflix – One stop solution for movie lovers</title>
		<link>http://feedproxy.google.com/~r/hmimthiaz/~3/nH9m6e2aUrs/naviflix-one-stop-solution-for-movie-lovers.php</link>
		<comments>http://imthi.com/blog/products/naviflix-one-stop-solution-for-movie-lovers.php#comments</comments>
		<pubDate>Thu, 15 Apr 2010 15:27:36 +0000</pubDate>
		<dc:creator>Imthiaz</dc:creator>
				<category><![CDATA[Products]]></category>
		<category><![CDATA[Entertainment]]></category>
		<category><![CDATA[Flip Media]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Naviflix]]></category>

		<guid isPermaLink="false">http://imthi.com/?p=1421</guid>
		<description><![CDATA[About three months back we had this conversation in our office lounge after we had released an app for mumbaikar.com. What next ? After a series of discussions we understood that so many of us @flipmedia were hard core movie buffs. Watching movies in the cinema was on the top of our entertainment list. From [...]]]></description>
			<content:encoded><![CDATA[<p>About three months back we had this conversation in our office lounge after we had released an app for <a href="http://itunes.apple.com/ae/app/mumbaikar/id345910228?mt=8">mumbaikar.com</a>. What next ?</p>
<p><a href="http://icdn.s3.amazonaws.com/2010/04/naviflix-sketches.png"><img class="aligncenter size-medium wp-image-1426" title="naviflix-sketches" src="http://icdn.s3.amazonaws.com/2010/04/naviflix-sketches-300x212.png" alt="" width="300" height="212" /></a></p>
<p>After a series of discussions we understood that so many of us <a href="http://twitter.com/flipmedia">@flipmedia</a> were hard core movie buffs. Watching movies in the cinema was on the top of our entertainment list. From the list of suggestions, movie app scored number one. We had brainstorming sessions on what next and how can we go about building this app?. We did some rough sketches and kind of finalized on the final working version and it&#8217;s features.</p>
<p><a href="http://icdn.s3.amazonaws.com/2010/04/20100408_naviflix-screens-1.jpg"><img class="aligncenter size-medium wp-image-1429" title="20100408_naviflix-screens-1" src="http://icdn.s3.amazonaws.com/2010/04/20100408_naviflix-screens-1-300x176.jpg" alt="" width="300" height="176" /></a></p>
<p>Our creative team began their magic on the wire-frames and gave application the best look and feel. Technical team got final designs in few days and started working on the app code. Before starting the actual work we had to make sure that we did not repeat the mistakes we encountered during the first app production. Thanks to our creative team as they made our life harder with a nice but difficult to implement design. </p>
<p><a href="http://icdn.s3.amazonaws.com/2010/04/20100408_naviflix-screens-2.jpg"><img class="aligncenter size-medium wp-image-1430" title="20100408_naviflix-screens-2" src="http://icdn.s3.amazonaws.com/2010/04/20100408_naviflix-screens-2-300x176.jpg" alt="" width="300" height="176" /></a></p>
<p>Our challenge was to give the same look and feel and at the same time make the application responsive. Our creative team started working on the application icon. You can see how the logo got evolved</p>
<p><a href="http://icdn.s3.amazonaws.com/2010/04/20100408_logo-process.jpg"><img class="aligncenter size-medium wp-image-1435" title="20100408_logo-process" src="http://icdn.s3.amazonaws.com/2010/04/20100408_logo-process-300x289.jpg" alt="" width="300" height="289" /></a></p>
<p>After working on the app for 5 weeks we completed the first version of <a href="http://itunes.apple.com/ae/app/naviflix/id365707121?mt=8">Naviflix</a> 1.0 and submitted to app store. Thanks to Google, Apple SDK Documentation and some great forums, without those references we would have been lost. After submitting the app we could not just wait, and we started testing it with our friends. They reported few bugs. We worked on them as fast as we could submitted version 1.1 to app store.</p>
<p><strong>Naviflix Demo</strong></p>
<p style="text-align: center;"><object width="480" height="385"><param name="movie" value="http://www.youtube.com/v/xx50QoBtbyE&#038;hl=en_US&#038;fs=1&#038;color1=0x3a3a3a&#038;color2=0x999999"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/xx50QoBtbyE&#038;hl=en_US&#038;fs=1&#038;color1=0x3a3a3a&#038;color2=0x999999" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></object></p>
<p>Would like to hear your comments and suggestions on how we can improve the app. You can purchase Naviflix on the app store for USD 1.99</p>
<p><a href="http://itunes.apple.com/ae/app/naviflix/id365707121?mt=8"><img src="http://icdn.s3.amazonaws.com/2010/04/img-appstore-iphone.gif" alt="" title="Available on iPhone App Store" width="143" border="0" height="47" class="alignnone size-full wp-image-1440" /></a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/hmimthiaz?a=nH9m6e2aUrs:xWk862Ph2_M:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/hmimthiaz?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/hmimthiaz?a=nH9m6e2aUrs:xWk862Ph2_M:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/hmimthiaz?i=nH9m6e2aUrs:xWk862Ph2_M:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/hmimthiaz?a=nH9m6e2aUrs:xWk862Ph2_M:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/hmimthiaz?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/hmimthiaz?a=nH9m6e2aUrs:xWk862Ph2_M:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/hmimthiaz?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/hmimthiaz?a=nH9m6e2aUrs:xWk862Ph2_M:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/hmimthiaz?i=nH9m6e2aUrs:xWk862Ph2_M:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/hmimthiaz/~4/nH9m6e2aUrs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://imthi.com/blog/products/naviflix-one-stop-solution-for-movie-lovers.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://imthi.com/blog/products/naviflix-one-stop-solution-for-movie-lovers.php</feedburner:origLink></item>
		<item>
		<title>Restore to iPhone OS 3.1.3 Firmware from iPhone OS 4.0 Beta1</title>
		<link>http://feedproxy.google.com/~r/hmimthiaz/~3/025ugB3JkzI/restore-to-iphone-os-3-1-3-firmware-from-iphone-os-4-0-beta1.php</link>
		<comments>http://imthi.com/blog/software/restore-to-iphone-os-3-1-3-firmware-from-iphone-os-4-0-beta1.php#comments</comments>
		<pubDate>Mon, 12 Apr 2010 06:29:32 +0000</pubDate>
		<dc:creator>Imthiaz</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://imthi.com/?p=1409</guid>
		<description><![CDATA[I know so many people with lot of excitement upgraded their iPhone to OS 4.0 Beta1. After few minutes of discovering the new features you will realize most of your old application are crashing and not running as it is supposed to work. Many of my favorite applications did the same and I got really [...]]]></description>
			<content:encoded><![CDATA[<p>I know so many people with lot of excitement upgraded their iPhone to OS 4.0 Beta1. After few minutes of discovering the new features you will realize most of your old application are crashing and not running as it is supposed to work. Many of my favorite applications did the same and I got really annoyed. I cannot really blame Apple for OS 4.0 as it is still in beta.</p>
<p><img class="aligncenter size-full wp-image-1414" title="iphone-os-4.0" src="http://icdn.s3.amazonaws.com/2010/04/iphone-os-4.0.png" alt="" width="400" height="294" /></p>
<p>I decided to restore my iPhone to previous 3.1.3 firmware and I kept getting this annoying error 1015. After searching almost a day I found this method which helped me to get back to 3.1.3 firmware. I hope this will help you all</p>
<p><strong>Pre-requisites</strong></p>
<ul>
<li>iTunes 9.1</li>
<li>Original firmware 3.1.3 [<a href="http://tinyurl.com/y9pkt3q" target="_blank"> iPhone  2G</a>, <a href="http://tinyurl.com/ybcxmob" target="_blank">iPhone  3G</a>, <a href="http://tinyurl.com/yjq6sp8" target="_blank">iPhone  3GS</a> ]</li>
<li><a href="http://bit.ly/9IGBsk" target="_blank">iRecovery v 1.3</a></li>
<li><a href="http://bit.ly/9wUr4v" target="_blank">Libusb library</a></li>
</ul>
<p><strong>Step #1</strong> Download and install the library “libusb”.</p>
<p><strong>Step #2</strong> Download and copy the application “iRecovery” to the desktop</p>
<p><strong>Step #2</strong> Open iTunes, click the ALT key + Restore and  manually load the original 3.1.3 firmware.</p>
<p><strong>Step #3</strong> During the restore process, you’ll notice a  pop up with error 1015, neglect it.</p>
<p><strong>Step #4</strong> Click Ok to close the pop-ups and close  iTunes.</p>
<p><strong>Step #5</strong> Now open the terminal and type the following  commands:</p>
<p><code>cd Desktop<br />
. /iRecovery -s<br />
setenv auto-boot true<br />
saveenv<br />
fsboot<br />
exit</code></p>
<p><strong>Step #6</strong> Wait a few seconds and disconnect the iPhone from the cable, then reboot the phone by clicking Home + Power buttons simultaneously.</p>
<p><strong>Step #7</strong> Once you connect the phone via USB and proceed normally, the Apple logo appears on the display.</p>
<p>My sincere thanks to <a href="http://www.gadgetsdna.com/downgrade-iphone-os-4-0-beta1-to-iphone-os-3-1-3-firmware/2045/">Chris Martin</a> for translating this <a href="http://www.ispazio.net/98815/nuova-guida-al-downgrade-dal-firmware-4-0-beta-1-al-3-1-3-per-utenti-mac">original article</a>.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/hmimthiaz?a=025ugB3JkzI:Qq6ATT9p6Uc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/hmimthiaz?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/hmimthiaz?a=025ugB3JkzI:Qq6ATT9p6Uc:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/hmimthiaz?i=025ugB3JkzI:Qq6ATT9p6Uc:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/hmimthiaz?a=025ugB3JkzI:Qq6ATT9p6Uc:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/hmimthiaz?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/hmimthiaz?a=025ugB3JkzI:Qq6ATT9p6Uc:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/hmimthiaz?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/hmimthiaz?a=025ugB3JkzI:Qq6ATT9p6Uc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/hmimthiaz?i=025ugB3JkzI:Qq6ATT9p6Uc:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/hmimthiaz/~4/025ugB3JkzI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://imthi.com/blog/software/restore-to-iphone-os-3-1-3-firmware-from-iphone-os-4-0-beta1.php/feed</wfw:commentRss>
		<slash:comments>34</slash:comments>
		<feedburner:origLink>http://imthi.com/blog/software/restore-to-iphone-os-3-1-3-firmware-from-iphone-os-4-0-beta1.php</feedburner:origLink></item>
		<item>
		<title>Too Late to Apologize: A Declaration</title>
		<link>http://feedproxy.google.com/~r/hmimthiaz/~3/twzaLMAt4wY/too-late-to-apologize-a-declaration.php</link>
		<comments>http://imthi.com/blog/personal/too-late-to-apologize-a-declaration.php#comments</comments>
		<pubDate>Tue, 23 Feb 2010 13:06:09 +0000</pubDate>
		<dc:creator>Imthiaz</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Entertainment]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://imthi.com/?p=1390</guid>
		<description><![CDATA[&#8220;If pop producer Timbaland had sought to build consensus around declaring independence, what might he have produced?&#8221; Concept video from Soomo Publishing Timbaland &#8211; Apologize (feat. One Republic) Hope you enjoyed watching both videos]]></description>
			<content:encoded><![CDATA[<p>&#8220;If pop producer Timbaland had sought to build consensus around declaring independence, what might he have produced?&#8221; Concept video from <a href="http://www.soomopublishing.com/declaration/index.html">Soomo Publishing</a></p>
<p style="text-align: center;"><object width="560" height="340"><param name="movie" value="http://www.youtube.com/v/uZfRaWAtBVg&#038;hl=en_US&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/uZfRaWAtBVg&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="340"></embed></object></p>
<p>Timbaland &#8211; Apologize (feat. One Republic)</p>
<p style="text-align: center;"><object width="480" height="385"><param name="movie" value="http://www.youtube.com/v/ePyRrb2-fzs&#038;hl=en_US&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/ePyRrb2-fzs&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></object></p>
<p>Hope you enjoyed watching both videos <img src='http://imthi.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/hmimthiaz?a=twzaLMAt4wY:Nj7w6KIBhUo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/hmimthiaz?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/hmimthiaz?a=twzaLMAt4wY:Nj7w6KIBhUo:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/hmimthiaz?i=twzaLMAt4wY:Nj7w6KIBhUo:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/hmimthiaz?a=twzaLMAt4wY:Nj7w6KIBhUo:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/hmimthiaz?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/hmimthiaz?a=twzaLMAt4wY:Nj7w6KIBhUo:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/hmimthiaz?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/hmimthiaz?a=twzaLMAt4wY:Nj7w6KIBhUo:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/hmimthiaz?i=twzaLMAt4wY:Nj7w6KIBhUo:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/hmimthiaz/~4/twzaLMAt4wY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://imthi.com/blog/personal/too-late-to-apologize-a-declaration.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://imthi.com/blog/personal/too-late-to-apologize-a-declaration.php</feedburner:origLink></item>
		<item>
		<title>Auto Increment Build Number &amp; Date in XCode iPhone Project</title>
		<link>http://feedproxy.google.com/~r/hmimthiaz/~3/_JS66aVkS3A/auto-increment-build-number-date-in-xcode-iphone-project.php</link>
		<comments>http://imthi.com/blog/programming/auto-increment-build-number-date-in-xcode-iphone-project.php#comments</comments>
		<pubDate>Tue, 23 Feb 2010 08:54:55 +0000</pubDate>
		<dc:creator>Imthiaz</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Xcode]]></category>

		<guid isPermaLink="false">http://imthi.com/?p=1381</guid>
		<description><![CDATA[While developing application we keep sharing the builds with others. It is very difficult to find out which version they are using and the date it was build. To overcome this I was searching for methods that can used to auto increment build numbers and set the application build date. I found this article really [...]]]></description>
			<content:encoded><![CDATA[<p>While developing application we keep sharing the builds with others. It is very difficult to find out which version they are using and the date it was build. To overcome this I was searching for methods that can used to auto increment build numbers and set the application build date. I found this article really useful.</p>
<p><a href="http://davedelong.com/blog/2009/04/15/incrementing-build-numbers-xcode">Incrementing Build Numbers in Xcode</a></p>
<p>To that script I made few changes to suit my needs.</p>
<pre class="brush: plain;">#!/bin/bash
# Auto Increment Version Script
buildPlist=&quot;Project-Info.plist&quot;
CFBuildNumber=$(/usr/libexec/PlistBuddy -c &quot;Print CFBuildNumber&quot; $buildPlist)
CFBuildNumber=$(($CFBuildNumber + 1))
/usr/libexec/PlistBuddy -c &quot;Set :CFBuildNumber $CFBuildNumber&quot; $buildPlist
CFBuildDate=$(date)
/usr/libexec/PlistBuddy -c &quot;Set :CFBuildDate $CFBuildDate&quot; $buildPlist
</pre>
<p>Please make sure you have added two variables &#8220;CFBuildNumber&#8221; and &#8220;CFBuildDate&#8221;  in Project-Info.plist</p>
<p>You can access the version information using the following code</p>
<pre class="brush: plain;">NSString * version = [[[NSBundle mainBundle] infoDictionary] objectForKey:@&quot;CFBundleVersion&quot;];
NSString * buildNo = [[[NSBundle mainBundle] infoDictionary] objectForKey:@&quot;CFBuildNumber&quot;];
NSString * buildDate = [[[NSBundle mainBundle] infoDictionary] objectForKey:@&quot;CFBuildDate&quot;];
NSLog(@&quot;Application Version: %@ Build No: %@ Build Date: %@&quot;,version,buildNo,buildDate);</pre>
<p>Hope this helps <img src='http://imthi.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/hmimthiaz?a=_JS66aVkS3A:xNDqw_KPUig:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/hmimthiaz?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/hmimthiaz?a=_JS66aVkS3A:xNDqw_KPUig:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/hmimthiaz?i=_JS66aVkS3A:xNDqw_KPUig:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/hmimthiaz?a=_JS66aVkS3A:xNDqw_KPUig:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/hmimthiaz?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/hmimthiaz?a=_JS66aVkS3A:xNDqw_KPUig:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/hmimthiaz?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/hmimthiaz?a=_JS66aVkS3A:xNDqw_KPUig:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/hmimthiaz?i=_JS66aVkS3A:xNDqw_KPUig:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/hmimthiaz/~4/_JS66aVkS3A" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://imthi.com/blog/programming/auto-increment-build-number-date-in-xcode-iphone-project.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://imthi.com/blog/programming/auto-increment-build-number-date-in-xcode-iphone-project.php</feedburner:origLink></item>
	</channel>
</rss>
