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

<channel>
	<title>Anas Abdul Latheef &#187; Anas Abdul Latheef | An application developer, developing for WorldWideWeb and iOS.</title>
	<atom:link href="http://anasabdullatheef.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://anasabdullatheef.com</link>
	<description>Freelance Application Developer; Developing iOS Apps, Website &#38; Web Apps</description>
	<lastBuildDate>Mon, 30 Jan 2012 17:06:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Freelance iOS, Web App Developer</title>
		<link>http://anasabdullatheef.com/featured/freelance-ios-web-app-developer/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=freelance-ios-web-app-developer</link>
		<comments>http://anasabdullatheef.com/featured/freelance-ios-web-app-developer/#comments</comments>
		<pubDate>Tue, 24 Jan 2012 20:30:58 +0000</pubDate>
		<dc:creator>Anas</dc:creator>
				<category><![CDATA[Featured]]></category>

		<guid isPermaLink="false">http://anasabdullatheef.com/?p=952</guid>
		<description><![CDATA[iOS Apps &#38; Games High quality custom designed apps for your personal and business needs.]]></description>
			<content:encoded><![CDATA[<h2>iOS Apps &amp; Games</h2>
<p>High quality custom designed apps for your personal and business needs.</p>
]]></content:encoded>
			<wfw:commentRss>http://anasabdullatheef.com/featured/freelance-ios-web-app-developer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Experimenting with CSS3 &#8211; Keyframe Animation</title>
		<link>http://anasabdullatheef.com/web-development/experimenting-with-css3-keyframe-animation/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=experimenting-with-css3-keyframe-animation</link>
		<comments>http://anasabdullatheef.com/web-development/experimenting-with-css3-keyframe-animation/#comments</comments>
		<pubDate>Tue, 27 Sep 2011 06:55:49 +0000</pubDate>
		<dc:creator>Anas</dc:creator>
				<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://anasabdullatheef.com/?p=921</guid>
		<description><![CDATA[Animation is currently possible in languages like SVG, but no system exists for the native animation of CSS styles. The new proposal for CSS3 standards introduce defined animations, which specify the values that CSS properties will take over a given time interval. How to do this? Animation is done using the @keyframes selector. The keframe [...]]]></description>
			<content:encoded><![CDATA[<p><a title="CSS3 Animation - Demo" href="http://anasabdullatheef.com/demo/keyframes/" target="_blank"><img class="alignnone size-full wp-image-933" title="CSS3 Animation - Demo" src="http://anasabdullatheef.com/wp-content/uploads/2011/09/keyframes.png" alt="CSS3 Animation - Demo" width="670" height="150" /></a><br />
Animation is currently possible in languages like SVG, but no system exists for the native animation of CSS styles.<br />
The new proposal for CSS3 standards introduce defined animations, which specify the values that CSS properties will take over a given time interval.</p>
<h3><strong>How to do this?</strong></h3>
<p><strong></strong>Animation is done using the <span style="text-decoration: underline;"><strong>@keyframes</strong></span> selector. The keframe definition will contain the initial stage and final stage of the object. If finer control of the intermediate values is required, the <em><strong>‘percentage’</strong></em> keyframe-selector can be used.</p>
<h3><em><strong>Syntax<br />
</strong></em></h3>
<p><strong><span style="color: #800000;">@keyframes</span></strong> <span style="color: #800000;">&#8216;<em>&lt;identifier&gt;</em>&#8216;</span> <strong><span style="color: #800000;">{</span></strong></p>
<p style="padding-left: 30px;"><span style="color: #ff00ff;"><span style="color: #808080;">/* &#8216;from &#8216; is equailent to writing 0%. So for more control in animation you can use key-frame selectors as 0%, 1%, 10% &#8230; 100% */</span><br style="color: #808080;" />from {</span><br style="color: #ff00ff;" /> <strong><span style="color: #003366;">  selector</span></strong><span style="color: #ff00ff;">:</span><span style="color: #3366ff;">value</span><span style="color: #ff00ff;">;</span><br />
<strong><span style="color: #003366;">  selector</span></strong><span style="color: #ff00ff;">:</span><span style="color: #3366ff;">value</span><span style="color: #ff00ff;">;</span><br />
<span style="color: #ff00ff;">}</span><br />
<span style="color: #808080;">/* &#8216;to&#8217; is equailent to writing 100%. */</span><br />
<span style="color: #ff00ff;">to {</span><br />
<strong><span style="color: #003366;">  selector</span></strong><span style="color: #ff00ff;">:</span><span style="color: #3366ff;">value</span><span style="color: #ff00ff;">;</span><br />
<strong><span style="color: #003366;">  selector</span></strong><span style="color: #ff00ff;">:</span><span style="color: #3366ff;">value</span><span style="color: #ff00ff;">;</span><br />
<span style="color: #ff00ff;">}</span></p>
<p><span style="color: #800000;"><strong>}</strong></span></p>
<h3><strong><em>Example</em></strong></h3>
<p><span style="color: #800000;"><strong>@keyframes flybird {</strong></span><br />
<span style="color: #ff00ff;">0%        { </span><strong>left</strong>:<span style="color: #3366ff;">0px</span><span style="color: #ff00ff;">;</span>    <strong>top</strong>:<span style="color: #3366ff;">200px</span><span style="color: #ff00ff;">; </span> <span style="color: #ff00ff;">}</span><br />
<span style="color: #ff00ff;">    50%        {</span> <strong>top</strong>:<span style="color: #3366ff;">100px</span><span style="color: #ff00ff;">;</span><span style="color: #ff00ff;">}</span><br />
<span style="color: #ff00ff;">    100%     {</span> <strong>top</strong>:<span style="color: #3366ff;">200px</span><span style="color: #ff00ff;">;</span> <span style="color: #ff00ff;">}</span><br />
<span style="color: #800000;"><strong>}</strong></span></p>
<p><strong>@keyframes flybird {</strong><br />
from        { <strong>left</strong>:0px;    <strong>top</strong>:200px;  }<br />
to     { <strong>top</strong>:200px; }<br />
<strong>}</strong></p>
<p>Try the demo to see how things work.</p>
]]></content:encoded>
			<wfw:commentRss>http://anasabdullatheef.com/web-development/experimenting-with-css3-keyframe-animation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to remove mini cart from magento home page</title>
		<link>http://anasabdullatheef.com/magento/how-to-remove-mini-cart-from-magento-home-page/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-remove-mini-cart-from-magento-home-page</link>
		<comments>http://anasabdullatheef.com/magento/how-to-remove-mini-cart-from-magento-home-page/#comments</comments>
		<pubDate>Thu, 15 Sep 2011 06:51:34 +0000</pubDate>
		<dc:creator>Anas</dc:creator>
				<category><![CDATA[Magento]]></category>

		<guid isPermaLink="false">http://anasabdullatheef.com/?p=899</guid>
		<description><![CDATA[You have just been put incharge of developing the &#8220;online store&#8221; using magento. Do you feel you would get more place to play around if you can get rid of the minicart that appears on the side bar? How do you do this &#8211; Removing the minicart from the homepage? Login to your Magento Admin [...]]]></description>
			<content:encoded><![CDATA[<p>You have just been put incharge of developing the &#8220;online store&#8221; using magento. Do you feel you would get more place to play around if you can get rid of the minicart that appears on the side bar? How do you do this &#8211; Removing the minicart from the homepage?</p>
<ol>
<li>Login to your Magento Admin Panel.</li>
<li>Goto CMS &gt; Pages &gt; Design</li>
<li>And copy the below block to <span style="text-decoration: underline;">Layout Update XML</span><br />
&lt;reference name=&#8221;right&#8221;&gt;<br />
&lt;remove name=&#8221;cart_sidebar&#8221;/&gt;<br />
&lt;/reference&gt;</li>
<li>Now Goto System &gt; Cache Management, Click &#8220;Select All&#8221;, make sure the Actions drop down on the righ is set to &#8220;Refresh&#8221; and hit sumbit.</li>
</ol>
<p>BINGO!!! Now refresh your homepage.</p>
]]></content:encoded>
			<wfw:commentRss>http://anasabdullatheef.com/magento/how-to-remove-mini-cart-from-magento-home-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Update jailbreaked iOS to 4.3.3 Jailbreak</title>
		<link>http://anasabdullatheef.com/iphone/update-to-jailbreaked-ios-to-4-3-3-jailbreak/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=update-to-jailbreaked-ios-to-4-3-3-jailbreak</link>
		<comments>http://anasabdullatheef.com/iphone/update-to-jailbreaked-ios-to-4-3-3-jailbreak/#comments</comments>
		<pubDate>Wed, 27 Apr 2011 06:54:34 +0000</pubDate>
		<dc:creator>Anas</dc:creator>
				<category><![CDATA[iphone]]></category>
		<category><![CDATA[backup cydia]]></category>
		<category><![CDATA[iOS 4.3.2]]></category>
		<category><![CDATA[iOS 4.3.3]]></category>
		<category><![CDATA[iphone4]]></category>
		<category><![CDATA[jailbreak]]></category>
		<category><![CDATA[redsn0w]]></category>
		<category><![CDATA[update to new jailbreak]]></category>

		<guid isPermaLink="false">http://anasabdullatheef.com/?p=804</guid>
		<description><![CDATA[Is your iPhone Jailbreaked? Do you want to update it to the latest iOS (jailbreak avail iOS) without losing any of your data? ( Except your cydia app settings. I&#8217;m working on this ), then read further. You will be able to update to the latest Jailbreak without losing your contacts, messages, music and photos, [...]]]></description>
			<content:encoded><![CDATA[<p>Is your iPhone Jailbreaked? Do you want to update it to the latest iOS (jailbreak avail iOS) without losing any of your data? ( Except your cydia app settings. I&#8217;m working on this ), then read further.</p>
<p>You will be able to update to the latest Jailbreak without losing your contacts, messages, music and photos, App Store Apps, Cydia Apps and Installous Apps. What more??</p>
<ol>
<li>Download the latest iOS 4.3.3 from here.</li>
<li>Download redsn0w the jailbreak software from here.</li>
</ol>
<p><span style="font-size: 10pt;"><strong>Let the above two activities happen in the background. Meanwhile you have some exercises to do with your iPhone.</strong></span><em><br />
</em></p>
<p><span style="font-size: 14pt; text-decoration: underline;"><strong>In your iPhone</strong></span></p>
<ol>
<li>Open Cydia. Goto <strong>Manage &gt; Sources</strong> and note down all the urls.</li>
<li>Download <strong>AptBackup</strong> from Cydia and install</li>
<li>Open AptBackup and click the &#8220;<strong>Backup</strong>&#8221; button</li>
<li>Open Installous (if you have). Goto settings and switch on <strong>iTunes Sync<br />
<img src="http://anasabdullatheef.com/wp-content/uploads/2011/05/042711_0651_Updatetolat1.png" alt="" /><img src="http://anasabdullatheef.com/wp-content/uploads/2011/05/042711_0651_Updatetolat2.png" alt="" /></strong>&nbsp;</p>
<p><strong><img src="http://anasabdullatheef.com/wp-content/uploads/2011/05/042711_0651_Updatetolat3.png" alt="" /><img src="http://anasabdullatheef.com/wp-content/uploads/2011/05/042711_0651_Updatetolat4.png" alt="" /></strong></li>
<li>Connect your phone to your PC.</li>
</ol>
<p><span style="font-size: 14pt; text-decoration: underline;"><strong>In your PC</strong></span></p>
<ol>
<li>Open iTunes. (You will see the device connected).</li>
<li>GoTo File &gt; <strong>Transfer Purchase from your iPhone</strong></li>
<li>On competition RIGHT CLICK the device icon and select <strong>Backup<br />
<img src="http://anasabdullatheef.com/wp-content/uploads/2011/05/042711_0651_Updatetolat5.png" alt="" /><img src="http://anasabdullatheef.com/wp-content/uploads/2011/05/042711_0651_Updatetolat6.png" alt="" /></strong></li>
<li>Open the drive iPhone from My Computer/Finder and copy all the images to the database (more precaution)</li>
</ol>
<p>Now you are ready for an update. You must be having your iOS 4.3.2 ipsw file by now. Keep your iPhone connected to iTunes.</p>
<p><span style="font-size: 14pt; text-decoration: underline;"><strong>Update your iPhone<br />
</strong></span></p>
<ol>
<li>Hold Shift/CMD and press the RESTORE button on itunes.</li>
<li>Select your ipsw file and continue</li>
<li>Once updated iTunes will end up with a screen to restore from last Backup.<br />
We will do that later.</li>
<li> Its Jailebreak time.</li>
</ol>
<p><span style="font-size: 14pt; text-decoration: underline;"><strong>Jailbreaking and Restoring Cydia Apps</strong></span></p>
<ol>
<li>Now Jailbreak using redsn0w. Click <span style="text-decoration: underline;">here</span> for the tutorial</li>
<li>On Completion, Open Cydia &gt; Mange Account and Enter your login details if you had any paid purchase.<br />
<img src="http://anasabdullatheef.com/wp-content/uploads/2011/05/042711_0651_Updatetolat7.png" alt="" /><img src="http://anasabdullatheef.com/wp-content/uploads/2011/05/042711_0651_Updatetolat8.png" alt="" /></li>
<li>Check you have all the cydia source. If not add which you don&#8217;t have.</li>
<li>Now connect your iPhone back to itunes and restore from last back up.</li>
<li>On completion iTunes will start syncing. <strong>CANCEL THIS SYNC.</strong></li>
<li>Download <strong>AptBackup</strong>, from Cydia.</li>
<li>Open AptBacukup and Click <strong>restore</strong>.</li>
<li>This will re-install all your Cydia Apps.</li>
</ol>
<p><span style="font-size: 14pt; text-decoration: underline;"><strong>Time to Sync<br />
</strong></span></p>
<p>Now go ahead and sync your iPhone with your itunes.</p>
]]></content:encoded>
			<wfw:commentRss>http://anasabdullatheef.com/iphone/update-to-jailbreaked-ios-to-4-3-3-jailbreak/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Design Tools</title>
		<link>http://anasabdullatheef.com/web-development/design-tools/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=design-tools</link>
		<comments>http://anasabdullatheef.com/web-development/design-tools/#comments</comments>
		<pubDate>Thu, 07 Apr 2011 08:30:37 +0000</pubDate>
		<dc:creator>Anas</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[web design tools]]></category>
		<category><![CDATA[web devleopment]]></category>

		<guid isPermaLink="false">http://anasabdullatheef.com/?p=792</guid>
		<description><![CDATA[A list of tools that will help you make web development more easier. Data Gathering Tools Click Tale Google Analytics Design Pattern Libraries Welie.com Yahoo Design Library UI Patterns Dribble Pattern Tap Design Pattern Library Designmoo Patternry Elements of Design UI Pattern Collections Wireframe Axure Pencil [ Firefox Plug-in ] Balsamiq Design Resource Sites Designmoo [...]]]></description>
			<content:encoded><![CDATA[<p>A list of tools that will help you make web development more easier.</p>
<p><strong>Data Gathering Tools<br />
</strong></p>
<ol>
<li><a href="http://www.clicktale.com/">Click Tale</a></li>
<li><a href="http://www.google.com/analytics/">Google Analytics</a></li>
</ol>
<p><strong>Design Pattern Libraries</strong></p>
<ol>
<li><a href="http://www.welie.com/patterns/">Welie.com</a></li>
<li><a href="http://developer.yahoo.com/ypatterns/">Yahoo Design Library</a></li>
<li><a href="http://ui-patterns.com/">UI Patterns</a></li>
<li><a href="http://www.dribbble.com/">Dribble</a></li>
<li><a href="http://patterntap.com/">Pattern Tap</a></li>
<li><a href="http://patterns.endeca.com/content/library/en/home.html">Design Pattern Library</a></li>
<li><a href="http://designmoo.com/">Designmoo</a></li>
<li><a href="http://patternry.com/">Patternry</a></li>
<li><a href="http://www.smileycat.com/design_elements/">Elements of Design</a></li>
<li><a href="http://www.uipatterns.net/uipatterns/">UI Pattern Collections</a></li>
</ol>
<p><span style="text-decoration: underline;"><strong>Wireframe</strong></span></p>
<ol>
<li>Axure</li>
<li>Pencil [ Firefox Plug-in ]</li>
<li>Balsamiq</li>
</ol>
<p><span style="text-decoration: underline;"><strong>Design Resource Sites</strong></span></p>
<ol>
<li><a href="http://designmoo.com/">Designmoo</a></li>
<li><a href="http://365psd.com/">365psd</a></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://anasabdullatheef.com/web-development/design-tools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mootools HtmlTable.Sort Problem</title>
		<link>http://anasabdullatheef.com/motools/mootools-htmltable-sort-problem/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=mootools-htmltable-sort-problem</link>
		<comments>http://anasabdullatheef.com/motools/mootools-htmltable-sort-problem/#comments</comments>
		<pubDate>Thu, 02 Sep 2010 08:15:54 +0000</pubDate>
		<dc:creator>Anas</dc:creator>
				<category><![CDATA[Motools]]></category>
		<category><![CDATA[htmltable]]></category>
		<category><![CDATA[js]]></category>
		<category><![CDATA[mootools]]></category>
		<category><![CDATA[table sort]]></category>

		<guid isPermaLink="false">http://anasabdullatheef.com/?p=137</guid>
		<description><![CDATA[&#124; is undefined Trying the below code you might have got an error &#8220;&#124; is undefined&#8221;. var mytable = new HtmlTable($(&#8216;tableid&#8217;)); mytable.enableSort(); This happens because the HtmlTable.Select conflicts with HtmlTable.Sort, ie. HtmlTable.Select overrides HtmlTable.Sort. So when you download mootools more deselect HtmlTable.Select HtmlTable.Sort not working when firebug closed Now you might have got things working, [...]]]></description>
			<content:encoded><![CDATA[<h2 style="margin-bottom: 3px; padding-bottom: 0px; font-size: 14px;"><span style="text-decoration: underline;">| is undefined</span></h2>
<p>Trying the below code you might have got an error &#8220;| is undefined&#8221;.</p>
<blockquote><p><strong><em>var mytable = new HtmlTable($(&#8216;tableid&#8217;));<br />
mytable.enableSort();</em></strong></p>
</blockquote>
<p>This happens because the HtmlTable.Select conflicts with HtmlTable.Sort, ie. HtmlTable.Select overrides HtmlTable.Sort. So when you download mootools more deselect HtmlTable.Select</p>
<h2 style="margin-bottom: 3px; padding-bottom: 0px; font-size: 14px;"><span style="text-decoration: underline;">HtmlTable.Sort not working when firebug closed</span></h2>
<p>Now you might have got things working, but if you try closing the firebug the table sort won&#8217;t work.<br />
To fix this:<br />
Open your &#8220;mootools-1.2.4.4-more.js&#8221; and search the below string and comment it.</p>
<blockquote><p><strong><em>if(c.console&amp;&amp;console.log){try{console.log.apply(console,arguments);}catch(d){console.log(Array.slice(arguments));<br />
}}else{Log.logged.push(arguments);}return this;</em></strong></p>
</blockquote>
<p>The string which you comment checks the existance of console which is not required. Now you will have a proper working HtmlTable.Sort</p>
<h2 style="margin-bottom: 3px; padding-bottom: 0px; font-size: 14px;"><span style="text-decoration: underline;">Download</span></h2>
<p>You can mootools-more fixed file <a title="HtmlTable.Sort Fixed File" href="http://anasabdullatheef.com/downloads/mootools-1.2.4.4-more.zip" target="_blank">here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://anasabdullatheef.com/motools/mootools-htmltable-sort-problem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Keep your brain from rotting</title>
		<link>http://anasabdullatheef.com/miscellaneous/keep-your-brain-from-rotting/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=keep-your-brain-from-rotting</link>
		<comments>http://anasabdullatheef.com/miscellaneous/keep-your-brain-from-rotting/#comments</comments>
		<pubDate>Sun, 30 May 2010 20:26:46 +0000</pubDate>
		<dc:creator>Anas</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[addictive game]]></category>
		<category><![CDATA[creative solutions]]></category>
		<category><![CDATA[Daydream]]></category>
		<category><![CDATA[music course]]></category>
		<category><![CDATA[new language]]></category>
		<category><![CDATA[rejuvenation]]></category>
		<category><![CDATA[Set Game]]></category>

		<guid isPermaLink="false">http://anasabdullatheef.com/?p=66</guid>
		<description><![CDATA[Like your body your mind too needs rejuvenation. These 4 simple ways will help your brain stay fresh and energetic. Try this out and post your comments. The Set Game Start your morning with something that&#8217;ll flex your little grey cells without taking as much time as full crossword. The Set Game in a new, [...]]]></description>
			<content:encoded><![CDATA[<p>Like your body your mind too needs rejuvenation. These 4 simple ways will help your brain stay fresh and energetic. Try this out and post your comments.</p>
<p><span style="text-decoration: underline;"><strong>The Set Game</strong></span></p>
<p>Start your morning with something that&#8217;ll flex your little grey cells without taking as much time as full crossword. The Set Game in a new, insanely addictive game that test your ability to identify shapes and patterns. <a href="http://setgame.com/set/puzzle_frame.htm" target="_blank">#SetGameHome</a><br />
<a href="http://setgame.com/images/tutorial/flash_version/set_flash_tutorial.htm">#SetGameTutorial</a>.</p>
<p><span style="text-decoration: underline;"><strong>Daydream!</strong></span></p>
<p>According to researchers at Goldsmiths, University of London, the unfocused mind is more likely to come up with creative solutions to problems. So if it seems as if you&#8217;re banging your head against a brick wall, take a few minutes off and think of fluffy clouds and open fields, and maybe the solution will jump out at you.</p>
<p><span style="text-decoration: underline;"><strong>Play a tune</strong></span></p>
<p>If you want to try your hand on soothing savage beasts, pick up an instrument and go online for some free music course. Start with the basics of music theory at <a href="http://musictheory.net">MusicTheory.net</a>, and follow it up with the basics of guitar at <a href="http://www.cyberfret.com">Cyberfret</a>, or piano at <a href="http://gopiano.com/">GoPiano.com</a>.</p>
<p><span style="text-decoration: underline;"><strong>Learn new language</strong></span></p>
<p>Learning a new language is a great way to keep your brain in shape. <a href="http://www.livemocha.com/">LiveMocha</a> not only teaches you a new language, it lets you test your new-found skills on a native speaker.</p>
]]></content:encoded>
			<wfw:commentRss>http://anasabdullatheef.com/miscellaneous/keep-your-brain-from-rotting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apps for Nokia N900</title>
		<link>http://anasabdullatheef.com/mobile/apps-for-nokia-n900/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=apps-for-nokia-n900</link>
		<comments>http://anasabdullatheef.com/mobile/apps-for-nokia-n900/#comments</comments>
		<pubDate>Thu, 22 Apr 2010 21:54:32 +0000</pubDate>
		<dc:creator>Anas</dc:creator>
				<category><![CDATA[Mobile]]></category>
		<category><![CDATA[slideshow]]></category>
		<category><![CDATA[Maemo]]></category>
		<category><![CDATA[Mobile Apps]]></category>
		<category><![CDATA[mobile client]]></category>
		<category><![CDATA[N900]]></category>
		<category><![CDATA[nokia n900]]></category>
		<category><![CDATA[super mario]]></category>

		<guid isPermaLink="false">http://anasabdullatheef.com/uncategorized/apps-for-nokia-n900/</guid>
		<description><![CDATA[MaStory This is a fully featured blogging client supporting WordPress, Blogger, Drupal and Live Journal. You can add HTML, upload images, create categories, assign tags. You can also change the publishing options. This app gives you all the features you have in the WordPress admin panel. This is the best wordpress mobile client I have [...]]]></description>
			<content:encoded><![CDATA[<p><span style="font-weight: bold;">MaStory</span><br />
This is a fully featured blogging client supporting WordPress, Blogger, Drupal and Live Journal. You can add HTML, upload images, create categories, assign tags. You can also change the publishing options. This app gives you all the features you have in the WordPress admin panel. This is the best wordpress mobile client I have ever come across.</p>
<p><span style="font-weight: bold;">Mauku</span><br />
This twitter client available for Maemo is not the best app. It&#8217;s a beta release and lot more to go. But as of now I couldn&#8217;t find any other app as good as this.</p>
<p><span style="font-weight: bold;">Supper Tux</span><br />
It&#8217;s the tux version of the legendary Super Mario. The QWERTY keyboard of N900 gives a very good gaming experience. &#8220;Make sure you don&#8217;t hit on the next one sitting to you while jumping the pit.&#8221;</p>
<p><span style="font-weight: bold;">Rootsh</span><br />
Having root access is an important step for users interested in modifying things &#8220;under the covers&#8221; of their tablets; without it, you won&#8217;t have the necessary permissions to make those modifications. Root access is disabled by default on new tablets. Thankfully, the steps to enable root access are simple.<br />
Download <a href="http://maemo.org/downloads/product/Maemo5/rootsh/">rootsh<br />
</a>Enable root access, via the &#8220;sudo gainroot&#8221; command.</p>
<p><span style="font-weight: bold;">FM Radio</span><br />
Now tune in to your favorite radio stations with this classic analog FM tuner. The headset of your N900 will serve as an antenna.</p>
]]></content:encoded>
			<wfw:commentRss>http://anasabdullatheef.com/mobile/apps-for-nokia-n900/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Android and Eclipse integration in Windows</title>
		<link>http://anasabdullatheef.com/mobile/android-and-eclipse-integration-in-windows/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=android-and-eclipse-integration-in-windows</link>
		<comments>http://anasabdullatheef.com/mobile/android-and-eclipse-integration-in-windows/#comments</comments>
		<pubDate>Tue, 26 Jan 2010 17:02:30 +0000</pubDate>
		<dc:creator>Anas</dc:creator>
				<category><![CDATA[Mobile]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[eclipse ide]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[SDK]]></category>

		<guid isPermaLink="false">http://anasabdullatheef.com/?p=57</guid>
		<description><![CDATA[In this session we will learn to integrate Eclipse and Android SDK. Go to http://www.eclipse.org/downloads/ and select &#8220;Windows 32bit&#8221; under the category Eclipse IDE for Java EE Developers. Download the Eclipse IDE and extract it into [C: Drive]. Now let&#8217;s list out the steps, so that it will be easier for you to follow. Open the [...]]]></description>
			<content:encoded><![CDATA[<p>In this session we will learn to integrate Eclipse and Android SDK. Go to <a href="http://www.eclipse.org/downloads/" target="_blank">http://www.eclipse.org/downloads/</a> and select &#8220;Windows 32bit&#8221; under the category <strong>Eclipse IDE for Java EE Developers</strong>. Download the Eclipse IDE and extract it into [C: Drive]. Now let&#8217;s list out the steps, so that it will be easier for you to follow.</p>
<ol>
<li>Open the Eclipse IDE</li>
<li>Select <strong>Window &gt; Preferences</strong>. <strong><br />
</strong></li>
<li>Click <strong>Android</strong> from the left bar, and select the location of your <strong>Android SDK</strong>.<br />
<em>if you are following my previous tutorial, you SDK path will be &#8220;C:\android-sdk-windows&#8221;</em></li>
<li>Now Click <strong>Apply</strong> and then <strong>OK</strong>.<strong><br />
</strong></li>
</ol>
<p><em>In next section we will develop our very first application for Google Android.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://anasabdullatheef.com/mobile/android-and-eclipse-integration-in-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting up Android in Windows</title>
		<link>http://anasabdullatheef.com/mobile/setting-up-android-in-windows/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=setting-up-android-in-windows</link>
		<comments>http://anasabdullatheef.com/mobile/setting-up-android-in-windows/#comments</comments>
		<pubDate>Mon, 25 Jan 2010 17:02:33 +0000</pubDate>
		<dc:creator>Anas</dc:creator>
				<category><![CDATA[Mobile]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[SDK]]></category>

		<guid isPermaLink="false">http://anasabdullatheef.com/mobile/setting-up-android-in-windows/</guid>
		<description><![CDATA[I&#8217;m in a dilemma, which phone to choose iPhone or Nexus One. I&#8217;m still confused, but I&#8217;m sure &#8220;Nexus One&#8221; is going to be everywhere. iphone will be forced to submit their Legendary status very soon, to give way for Android mobiles. So I decided to setup android and start developing apps for it. Setting [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m in a dilemma, which phone to choose iPhone or Nexus One. I&#8217;m still confused, but I&#8217;m sure &#8220;Nexus One&#8221; is going to be everywhere. iphone will be forced to submit their Legendary status very soon, to give way for Android mobiles. So I decided to setup android and start developing apps for it.</p>
<p>Setting up android development environment is quite easy. Follow these simple steps to setup your ADE (Android Development Environment).</p>
<ol>
<li>Click <a href="http://developer.android.com/intl/de/sdk/index.html"><strong>here</strong></a> to download the Android SDK.</li>
<li>Extract the zip file to <strong>[C: Drive]</strong>. Now you have your SDK in the path <strong>&#8220;C:\ android-sdk-windows&#8221;</strong></li>
<li>Before running the setup file, make sure you have the latest JRE (Java Runtime Environment). Download from <a href="http://www.java.com/en/download/manual.jsp"><strong>here</strong></a>. Select the fist installer under Windows category. Follow the installation wizard and complete the JRE setup.</li>
<li>Press <strong>[WINDOW KEY]+[R]</strong>. Then type in <strong>&#8220;cmd&#8221;</strong>.</li>
<li>
<div><strong>TYPE the following commands</strong></div>
<ol>
<li>CD\ <span style="font-size: 9pt;"><em>[HIT ENTER]</em></span></li>
<li>CD C:\ android-sdk-windows <span style="font-size: 9pt;"><em>[HIT ENTER]</em></span></li>
<li>CD tools <span style="font-size: 9pt;"><em>[HIT ENTER]</em></span></li>
<li>android.bat <span style="font-size: 9pt;"><em>[HIT ENTER]</em></span></li>
</ol>
</li>
<li>This will start the android AVD Manager. Go to Settings and select the checkbox <strong>&#8220;<em>Force https://… sources to be fetched using…</em>&#8220;</strong></li>
<li>Click <strong>&#8220;Save and Apply&#8221;</strong>.</li>
<li>Exit the Command Prompt</li>
<li>Open <strong>&#8220;C:\ android-sdk-windows&#8221;</strong> and run <strong>&#8220;SDK Setup.exe&#8221;</strong></li>
<li>Select the <strong>&#8220;Apply All&#8221;</strong> and Click <strong>&#8220;Install Selected&#8221;</strong>.</li>
</ol>
<p><em>The set up process will take quite long depending upon your Internet speed. Read about <a title="Android and Eclipse integration in Windows" href="http://anasabdullatheef.com/mobile/setting-up-android-in-windows/" target="_self">integrating Eclipse and Android</a></em><em>. &#8220;Please post your valuable comments to help me improve my blog.&#8221;</em></p>
]]></content:encoded>
			<wfw:commentRss>http://anasabdullatheef.com/mobile/setting-up-android-in-windows/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

