<?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>Satish Gandham</title>
	<atom:link href="http://SatishGandham.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://SatishGandham.com</link>
	<description></description>
	<lastBuildDate>Sun, 22 Apr 2012 04:58:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Error whil creating super user in django1.4 on MAC</title>
		<link>http://SatishGandham.com/2012/04/error-whil-creating-super-user-in-django1-4-on-mac/</link>
		<comments>http://SatishGandham.com/2012/04/error-whil-creating-super-user-in-django1-4-on-mac/#comments</comments>
		<pubDate>Sun, 22 Apr 2012 04:58:10 +0000</pubDate>
		<dc:creator>Satish Gandham</dc:creator>
				<category><![CDATA[Django]]></category>
		<category><![CDATA[PYTHON]]></category>
		<category><![CDATA[django admin]]></category>
		<category><![CDATA[django1.4 admin error]]></category>

		<guid isPermaLink="false">http://SatishGandham.com/?p=77</guid>
		<description><![CDATA[I got the following error while trying to create a super user from shell for django1.4. File "/Library/Python/2.7/site-packages/django/contrib/auth/management/__init__.py", line 85, in get_system_username     return getpass.getuser().decode(locale.getdefaultlocale()[1]) TypeError: decode() argument 1 must be string, not None This problem was rectified by running &#8230; <a href="http://SatishGandham.com/2012/04/error-whil-creating-super-user-in-django1-4-on-mac/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I got the following error while trying to create a super user from shell for <strong>django1.4</strong>.</p>
<pre>File "/Library/Python/2.7/site-packages/django/contrib/auth/management/__init__.py", line 85, in get_system_username
    return getpass.getuser().decode(locale.getdefaultlocale()[1])
TypeError: decode() argument 1 must be string, not None</pre>
<p>This problem was rectified by running this command in terminal before adding the user<br />
<code>export LANG="en_US.UTF-8"</code></p>
<p>I&#8217;m guessing this character encoding problem while running <strong>syncdb</strong> is the reason for the following error while accessing admin section of django1.4<br />
<code></code></p>
<pre>DoesNotExist at /admin/
Site matching query does not exist.
Request Method: GET
Request URL: http://127.0.0.1:8000/admin/
Django Version: 1.4
Exception Type: DoesNotExist
Exception Value:
Site matching query does not exist.
Exception Location: /Library/Python/2.7/site-
packages/Django-1.4-py2.7.egg/django/db/models/query.py in get, line
366
Python Executable: /usr/bin/python
Python Version: 2.7.1
Python Path:
['/Users/mohammedelsebaey/a/mysite1',
'/Library/Python/2.7/site-packages/Django-1.4-py2.7.egg',
'/System/Library/Frameworks/Python.framework/Versions/2.7/lib/
python27.zip',
'/System/Library/Frameworks/Python.framework/Versions/2.7/lib/
python2.7',
'/System/Library/Frameworks/Python.framework/Versions/2.7/lib/
python2.7
/plat-darwin',
'/System/Library/Frameworks/Python.framework/Versions/2.7/lib/
python2.7
/plat-mac',
'/System/Library/Frameworks/Python.framework/Versions/2.7/lib/
python2.7
/plat-mac/lib-scriptpackages',
'/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/
python',
'/System/Library/Frameworks/Python.framework/Versions/2.7/lib/
python2.7
/lib-tk',
'/System/Library/Frameworks/Python.framework/Versions/2.7/lib/
python2.7
/lib-old',
'/System/Library/Frameworks/Python.framework/Versions/2.7/lib/
python2.7
/lib-dynload',
'/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/
python/PyObjC',
'/Library/Python/2.7/site-packages']</pre>
<p>If i&#8217;m wrong you can solve the above problem by running this code i django shell<br />
<code></code></p>
<pre>from django.contrib.sites.models import Site
Site.objects.create(pk=1)</pre>
]]></content:encoded>
			<wfw:commentRss>http://SatishGandham.com/2012/04/error-whil-creating-super-user-in-django1-4-on-mac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to start stop apache on MAC OSX</title>
		<link>http://SatishGandham.com/2012/04/how-to-start-stop-apache-on-mac-osx/</link>
		<comments>http://SatishGandham.com/2012/04/how-to-start-stop-apache-on-mac-osx/#comments</comments>
		<pubDate>Fri, 13 Apr 2012 17:29:55 +0000</pubDate>
		<dc:creator>Satish Gandham</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[httpd]]></category>

		<guid isPermaLink="false">http://SatishGandham.com/?p=64</guid>
		<description><![CDATA[start Apache apachectl start Stop Apache apachectl stop Restart Apache apachectl restart If the above commands don&#8217;t work, try these /etc/init.d/httpd start /etc/init.d/httpd stop /etc/init.d/httpd restart You can also start the web server from the system preferences. Open system preferences, &#8230; <a href="http://SatishGandham.com/2012/04/how-to-start-stop-apache-on-mac-osx/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>start Apache<br />
<code>apachectl start</code><br />
Stop Apache<br />
<code>apachectl stop</code><br />
Restart Apache<br />
<code>apachectl restart</code></p>
<p>If the above commands don&#8217;t work, try these<br />
<code><br />
/etc/init.d/httpd start<br />
/etc/init.d/httpd stop<br />
/etc/init.d/httpd restart<br />
</code><br />
You can also start the web server from the system preferences. Open system preferences, go to sharing and then enable web sharing<br />
<div id="attachment_69" class="wp-caption alignnone" style="width: 679px"><a href="http://SatishGandham.com/?attachment_id=69" rel="attachment wp-att-69"><img src="http://SatishGandham.com/blog/wp-content/uploads/2012/04/starting-webserver-in-mac-osx.png" alt="starting webserver in mac osx" title="starting webserver in mac osx" width="669" height="551" class="size-full wp-image-69" /></a><p class="wp-caption-text">starting webserver in mac osx</p></div> </p>
]]></content:encoded>
			<wfw:commentRss>http://SatishGandham.com/2012/04/how-to-start-stop-apache-on-mac-osx/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Where is httpd.conf file in Mac OSX Lion</title>
		<link>http://SatishGandham.com/2012/04/where-is-httpd-conf-file-in-mac-osx-lion/</link>
		<comments>http://SatishGandham.com/2012/04/where-is-httpd-conf-file-in-mac-osx-lion/#comments</comments>
		<pubDate>Fri, 13 Apr 2012 17:24:05 +0000</pubDate>
		<dc:creator>Satish Gandham</dc:creator>
				<category><![CDATA[OSX]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[httpd.conf]]></category>
		<category><![CDATA[osx]]></category>

		<guid isPermaLink="false">http://SatishGandham.com/?p=59</guid>
		<description><![CDATA[On mac httpd.conf file is located in the directory /etc/apache2/. You can access it through terminal if you want to navigate to it through finder, on finder toolbar goto go->go to folder and type in /etc/apache2]]></description>
			<content:encoded><![CDATA[<p>On mac httpd.conf file is located in the directory <code>/etc/apache2/</code>. You can access it through terminal if you want to navigate to it through finder, on finder toolbar goto go->go to folder and type in <code>/etc/apache2</code><br />
<div id="attachment_60" class="wp-caption alignnone" style="width: 588px"><a href="http://SatishGandham.com/?attachment_id=60" rel="attachment wp-att-60"><img src="http://SatishGandham.com/blog/wp-content/uploads/2012/04/Open-hidden-folders-in-mac-osx.png" alt="Open hidden folders in mac osx" title="Open hidden folders in mac osx" width="578" height="397" class="size-full wp-image-60" /></a><p class="wp-caption-text">Navigate to hidden folders in MAC</p></div><br />
<div id="attachment_61" class="wp-caption alignnone" style="width: 429px"><a href="http://SatishGandham.com/?attachment_id=61" rel="attachment wp-att-61"><img src="http://SatishGandham.com/blog/wp-content/uploads/2012/04/navigating-to-folders-in-mac.png" alt="Navigating to system files on MAC OSX" title="navigating to folders in mac" width="419" height="174" class="size-full wp-image-61" /></a><p class="wp-caption-text">Navigating to system files on MAC OSX</p></div></p>
]]></content:encoded>
			<wfw:commentRss>http://SatishGandham.com/2012/04/where-is-httpd-conf-file-in-mac-osx-lion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Make command not found in Mac OSX</title>
		<link>http://SatishGandham.com/2012/04/make-command-not-found-in-mac-osx/</link>
		<comments>http://SatishGandham.com/2012/04/make-command-not-found-in-mac-osx/#comments</comments>
		<pubDate>Fri, 13 Apr 2012 16:46:03 +0000</pubDate>
		<dc:creator>Satish Gandham</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[OSX]]></category>
		<category><![CDATA[Make command]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[terminal]]></category>
		<category><![CDATA[xcode]]></category>

		<guid isPermaLink="false">http://SatishGandham.com/?p=53</guid>
		<description><![CDATA[If you get a -bash: make: command not found error while trying to compile from source, you have to install xcode and then in xcode goto preferences->downloads and install xcode developer tools Download Xcode I&#8217;m not sure if you can &#8230; <a href="http://SatishGandham.com/2012/04/make-command-not-found-in-mac-osx/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>If you get a <code>-bash: make: command not found</code> error while trying to compile from source, you have to install xcode and then in xcode goto preferences->downloads and install xcode developer tools<br />
<div id="attachment_54" class="wp-caption aligncenter" style="width: 858px"><a href="http://SatishGandham.com/?attachment_id=54" rel="attachment wp-att-54"><img src="http://SatishGandham.com/blog/wp-content/uploads/2012/04/installing-command-line-tools-on-MAC-OSX.png" alt="installing command line tools on MAC OSX" title="installing command line tools on MAC OSX" width="848" height="626" class="size-full wp-image-54" /></a><p class="wp-caption-text">installing command line tools on MAC OSX</p></div><br />
<a href="https://developer.apple.com/xcode/" title="Download Xcode"><br />
Download Xcode</a><br />
I&#8217;m not sure if you can install command lines without xcode. I can not test as I already have Xcode on my system you can download command line tools <a href="https://developer.apple.com/downloads/index.action?name=for%20Xcode%20-#">here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://SatishGandham.com/2012/04/make-command-not-found-in-mac-osx/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>When mobile browsers don&#8217;t respect CSS3 media queries</title>
		<link>http://SatishGandham.com/2012/02/when-browsers-dont-respect-css3-media-queries/</link>
		<comments>http://SatishGandham.com/2012/02/when-browsers-dont-respect-css3-media-queries/#comments</comments>
		<pubDate>Sat, 04 Feb 2012 17:47:06 +0000</pubDate>
		<dc:creator>Satish Gandham</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[device width]]></category>
		<category><![CDATA[media queries]]></category>
		<category><![CDATA[responsive design]]></category>

		<guid isPermaLink="false">http://SatishGandham.com/?p=40</guid>
		<description><![CDATA[If mobile browsers are not respecting your media queries and showing desktop instead of mobile site, add this meta tag before linking the style sheet. &#60;meta name="viewport" content="width=device-width"&#62;]]></description>
			<content:encoded><![CDATA[<p>If mobile browsers are not respecting your media queries and showing desktop instead of mobile site, add this meta tag before linking the style sheet.</p>
<p><code>&lt;meta name="viewport" content="width=device-width"&gt;</code></p>
]]></content:encoded>
			<wfw:commentRss>http://SatishGandham.com/2012/02/when-browsers-dont-respect-css3-media-queries/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title></title>
		<link>http://SatishGandham.com/2011/05/32/</link>
		<comments>http://SatishGandham.com/2011/05/32/#comments</comments>
		<pubDate>Sat, 07 May 2011 15:01:54 +0000</pubDate>
		<dc:creator>Satish Gandham</dc:creator>
				<category><![CDATA[Quotes]]></category>

		<guid isPermaLink="false">http://SatishGandham.com/?p=32</guid>
		<description><![CDATA[A thing is not high if one can reach it; it is not great if one can reason about it; it is not deep if one can see the bottom of it. -Fountain Head]]></description>
			<content:encoded><![CDATA[<p>A thing is not high if one can reach it; it is not great if one can reason about it; it is not deep if one can see the bottom of it.</p>
<p style="text-align: right;">-Fountain Head</p>
]]></content:encoded>
			<wfw:commentRss>http://SatishGandham.com/2011/05/32/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Trying cakePHP, lets see how it goes.</title>
		<link>http://SatishGandham.com/2011/04/trying-cakephp-lets-see-how-it-goes/</link>
		<comments>http://SatishGandham.com/2011/04/trying-cakephp-lets-see-how-it-goes/#comments</comments>
		<pubDate>Fri, 15 Apr 2011 06:52:25 +0000</pubDate>
		<dc:creator>Satish Gandham</dc:creator>
				<category><![CDATA[CakePHP]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Ad Managment]]></category>
		<category><![CDATA[cakePHP]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[PHP frameworks]]></category>

		<guid isPermaLink="false">http://SatishGandham.com/?p=29</guid>
		<description><![CDATA[My growing list of direct AD sales was becoming hard to manage, dealing with direct AD sales was taking more time than it should actually take. It&#8217;s not streamlined. I lost AD revenue several times because I was too lazy &#8230; <a href="http://SatishGandham.com/2011/04/trying-cakephp-lets-see-how-it-goes/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>My growing list of direct AD sales was becoming hard to manage, dealing with direct AD sales was taking more time than it should actually take. It&#8217;s not streamlined. I lost AD revenue several times because I was too lazy to mail the advertisers about the renewal of their adspace.</p>
<p>I always wanted to automate the AD sales process, but I was busy with something or the other. Now that I got some free time to explore new stuff, I decided to take up this project.</p>
<p><strong>Goals of the project</strong></p>
<ul>
<li>Maintain a list of advertisers and the AD space they bought.</li>
<li>Automatically send reminders to advertisers about renewals.</li>
<li>If they fail to renew, notify me, so that I can take down the AD.</li>
<li>A web interface where I can add details about the newly bought ads to the DB and make changes to previously bought ADS.</li>
<li>*Update the DB automatically when a payment is made through PayPal.</li>
<li>*Setup a AD server, which will let me control AD&#8217;s on all the sites without from a single location.</li>
</ul>
<p>I&#8217;m going to implement this project using <a href="http://cakephp.org/">cakePHP</a>, I hope cakePHP is the right choice.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://SatishGandham.com/2011/04/trying-cakephp-lets-see-how-it-goes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Subtracting two dimensional arrays in PHP</title>
		<link>http://SatishGandham.com/2011/03/subtracting-two-dimensional-arrays-in-php/</link>
		<comments>http://SatishGandham.com/2011/03/subtracting-two-dimensional-arrays-in-php/#comments</comments>
		<pubDate>Wed, 23 Mar 2011 20:04:10 +0000</pubDate>
		<dc:creator>Satish Gandham</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[array difference]]></category>
		<category><![CDATA[array_diff]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://SatishGandham.com/?p=16</guid>
		<description><![CDATA[In the development a WordPress plugin I had to subtract two dimensional arrays. I tried array_diff() function, unfortunately it doesn&#8217;t seem to work for two dimensional arrays. Even if it worked, it wasn&#8217;t exactly the functionality I wanted. Be warned, &#8230; <a href="http://SatishGandham.com/2011/03/subtracting-two-dimensional-arrays-in-php/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>In the development a WordPress plugin I had to subtract two dimensional arrays. I tried <a href="http://php.net/manual/en/function.array-diff.php" target="_blank">array_diff()</a> function, unfortunately it doesn&#8217;t seem to work for two dimensional arrays. Even if it worked, it wasn&#8217;t exactly the functionality I wanted.</p>
<p><span style="color: #ff0000;">Be warned, this isn&#8217;t exactly a alternate for array_diff().<span style="color: #000000;"> For difference of two dimensional arrays you may try <a href="http://www.php.net/manual/en/function.array-diff.php#98680" target="_blank">this</a> (I dint try it) </span><br />
</span></p>
<p>I had these two arrays, which I had to subtract.</p>
<pre class="brush: php; title: ;">
Array (
 [thumbnail] =&gt; Array ( [width] =&gt; 150 [height] =&gt; 150 [crop] =&gt; 1 )
 [medium] =&gt; Array ( [width] =&gt; 300 [height] =&gt; 300 [crop] =&gt; )
 [large] =&gt; Array ( [width] =&gt; 1024 [height] =&gt; 1024 [crop] =&gt; )
 [full-post-thumb] =&gt; Array ( [width] =&gt; 576 [height] =&gt; 150 [crop] =&gt; 1 )
 [popular-posts-home] =&gt; Array ( [width] =&gt; 210 [height] =&gt; 90 [crop] =&gt; 1 )
 [popular-posts-widget] =&gt; Array ( [width] =&gt; 32 [height] =&gt; 32 [crop] =&gt; 1 )
 [mag1] =&gt; Array ( [width] =&gt; 170 [height] =&gt; 0 [crop] =&gt; 1 )
 [mag2] =&gt; Array ( [width] =&gt; 284 [height] =&gt; 0 [crop] =&gt; 1 )
 [blog-thumb] =&gt; Array ( [width] =&gt; 135 [height] =&gt; 90 [crop] =&gt; 1 )
 [slider1] =&gt; Array ( [width] =&gt; 250 [height] =&gt; 130 [crop] =&gt; 1 )
 [slider2] =&gt; Array ( [width] =&gt; 576 [height] =&gt; 280 [crop] =&gt; 1 )
)

Array (
 [full-post-thumb] =&gt; Array ( [width] =&gt; 576 [height] =&gt; 150 [crop] =&gt; 1 )
 [popular-posts-home] =&gt; Array ( [width] =&gt; 210 [height] =&gt; 90 [crop] =&gt; 1 )
 [popular-posts-widget] =&gt; Array ( [width] =&gt; 32 [height] =&gt; 32 [crop] =&gt; 1 )
 [mag1] =&gt; Array ( [width] =&gt; 170 [height] =&gt; 0 [crop] =&gt; 1 )
 [mag2] =&gt; Array ( [width] =&gt; 284 [height] =&gt; 0 [crop] =&gt; 1 )
 [blog-thumb] =&gt; Array ( [width] =&gt; 135 [height] =&gt; 90 [crop] =&gt; 1 )
 [slider1] =&gt; Array ( [width] =&gt; 250 [height] =&gt; 130 [crop] =&gt; 1 )
 [slider2] =&gt; Array ( [width] =&gt; 576 [height] =&gt; 280 [crop] =&gt; 1 )
)

The result I wanted was this, but array_diff() returned null.

Array (
 [thumbnail] =&gt; Array ( [width] =&gt; 150 [height] =&gt; 150 [crop] =&gt; 1 )
 [medium] =&gt; Array ( [width] =&gt; 300 [height] =&gt; 300 [crop] =&gt; )
 [large] =&gt; Array ( [width] =&gt; 1024 [height] =&gt; 1024 [crop] =&gt; )
)
</pre>
<p>So, I used <a href="http://php.net/manual/en/function.array-keys.php">array_keys()</a> function to get the keys of the second array, and ran a foreach loop on the value returned by array_keys, and unset the elements of first array</p>
<pre class="brush: php; title: ;">

$key_names= array_keys ( $array2 );
foreach( $key_names as $key ){
unset($array2[$key]);
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://SatishGandham.com/2011/03/subtracting-two-dimensional-arrays-in-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Compiling a list of resources and preaparing a plan for iOS app development</title>
		<link>http://SatishGandham.com/2010/12/compiling-a-list-of-resources-and-preaparing-a-plan-for-ios-app-development/</link>
		<comments>http://SatishGandham.com/2010/12/compiling-a-list-of-resources-and-preaparing-a-plan-for-ios-app-development/#comments</comments>
		<pubDate>Sat, 18 Dec 2010 13:40:13 +0000</pubDate>
		<dc:creator>Satish Gandham</dc:creator>
				<category><![CDATA[iOS Development]]></category>
		<category><![CDATA[M-1812241]]></category>

		<guid isPermaLink="false">http://satishgandham.com/blog/?p=6</guid>
		<description><![CDATA[I tried web design, blogging, WordPress theme development, played with adsesne and lot of other stuff, every time half way through what I was doing I found some blog posts saying &#8220;Things you should know before doing  xxxxxx&#8221;, &#8220;common mistakes &#8230; <a href="http://SatishGandham.com/2010/12/compiling-a-list-of-resources-and-preaparing-a-plan-for-ios-app-development/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I tried web design, blogging, WordPress theme development, played with adsesne and lot of other stuff, every time half way through what I was doing I found some blog posts saying &#8220;Things you should know before doing  xxxxxx&#8221;, &#8220;common mistakes done by firs timers doing xxxx&#8221; . I always wished I found those posts before i did the mistakes said in those posts or before starting what I was doing.</p>
<p>This time I don&#8217;t want to say that to myself again. So, before I jump into the development, I&#8217;m gonna have a plan for how I&#8217;m gonna do it and do some research before I start doing anything.</p>
<p>Today I spent some time compiling a list of resources to get started with, undoubtedly <a href="http://developer.apple.com/devcenter/ios/index.action" target="_blank">Apple iOS DEV center</a> seems to be the best place to get started, here are few other useful links</p>
<h3>Getting Started</h3>
<ul>
<li><a href="http://iphonedevelopment.blogspot.com/2008/03/getting-started-on-iphone-primer-for.html" target="_blank">Getting  Started on the iPhone: A Primer for Non-Mac  Development Shops</a></li>
<li><a href="http://mashable.com/2010/11/07/how-to-mobile-app-development/" target="_blank">HOW TO: Start Developing for iOS, Android or Windows Phone 7</a></li>
<li><a title="Permanent Link to How to Get Started with iPhone  Dev" rel="bookmark" href="http://www.webdesignerdepot.com/2009/05/how-to-get-started-with-iphone-dev/">How to Get Started with iPhone Dev</a></li>
</ul>
<h3>Resources</h3>
<ul>
<li><a href="http://developer.apple.com/devcenter/ios/index.action" target="_blank">Apple iOS  DEV center</a></li>
<li><a href="http://tech.gaeatimes.com/index.php/archive/top-7-iphone-programming-books-to-help-you-make-the-best-iphone-app/" target="_blank">Top 8 iPhone Programming Books to Help You  Make the Best iPhone App</a></li>
<li><a href="http://www.iphonewebdev.com/" target="_blank">iPhoneWebDev (Developers Helping Developers)</a></li>
</ul>
<p>After going through the above resources, One thing common in all of them is &#8220;Learn Objective C&#8221;. I&#8217;m onto it, will keep you posted on how it goes.</p>
<div></div>
]]></content:encoded>
			<wfw:commentRss>http://SatishGandham.com/2010/12/compiling-a-list-of-resources-and-preaparing-a-plan-for-ios-app-development/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mission 1812241</title>
		<link>http://SatishGandham.com/2010/12/hello-world/</link>
		<comments>http://SatishGandham.com/2010/12/hello-world/#comments</comments>
		<pubDate>Fri, 17 Dec 2010 21:46:46 +0000</pubDate>
		<dc:creator>Satish Gandham</dc:creator>
				<category><![CDATA[M-1812241]]></category>

		<guid isPermaLink="false">http://satishgandham.com/blog/?p=1</guid>
		<description><![CDATA[The last five days have been pretty boring for me, been sleeping all day. No major accomplishments and work done. And, today is a very bad one for me, saw her online. I know what she did and I know &#8230; <a href="http://SatishGandham.com/2010/12/hello-world/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The last five days have been pretty boring for me, been sleeping all day. No major accomplishments and work done. And, today is a very bad one for me, saw her online. I know what she did and I know she doesn&#8217;t deserve it,but still the site and thought of her disturbs me. I don&#8217;t know what this feeling is, but i want to get over it.</p>
<p>This mission is an attempt to get over her, the main objectives of this mission are</p>
<ul>
<li>To develop an iOS application</li>
<li>Prepare for NID entrance.</li>
<li>Redesign of member profile pages on TechBU</li>
<li>Improve my vocabulary.</li>
</ul>
<p>Deadline for this misison is April 3rd, that is 105 days from now. I will keep you posted on the progress and the resources i stumble across during this mission.</p>
]]></content:encoded>
			<wfw:commentRss>http://SatishGandham.com/2010/12/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

