<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Programming in almost language</title>
	<atom:link href="https://praveensunsetpoint.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>https://praveensunsetpoint.wordpress.com</link>
	<description>This is the site where you may share your knowledge and experience to eachother..</description>
	<lastBuildDate>Tue, 01 Feb 2011 15:11:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<site xmlns="com-wordpress:feed-additions:1">2806090</site><cloud domain='praveensunsetpoint.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>https://s0.wp.com/i/buttonw-com.png</url>
		<title>Programming in almost language</title>
		<link>https://praveensunsetpoint.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="https://praveensunsetpoint.wordpress.com/osd.xml" title="Programming in almost language" />
	<atom:link rel='hub' href='https://praveensunsetpoint.wordpress.com/?pushpress=hub'/>
	<item>
		<title>UIColor with String</title>
		<link>https://praveensunsetpoint.wordpress.com/2011/02/01/uicolor-with-string/</link>
					<comments>https://praveensunsetpoint.wordpress.com/2011/02/01/uicolor-with-string/#respond</comments>
		
		<dc:creator><![CDATA[Praveen Kumar]]></dc:creator>
		<pubDate>Tue, 01 Feb 2011 15:11:52 +0000</pubDate>
				<category><![CDATA[iPhone]]></category>
		<category><![CDATA[UIButton]]></category>
		<category><![CDATA[UIColor]]></category>
		<guid isPermaLink="false">http://praveensunsetpoint.wordpress.com/?p=255</guid>

					<description><![CDATA[Here, we have a variable called buttonColor which may have any string with color name, for instance &#8220;blue&#8221;,&#8221;black&#8221;,&#8221;red&#8221; and we are going to set the UIButton title color based on buttonColor given SEL colorSel = NSSelectorFromString([NSString stringWithFormat:@"%@Color", buttonColor]); UIColor* tColor = nil; if ([UIColor respondsToSelector:colorSel]){ tColor  = [UIColor performSelector:colorSel]; } else { tColor = whiteColor; [&#8230;]]]></description>
		
					<wfw:commentRss>https://praveensunsetpoint.wordpress.com/2011/02/01/uicolor-with-string/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">255</post-id>
		<media:content url="https://1.gravatar.com/avatar/a740d0a03335c7aca6815f28e85f3e42476ae3f6078ebfcf2d99bc2934f27ad3?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">Sallu</media:title>
		</media:content>
	</item>
		<item>
		<title>Disable the zoom effect on UIWebView</title>
		<link>https://praveensunsetpoint.wordpress.com/2010/12/11/disable-the-zoom-effect-on-uiwebview/</link>
					<comments>https://praveensunsetpoint.wordpress.com/2010/12/11/disable-the-zoom-effect-on-uiwebview/#respond</comments>
		
		<dc:creator><![CDATA[Praveen Kumar]]></dc:creator>
		<pubDate>Sat, 11 Dec 2010 16:07:17 +0000</pubDate>
				<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iPhone UIWebView]]></category>
		<guid isPermaLink="false">http://praveensunsetpoint.wordpress.com/?p=249</guid>

					<description><![CDATA[Just paste the following line to your html under the HEAD tag &#60;&#8220;meta name = &#8220;viewport&#8221; content = &#8220;user-scalable = no&#8221;&#62; &#160; Regards, Praveen]]></description>
		
					<wfw:commentRss>https://praveensunsetpoint.wordpress.com/2010/12/11/disable-the-zoom-effect-on-uiwebview/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">249</post-id>	<georss:point>13.018940 77.596260</georss:point>
		<geo:lat>13.018940</geo:lat>
		<geo:long>77.596260</geo:long>
		<media:content url="https://1.gravatar.com/avatar/a740d0a03335c7aca6815f28e85f3e42476ae3f6078ebfcf2d99bc2934f27ad3?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">Sallu</media:title>
		</media:content>
	</item>
		<item>
		<title>django-debug-toolbar</title>
		<link>https://praveensunsetpoint.wordpress.com/2010/08/09/django-debug-toolbar/</link>
					<comments>https://praveensunsetpoint.wordpress.com/2010/08/09/django-debug-toolbar/#respond</comments>
		
		<dc:creator><![CDATA[Praveen Kumar]]></dc:creator>
		<pubDate>Mon, 09 Aug 2010 12:13:47 +0000</pubDate>
				<category><![CDATA[django-debug-toolbar]]></category>
		<category><![CDATA[debug]]></category>
		<guid isPermaLink="false">http://praveensunsetpoint.wordpress.com/?p=241</guid>

					<description><![CDATA[you need to do 3 things to get the django-debug-toolbar working: 1. add debug_toolbar.middleware.DebugToolbarMiddleware to you MIDDLEWARE_CLASSES list (after any other middleware that encodes response content, so last is good), 2. add debug_toolbar to your INSTALLED_APPS list, 3. specify the ip address(es) of machine(s) you want to see the toolbar using INTERNAL_IPS, eg INTERNAL_IPS = [&#8230;]]]></description>
		
					<wfw:commentRss>https://praveensunsetpoint.wordpress.com/2010/08/09/django-debug-toolbar/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">241</post-id>
		<media:content url="https://1.gravatar.com/avatar/a740d0a03335c7aca6815f28e85f3e42476ae3f6078ebfcf2d99bc2934f27ad3?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">Sallu</media:title>
		</media:content>
	</item>
		<item>
		<title>Search a word or phrase in file(s) in Windows</title>
		<link>https://praveensunsetpoint.wordpress.com/2009/12/31/search-a-word-or-phrase-in-files-in-windows/</link>
					<comments>https://praveensunsetpoint.wordpress.com/2009/12/31/search-a-word-or-phrase-in-files-in-windows/#respond</comments>
		
		<dc:creator><![CDATA[Praveen Kumar]]></dc:creator>
		<pubDate>Thu, 31 Dec 2009 11:20:44 +0000</pubDate>
				<category><![CDATA[Did U know]]></category>
		<category><![CDATA[Search ack]]></category>
		<guid isPermaLink="false">http://praveensunsetpoint.wordpress.com/?p=236</guid>

					<description><![CDATA[ack is a tool like grep (command for Unix ), designed for programmers with large trees of heterogeneous source code. ack is written purely in Perl, and takes advantage of the power of Perl&#8217;s regular expressions. To install the ack Step 1 &#8211; click on http://betterthangrep.com/ack-standalone Step 2- Copy whole content and save the file [&#8230;]]]></description>
		
					<wfw:commentRss>https://praveensunsetpoint.wordpress.com/2009/12/31/search-a-word-or-phrase-in-files-in-windows/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">236</post-id>
		<media:content url="https://1.gravatar.com/avatar/a740d0a03335c7aca6815f28e85f3e42476ae3f6078ebfcf2d99bc2934f27ad3?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">Sallu</media:title>
		</media:content>
	</item>
		<item>
		<title>Creating an alias as a non root user .</title>
		<link>https://praveensunsetpoint.wordpress.com/2009/08/03/creating-an-alias-as-a-non-root-user/</link>
					<comments>https://praveensunsetpoint.wordpress.com/2009/08/03/creating-an-alias-as-a-non-root-user/#respond</comments>
		
		<dc:creator><![CDATA[Pratap]]></dc:creator>
		<pubDate>Mon, 03 Aug 2009 08:53:54 +0000</pubDate>
				<category><![CDATA[Learning Linux]]></category>
		<category><![CDATA[Creating an alias as a non root user .]]></category>
		<guid isPermaLink="false">http://praveensunsetpoint.wordpress.com/?p=223</guid>

					<description><![CDATA[Creating an alias as a non root user .]]></description>
		
					<wfw:commentRss>https://praveensunsetpoint.wordpress.com/2009/08/03/creating-an-alias-as-a-non-root-user/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">223</post-id>
		<media:content url="https://1.gravatar.com/avatar/d6d470934a87b98850911b1fbfa747cf12edb4141c677da9053bd8cd52f3389c?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">singhpratap</media:title>
		</media:content>
	</item>
	</channel>
</rss>
