<?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>Public MindNitin</title>
	<atom:link href="http://publicmind.in/blog/author/publicmindin/feed/" rel="self" type="application/rss+xml" />
	<link>http://publicmind.in/blog</link>
	<description>Simple and Sophisticated</description>
	<lastBuildDate>Fri, 27 May 2011 08:28:30 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>WordPress: Fixing the broken links from Jetpack top stats</title>
		<link>http://publicmind.in/blog/wordpress-fixing-the-broken-links-from-jetpack/</link>
		<comments>http://publicmind.in/blog/wordpress-fixing-the-broken-links-from-jetpack/#comments</comments>
		<pubDate>Sat, 23 Apr 2011 18:27:38 +0000</pubDate>
		<dc:creator>Nitin</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://publicmind.in/blog/?p=757</guid>
		<description><![CDATA[I use the upgraded awesome plugin Jetpack by WordPress.com to show the &#8216;Top Posts&#8217; is the sidebar. I recently noticed that the links for these post were broken, even though I wasn&#8217;t doing anything wrong at all. I queried the plugin for top 5 posts using: $top_posts = stats_get_csv('postviews', 'days=-1&#38;limit=6&#38;summarize'); echo '&#60;ul class=&#34;most-viewed&#34;&#62;'; &#160; foreach [...]]]></description>
			<content:encoded><![CDATA[<p>I use the upgraded awesome plugin Jetpack by WordPress.com to show the &#8216;Top Posts&#8217; is the sidebar. I recently noticed that the links for these post were broken, even though I wasn&#8217;t doing anything wrong at all. I queried the plugin for top 5 posts using:</p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">$top_posts = stats_get_csv('postviews', 'days=-1&amp;limit=6&amp;summarize');<br />
echo '&lt;ul class=&quot;most-viewed&quot;&gt;';<br />
&nbsp; foreach ( $top_posts as $p ) {<br />
&nbsp; &nbsp; if($p['post_id'])<br />
&nbsp; &nbsp; &nbsp; echo '&lt;li&gt;&lt;a href=&quot;'. $p['post_permalink'] .'&quot; title=&quot;'. <br />
&nbsp; &nbsp; &nbsp; &nbsp; $p['post_title']. '&quot;&gt;'. $p['post_title'] .'&lt;/a&gt; - &lt;strong&gt;'. $p['views'] . '&lt;/strong&gt; views&lt;/li&gt;';<br />
&nbsp; }<br />
echo '&lt;/ul&gt;';</div></div>
<p>But somehow, the value at <em>post_permalink</em> key was wrong. Instead of pulling out my hair, I downloaded the Jetpack plugin&#8217;s source code, opened the file <em>stats.php</em> and copied a few lines and now the following works awesomely well.</p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">if ( function_exists('stats_get_csv') &amp;&amp; $top_posts = stats_get_csv('postviews', 'days=-1&amp;limit=6&amp;summarize')) {<br />
&nbsp; echo '&lt;ul class=&quot;most-viewed&quot;&gt;';<br />
&nbsp; foreach ( $top_posts as $p ) {<br />
&nbsp; &nbsp; if($p['post_id'] &amp;&amp; get_post($p['post_id']))<br />
&nbsp; &nbsp; &nbsp; echo '&lt;li&gt;&lt;a href=&quot;' . get_permalink( $post['post_id'] ) . '&quot;&gt;' . <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; get_the_title( $post['post_id'] ) . '&lt;/a&gt;', number_format_i18n( $post['views'] ) &lt;/li&gt;';<br />
&nbsp; }<br />
&nbsp; echo '&lt;/ul&gt;';<br />
}</div></div>
<p>I hope this helps people looking for a quick fix to this problem.</p>
]]></content:encoded>
			<wfw:commentRss>http://publicmind.in/blog/wordpress-fixing-the-broken-links-from-jetpack/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Drupal: Facebook-style Micropublisher v1.1 released</title>
		<link>http://publicmind.in/blog/drupal-facebook-style-micropublisher-v1-1-released/</link>
		<comments>http://publicmind.in/blog/drupal-facebook-style-micropublisher-v1-1-released/#comments</comments>
		<pubDate>Sat, 23 Apr 2011 15:37:01 +0000</pubDate>
		<dc:creator>Nitin</dc:creator>
				<category><![CDATA[Drupal]]></category>
		<category><![CDATA[fbsmp]]></category>
		<category><![CDATA[module]]></category>

		<guid isPermaLink="false">http://publicmind.in/blog/?p=752</guid>
		<description><![CDATA[After four months of relatively slow development of Facebook-style Micropublisher (FBSMP), I am happy to tag the branch with 6.x-1.1 release. It might be the last release for this branch, as I would now be upgrading FBSMP to support the latest 6.x-3.x branch of Facebook-style Statuses. A lot of cool features are coming up with [...]]]></description>
			<content:encoded><![CDATA[<p>After four months of relatively slow development of <a href="http://dgo.to/fbsmp">Facebook-style Micropublisher (FBSMP)</a>, I am happy to tag the branch with 6.x-1.1 release. It might be the last release for this branch, as I would now be upgrading FBSMP to support the latest 6.x-3.x branch of <a href="http://dgo.to/facebook_status">Facebook-style Statuses</a>.</p>
<p>A lot of cool features are coming up with this release especially in the beloved link plugin,</p>
<ol>
<li>link plugin: allow users to share links to audio sharing sites such as soundcloud, 8tracks.</li>
<li>Repost the attachments along with status (similar to re-share and re-tweet functionality), supported by link and photo plugin.</li>
<li>link plugin: inline editing of title and description, cool JS.</li>
<li>link plugin: edit the title and description field of the attachment.</li>
<li>Support for processing GET parameters in the URL.</li>
<li>link plugin now allows to share the URL using the <strong>flink</strong> GET parameter. <a href="http://drupal.org/node/883334#bookmarklet"><em>More&#8230;</em></a></li>
</ol>
<p>The complete list of features and bug fixes can be found in the <a href="http://drupal.org/node/1136442"><em>release notes</em></a>.</p>
<p>I hope you enjoy creating amazing sites using the new features and share them here for the world to know how cool this module is <img src='http://publicmind.in/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://publicmind.in/blog/drupal-facebook-style-micropublisher-v1-1-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Summer of Code 2011 Announced</title>
		<link>http://publicmind.in/blog/google-summer-of-code-2011-announced/</link>
		<comments>http://publicmind.in/blog/google-summer-of-code-2011-announced/#comments</comments>
		<pubDate>Sun, 06 Feb 2011 17:08:03 +0000</pubDate>
		<dc:creator>Nitin</dc:creator>
				<category><![CDATA[Drupal]]></category>
		<category><![CDATA[Nitin's Blog]]></category>
		<category><![CDATA[gsoc]]></category>

		<guid isPermaLink="false">http://publicmind.in/blog/?p=733</guid>
		<description><![CDATA[Do you feel passionate about any open source technology? Or you want to explore one during your summer vacations? On the top of it, if you get a mentor to guide you all along and a stipend of 5000 USD, would you be interested? Yeah! Keep reading then. Google announced its consecutive 7th year for Summer [...]]]></description>
			<content:encoded><![CDATA[<p>Do you feel passionate about any open source technology? Or you want to explore one during your summer vacations? On the top of it, if you get a mentor to guide you all along and a stipend of 5000 USD, would you be interested? Yeah! Keep reading then.</p>
<div id="attachment_741" class="wp-caption alignright" style="width: 208px"><a href="http://publicmind.in/blog/wp-content/uploads/2011/02/GSoC2011_198x128.png"><img class="size-full wp-image-741" title="GSoC 2011" src="http://publicmind.in/blog/wp-content/uploads/2011/02/GSoC2011_198x128.png" alt="GSoC 2011 " width="198" height="128" /></a><p class="wp-caption-text">GSoC 2011</p></div>
<p>Google announced its consecutive 7th year for Summer of Code program on January 24, 2011. Google Summer of Code program encourages students from all over the world to engage in open source project development of their choice for 3 months.</p>
<p>Look out for the details of the program here: <a href="http://socghop.appspot.com/">http://socghop.appspot.com/</a> and the timeline: <a href="http://www.google-melange.com/document/show/gsoc_program/google/gsoc2011/timeline">http://www.google-melange.com/document/show/gsoc_program/google/gsoc2011/timeline</a></p>
<p><span id="more-733"></span>Although the applications for students will be accepted only after 28th March, here are a few tips that might help you:</p>
<ol>
<li> Accepted list of organizations will be announced on 18th March, but it is expected to remain almost similar to the last year. So you should find out more about the organizations before hand (<a href="http://socghop.appspot.com/gsoc/program/accepted_orgs/google/gsoc2010">http://socghop.appspot.com/gsoc/program/accepted_orgs/google/gsoc2010</a>).</li>
<li>If you feel passionate about an organization/technology or even a bit interested, get in touch with people on respected forums/IRC. It will let you know more about the organization, expectations from the program and in certain cases, you are expected to submit patches/code which is reviewed before your application is accepted by an organization. Moreover if you are really interested then start contributing now, and everybody will know you when you finally apply for the program.</li>
<li>If you have an idea, put it forward asap. Try to put as much details as possible or even a proof of concept. Even if your idea is rejected by the community, you know it before the GSoC program even starts. And if you get support for it, there are much more chances that your project will be selected by the organization. A win-win situation for you, isn&#8217;t that amazing!!!</li>
<li>Don&#8217;t be disheartened if you do not have an idea (most of us don&#8217;t). Many organizations will publish a list of ideas, which they want the potential GSoC students to work on. Make sure you research a lot, take part in discussion on forums on the idea before submitting your application. If possible set up a personal repository, code something and provide a link to it with your application. This will not only show that you are interested in the project but will also showcase your coding skills.</li>
<li>Do not forget to follow the coding practices if published by the organization or common guidelines which will make your code more legible. <a href="http://drupal.org/coding-standards">http://drupal.org/coding-standards</a></li>
<li>Last, communicate yourself properly. As you would be working online for 3 months, and mostly you &amp; your mentor will be interacting online, try not to be confusing while explaining yourself in writing. <a href="http://www.codinghorror.com/blog/2011/02/how-to-write-without-writing.html">http://www.codinghorror.com/blog/2011/02/how-to-write-without-writing.html</a></li>
</ol>
<p>I will go over the list of reasons on why you should apply for the program in short. You get to work on what you like and you get paid for that. You will also meet a lot of interesting and intelligent people and will be amazed how helpful they are to your silly questions. Last but not the least, you will have something big on your CV after college, NICE.</p>
<p>If you are looking for inspiration, you can go through this discussion which I started when I was about to apply for the program last year: <a href="http://groups.drupal.org/node/57743">http://groups.drupal.org/node/57743</a>. I received a lot of suggestions and criticism which mostly turned into features for the project: <a href="http://drupal.org/project/fbsmp">http://dupal.org/project/fbsmp</a>.</p>
<p>I am proud to be a Google Summer of Code student, would you like to be next?</p>
]]></content:encoded>
			<wfw:commentRss>http://publicmind.in/blog/google-summer-of-code-2011-announced/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>shared thoughts</title>
		<link>http://publicmind.in/blog/shared-thoughts/</link>
		<comments>http://publicmind.in/blog/shared-thoughts/#comments</comments>
		<pubDate>Sat, 25 Dec 2010 19:37:30 +0000</pubDate>
		<dc:creator>Nitin</dc:creator>
				<category><![CDATA[Nitin's Blog]]></category>

		<guid isPermaLink="false">http://publicmind.in/blog/?p=711</guid>
		<description><![CDATA[a few videos and images for all of you this holiday season, few to giggle, few to laugh and other to ponder over. merry christmas and a happy new year. 300 years of fossil fuel in 300 seconds google shit revenge of the spider &#8211; fya for those of you wondering where the heck uppercase [...]]]></description>
			<content:encoded><![CDATA[<p>a few videos and images for all of you this holiday season, few to giggle, few to laugh and other to ponder over. merry christmas and a happy new year.</p>
<ol>
<li><strong>300 years of fossil fuel in 300 seconds</strong>
</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="440" height="300" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://www.youtube.com/v/cJ-J91SwP8w&amp;hl=en_US&amp;feature=player_embedded&amp;version=3" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="440" height="300" src="http://www.youtube.com/v/cJ-J91SwP8w&amp;hl=en_US&amp;feature=player_embedded&amp;version=3" allowscriptaccess="always" allowfullscreen="true"></embed></object></li>
<li><strong>google shit</strong>
</p>
<p><object id="ordie_player_37faa01ec6" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="384" height="256" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="flashvars" value="key=37faa01ec6" /><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://player.ordienetworks.com/flash/fodplayer.swf" /><param name="name" value="ordie_player_37faa01ec6" /><param name="quality" value="high" /><embed id="ordie_player_37faa01ec6" type="application/x-shockwave-flash" width="384" height="256" src="http://player.ordienetworks.com/flash/fodplayer.swf" quality="high" name="ordie_player_37faa01ec6" allowscriptaccess="always" allowfullscreen="true" flashvars="key=37faa01ec6"></embed></object></li>
<li><strong>revenge of the spider</strong>
<div id="attachment_713" class="wp-caption aligncenter" style="width: 310px"><a href="http://publicmind.in/blog/wp-content/uploads/2010/12/tumblr_ldaw6swoQy1qanb21o1_500.jpg"><img class="size-medium wp-image-713  " src="http://publicmind.in/blog/wp-content/uploads/2010/12/tumblr_ldaw6swoQy1qanb21o1_500-300x191.jpg" alt="" width="300" height="191" /></a><p class="wp-caption-text">i remember too.</p></div>
<p>&#8211; <a href="http://fuckyeahalbuquerque.tumblr.com/">fya</a></li>
</ol>
<p>for those of you wondering where the heck  uppercase letters went, <a href="http://www.slate.com/id/2277926/pagenum/all/">google killed them</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://publicmind.in/blog/shared-thoughts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Drupal: Facebook-style Micropublisher</title>
		<link>http://publicmind.in/blog/drupal-facebook-style-micropublisher/</link>
		<comments>http://publicmind.in/blog/drupal-facebook-style-micropublisher/#comments</comments>
		<pubDate>Fri, 24 Dec 2010 19:02:18 +0000</pubDate>
		<dc:creator>Nitin</dc:creator>
				<category><![CDATA[Drupal]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[fbsmp]]></category>
		<category><![CDATA[module]]></category>

		<guid isPermaLink="false">http://publicmind.in/blog/?p=625</guid>
		<description><![CDATA[After months of hard work and support from Isaac and Thomas, I am proud to announce the first stable release of Facebook-style Micropublisher (FBSMP). FBSMP allows user to share content such as links, videos, photos and documents along with their Facebook-style Statuses. It allows you to create a social networking site similar to Twitter, Facebook, [...]]]></description>
			<content:encoded><![CDATA[<p>After months of hard work and support from <a href="http://drupal.org/user/201425">Isaac</a> and <a href="http://drupal.org/user/167047">Thomas</a>, I am proud to announce the first stable release of <a href="http://dgo.to/fbsmp">Facebook-style Micropublisher</a> (FBSMP). <a href="http://dgo.to/fbsmp">FBSMP</a> allows user to share content such as links, videos, photos and documents along with their <a href="http://dgo.to/facebook_status">Facebook-style Statuses</a>. It allows you to create a social networking site similar to <a href="http://twitter.com">Twitter</a>, <a href="http://facebook.com">Facebook</a>, <a href="http://google.com/buzz">Google Buzz</a> and others out-of-the-box. On the top, it integrates with a lot of other Drupal modules (as Activity, Trigger, Rules, Heartbeat, ImageCache, EmVideo, UserPoints, and more) which lets you do a lot more things with your website.</p>
<p><strong>What&#8217;s in the box</strong><br />
As of today, FBSMP supports the following features:</p>
<ul>
<li>Attaches content using AHAH which keeps everything smooth.</li>
<li>Publishes links, photos, videos, documents (ppt, doc, pptx, odt, etc) out of the box.</li>
<li>Extensible to publish any kind of content.</li>
<li>Integration with <a href="http://dgo.to/activity">Activity 2</a>, <a href="http://dgo.to/rules">Rules</a>, <a href="http://dgo.to/heartbeat">Heartbeat</a>, Triggers/Actions, Input Filters, <a href="http://dgo.to/views">Views</a>, <a href="http://dgo.to/imagecache">ImageCache</a>, Token, <a href="http://dgo.to/appbar">Application Toolbar</a>(Appbar), Emvideo, Userpoints (through Rules), SlideShare.net API and more.</li>
<li>Extensive developer API (including hooks) and theming methods.</li>
</ul>
<p>It is difficult for me to elaborate on all the plugins (a plugin allows to publish one kind of content, for example Link plugin allows you to share your favorite links, Photo plugin allows you to share images on your site.), so you will have to explore them yourself. You can look at the documentation here: <a href="http://drupal.org/node/876500">http://drupal.org/node/876500</a></p>
<p><strong>How to get involved</strong></p>
<ul>
<li>Play with it and share your site creativity here in the comments</li>
<li>Write about this module so other folks can find it (<a href="http://drupalmodules.com/module/facebook-style-micropublisher">http://drupalmodules.com/module/facebook-style-micropublisher</a>)</li>
<li>Report bugs or help in the support issues queue (<a href="http://drupal.org/project/issues/fbsmp">http://drupal.org/project/issues/fbsmp</a>)</li>
</ul>
<p>Enjoy it with your holidays, wish you all a Merry Christmas and a great year ahead.</p>
<p><strong>Note:</strong> Feature and Support requests should be made through the Facebook-style Micropublisher <a href="http://drupal.org/project/issues/fbsmp">Forum</a>. I may not be able to answer them here.</p>
]]></content:encoded>
			<wfw:commentRss>http://publicmind.in/blog/drupal-facebook-style-micropublisher/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Drupal: Facebook-style Micropublisher Preview</title>
		<link>http://publicmind.in/blog/fbsmp_preview/</link>
		<comments>http://publicmind.in/blog/fbsmp_preview/#comments</comments>
		<pubDate>Mon, 22 Nov 2010 16:17:07 +0000</pubDate>
		<dc:creator>Nitin</dc:creator>
				<category><![CDATA[Drupal]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[fbsmp]]></category>
		<category><![CDATA[module]]></category>

		<guid isPermaLink="false">http://publicmind.in/blog/?p=687</guid>
		<description><![CDATA[I worked on the module Facebook-style Micropublisher (FBSMP) for Drupal, this summer as part of the Google Summer of Code program mentored by Isaac Sukin. This module lets users publish content (links, images, videos and documents) in a stream, along with their Facebook-style Statuses (like on Facebook, or Twitter). When I say that I worked [...]]]></description>
			<content:encoded><![CDATA[<p>I worked on the module <a href="http://dgo.to/fbsmp" target="_blank">Facebook-style Micropublisher</a> (FBSMP) for Drupal, this summer as part of the <a href="http://socghop.appspot.com/" target="_blank">Google Summer of Code</a> program mentored by <a href="http://drupal.org/user/201425" target="_blank">Isaac Sukin</a>. This module lets users publish content (links, images, videos and documents) in a stream, along with their <a rel="nofollow" href="http://drupal.org/project/facebook_status">Facebook-style Statuses</a> (like on Facebook, or Twitter). When I say that I worked on it as part of GSoC, it would be only partly true. I started working on it around March 2010, when I was contacted by <a href="http://drupal.org/user/167047" target="_blank">Thomas</a> to create a Drupal module for his site which would imitate the link share feature from Facebook, Google Buzz. I wrote the small module <a href="http://dgo.to/facebook_link" target="_blank">Facebook-style Links</a>, which worked quite well but it was then this occurred to me, &#8220;why not create a module which can publish any content, which is extensible to publish any kind of content like images, links, videos, documents, audio, etc&#8221;.</p>
<p>Today, I am happy to say that Drupal now has a complete Micropublisher which can be used to create any kind of microblogging platform such as <a href="http://facebook.com" target="_blank">Facebook</a>, Google Buzz, <a href="http://twitter.com" target="_blank">Twitter</a>, etc. I will be posting the first release of the module soon, but before here is the small list of features and a few screenshots.<span id="more-687"></span></p>
<p>Among a lot of other features, Facebook-style Micropublisher :</p>
<ol>
<li>Publish links, photos, videos, documents (ppt, doc, pptx, odt, etc) out of the box.</li>
<li>Attaches content using AJAX which keeps everything smooth.</li>
<li>Extensible to publish any kind of content.</li>
<li>Integration with a lot of other modules, such as:
<ul>
<li><a href="http://dgo.to/activity" target="_blank">Activity</a>, <a href="http://dgo.to/heartbeat" target="_blank">Heartbeat</a>: Create a stream of your statuses, or log messages or status posts/delete.</li>
<li><a href="http://dgo.to/emfield" target="_blank">Emfield</a>/Emvideo: Post links directly from YouTube, Google Video, Dailymotion, and others.</li>
<li><a href="http://dgo.to/lightbox2" target="_blank">LightBox2</a>: Create slideshows for your photos and videos (from youtube, etc or directly posted).</li>
<li><a href="http://slideshare.net" target="_self">SlideShare.net</a>: Post documents such pptx, ppt, docs and pdf.</li>
</ul>
</li>
<li>Extensive API (good news for developers) and theme overrides (never forget the designers).</li>
</ol>
<p>I am posting a few screenshots of the module, which will soon have a stable release. Till then, you can download the development build and play with it (which will be actually the stable release in a few days) and report issues if any or just enjoy the module.</p>
<p>(Click on the images to see full view in a ThickBox)</p>

<div class="ngg-galleryoverview" id="ngg-gallery-1-687">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-1" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://publicmind.in/blog/wp-content/gallery/fbsmp_screenshots/share_form.png" title="Staus update form" class="thickbox" rel="set_1" >
								<img title="Staus update form" alt="Staus update form" src="http://publicmind.in/blog/wp-content/gallery/fbsmp_screenshots/thumbs/thumbs_share_form.png" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-2" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://publicmind.in/blog/wp-content/gallery/fbsmp_screenshots/share_form_hover.png" title="Status update form - hover over icons" class="thickbox" rel="set_1" >
								<img title="Status update form - hover over icons" alt="Status update form - hover over icons" src="http://publicmind.in/blog/wp-content/gallery/fbsmp_screenshots/thumbs/thumbs_share_form_hover.png" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-4" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://publicmind.in/blog/wp-content/gallery/fbsmp_screenshots/post_link.png" title="Post Link form" class="thickbox" rel="set_1" >
								<img title="Post Link form" alt="Post Link form" src="http://publicmind.in/blog/wp-content/gallery/fbsmp_screenshots/thumbs/thumbs_post_link.png" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-3" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://publicmind.in/blog/wp-content/gallery/fbsmp_screenshots/attach_link.png" title="Share the links you love." class="thickbox" rel="set_1" >
								<img title="Post a link" alt="Post a link" src="http://publicmind.in/blog/wp-content/gallery/fbsmp_screenshots/thumbs/thumbs_attach_link.png" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-7" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://publicmind.in/blog/wp-content/gallery/fbsmp_screenshots/posted_link.png" title="Link as appears in the status stream, can be easily themed to look as nice as you want." class="thickbox" rel="set_1" >
								<img title="Posted Link" alt="Posted Link" src="http://publicmind.in/blog/wp-content/gallery/fbsmp_screenshots/thumbs/thumbs_posted_link.png" width="100" height="74" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-5" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://publicmind.in/blog/wp-content/gallery/fbsmp_screenshots/post_photo.png" title="Post photo form" class="thickbox" rel="set_1" >
								<img title="Post photo form" alt="Post photo form" src="http://publicmind.in/blog/wp-content/gallery/fbsmp_screenshots/thumbs/thumbs_post_photo.png" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-8" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://publicmind.in/blog/wp-content/gallery/fbsmp_screenshots/posted_photo.png" title="A photo as it appears in the stream along with your status" class="thickbox" rel="set_1" >
								<img title="Posted Photo" alt="Posted Photo" src="http://publicmind.in/blog/wp-content/gallery/fbsmp_screenshots/thumbs/thumbs_posted_photo.png" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-6" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://publicmind.in/blog/wp-content/gallery/fbsmp_screenshots/post_youtube_link.png" title="Post links from video sites as YouTube" class="thickbox" rel="set_1" >
								<img title="Post links from video sites as YouTube" alt="Post links from video sites as YouTube" src="http://publicmind.in/blog/wp-content/gallery/fbsmp_screenshots/thumbs/thumbs_post_youtube_link.png" width="100" height="74" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-9" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://publicmind.in/blog/wp-content/gallery/fbsmp_screenshots/posted_youtube_video.png" title="Yes, just click on the thumbnail and it will be replaced with your video from Youtube, etc" class="thickbox" rel="set_1" >
								<img title="Embeded YouTube Video" alt="Embeded YouTube Video" src="http://publicmind.in/blog/wp-content/gallery/fbsmp_screenshots/thumbs/thumbs_posted_youtube_video.png" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-10" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://publicmind.in/blog/wp-content/gallery/fbsmp_screenshots/post_document.png" title="You can let your site users to share documents as well." class="thickbox" rel="set_1" >
								<img title="Post Documents" alt="Post Documents" src="http://publicmind.in/blog/wp-content/gallery/fbsmp_screenshots/thumbs/thumbs_post_document.png" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>


]]></content:encoded>
			<wfw:commentRss>http://publicmind.in/blog/fbsmp_preview/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>Mobile number portability and Data mining</title>
		<link>http://publicmind.in/blog/mobile-number-portability-and-data-mining/</link>
		<comments>http://publicmind.in/blog/mobile-number-portability-and-data-mining/#comments</comments>
		<pubDate>Fri, 29 Oct 2010 22:19:09 +0000</pubDate>
		<dc:creator>Nitin</dc:creator>
				<category><![CDATA[Nitin's Blog]]></category>
		<category><![CDATA[mining]]></category>
		<category><![CDATA[mnp]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://publicmind.in/blog/?p=626</guid>
		<description><![CDATA[I am much excited about the long delayed Mobile Number Portability (MNP) in India which is now pretty much ready for arrival next month during 2nd week of November (http://goo.gl/DuUo). I am not sure if it will be free (as it is in most of the countries, http://goo.gl/2ihz), but even if it isn&#8217;t I am [...]]]></description>
			<content:encoded><![CDATA[<p>I am much excited about the long delayed Mobile Number Portability (MNP) in India which is now pretty much ready for arrival next month during 2nd week of November (<a href="http://goo.gl/DuUo">http://goo.gl/DuUo</a>). I am not sure if it will be free (as it is in most of the countries, <a href="http://goo.gl/2ihz">http://goo.gl/2ihz</a>), but even if it isn&#8217;t I am expecting a lot of people would switch their <a href="http://goo.gl/5G2Z" target="_blank">mobile network operator</a> in-spite of the few disadvantages the service will bring(<a href="http://goo.gl/w5Si">http://goo.gl/w5Si</a>).</p>
<p>In such times, IMHO, the mobile network operators are forced to either improve their services or put lucrative offers in front of transitioning users which they are unable to resist. The former can&#8217;t be done in a day (which user won&#8217;t wait before switching) and latter brings an interesting problem from our data mining class, back in 2009.<br />
<span id="more-626"></span><br />
<a href="http://www.linkedin.com/pub/vijay-iyengar/9/36b/195">Dr. V. Iyenger</a>, once in our class posed an interesting problem, which was quite similar to the above. &#8220;How will a mobile company choose the customers to offer free promotional coupons, so that they are not lost?&#8221; The promotional coupons offer sounded plausible, I mean if I am offered no less than Rs. 1000 recharge, I won&#8217;t change my service provider for at least another one month.</p>
<p>All of us (okay, just the few frontbenchers!!) came up with a lots of different parameters with lots of different algorithms but they all could agree upon at least &#8220;the customers who made the most complaints in the past few months&#8221;. Of course, we didn&#8217;t know about MNP then otherwise we could have disappointed our professor a little less with more satisfactory answers.</p>
<p><strong>Moral</strong>: So even if you are happy with your mobile operator but want free recharge, START COMPLAINING. Damn, flood those customer care <strong>executives</strong> now. </p>
]]></content:encoded>
			<wfw:commentRss>http://publicmind.in/blog/mobile-number-portability-and-data-mining/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Price match guarantee with a bug @Hotels.com</title>
		<link>http://publicmind.in/blog/price-match-guarantee-with-a-bug-hotels-com/</link>
		<comments>http://publicmind.in/blog/price-match-guarantee-with-a-bug-hotels-com/#comments</comments>
		<pubDate>Sat, 18 Sep 2010 17:16:22 +0000</pubDate>
		<dc:creator>Nitin</dc:creator>
				<category><![CDATA[Nitin's Blog]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[hotels]]></category>
		<category><![CDATA[trip]]></category>

		<guid isPermaLink="false">http://publicmind.in/blog/?p=640</guid>
		<description><![CDATA[I just came across this website (Hotels.com), so went ahead and started playing around the website. I really liked the interface, though a little cluttered homepage, it gave a complete overview of the offers on the website. I saw the &#8220;Price Match Guarantee&#8220;, so went ahead to check their rates for the hotel I stayed [...]]]></description>
			<content:encoded><![CDATA[<p><!-- Digg Digg Disabled1 -->I just came across this website (<a href="http://hotels.com" target="_blank">Hotels.com</a>), so went ahead and started playing around the website. I really liked the interface, though a little cluttered homepage, it gave a complete overview of the offers on the website. I saw the &#8220;<strong>Price Match Guarantee</strong>&#8220;, so went ahead to check their rates for the hotel I stayed in Puducherry (Ginger Hotel). I was shocked to see the results for Jayaram Hotel which was Rs. 1 lakh per night:</p>
<div id="attachment_643" class="wp-caption aligncenter" style="width: 310px"><a href="http://publicmind.in/blog/wp-content/uploads/2010/09/hotels_com_hotel_jayaram2.jpg"><img class="size-medium wp-image-643" title="Hotel Jayaram @Hotels.com" src="http://publicmind.in/blog/wp-content/uploads/2010/09/hotels_com_hotel_jayaram2-300x181.jpg" alt="Hotel Jayaram @Hotels.com" width="300" height="181" /></a><p class="wp-caption-text">Hotel Jayaram @Hotels.com</p></div>
<p>Before I could call it a bug with the site, I jumped on <a href="http://travelguru.com" target="_blank">travelguru.com</a> and checked their rates. It was less than Rs 1200 per night for the same hotel and same dates. I am left wondering if I can somehow get the difference in the amount per night for the hotel I didn&#8217;t book <img src='http://publicmind.in/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://publicmind.in/blog/price-match-guarantee-with-a-bug-hotels-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Is your sales chat losing customers?</title>
		<link>http://publicmind.in/blog/welcome-to-the-sales-chat/</link>
		<comments>http://publicmind.in/blog/welcome-to-the-sales-chat/#comments</comments>
		<pubDate>Fri, 17 Sep 2010 18:25:52 +0000</pubDate>
		<dc:creator>Nitin</dc:creator>
				<category><![CDATA[Nitin's Blog]]></category>

		<guid isPermaLink="false">http://publicmind.in/blog/?p=627</guid>
		<description><![CDATA[Most of the websites today have the the pre-sales chat options on their site. These chats usually do not assure you about the quality of the product/service you are going to receive but still if the sales person can convince you to buy the product and can answer all the questions you may have about [...]]]></description>
			<content:encoded><![CDATA[<p><!-- Digg Digg Disabled1 -->Most of the websites today have the the pre-sales chat options on their site. These chats usually do not assure you about the quality of the product/service you are going to receive but still if the sales person can convince you to buy the product and can answer all the questions you may have about the product/service, I would say that they are giving good ROI.</p>
<p>But what if you have a bad (read horrible) experience during the pre-sales chat? Would you still pay for the product, no matter how good you have heard about it?<br />
<span id="more-627"></span><br />
<div id="attachment_628" class="wp-caption alignright" style="width: 310px"><img class="size-medium wp-image-628" title="Live Chat" src="../wp-content/uploads/2010/09/livechat_livehelp-300x187.jpg" alt="Live Chat" width="300" height="187" /><p class="wp-caption-text">Live Sales Chat</p></div></p>
<p>I was recently looking for a change in web hosts. Although I have no problem with my present host, <a href="http://goo.gl/hdnvI">HostGator</a>, I just wanted to cut the cost of hosting a little (I was on a Business plan which costs 15$ a month). But believe me, if you can afford, you won&#8217;t get a better shared hosting service in the industry. I went through a lot of reviews and narrowed down my search to two hosts, <a href="http://dreamhost.com" target="_blank">DreamHost</a> and <a href="http://bluehost.com" target="_blank">Bluehost</a>. Both were priced around 7-9 $ a month, offered 99.9% uptime, unlimited disk/bandwidth, etc, etc and were good for me. I still had a couple of questions about their server configuration, so I jumped on their website and clicked the button which said &#8220;Live chat&#8221;.</p>
<p>I started with Dreamhost, asked the guy(or girl) if he would be able to answer a few technical questions and then asked him a couple like the memory limit, cURL support, image library (GD or ImageMagick), etc and he wasn&#8217;t able to answer one of them. Only after I showed discomfort on his lack of knowledge about the product the company was selling, he did some search for the answers. The answers were satisfactory and were upto my hosting needs. But overall, it was a very bad experience and took 44  minutes to get answers to a few basic questions (not more than 5). I was seriously turned off and stroked DreamHost off the list. I may have over-reacted but how can I trust a company who can&#8217;t even train their sales people about the products/services they are offering?</p>
<p>I turned to Bluehost&#8217;s sales person, and asked if she would be able to answer a few technical questions. She wasn&#8217;t sure if she can but still asked me to fire those questions. I was amazed to see the thoroughness of the responses and all I could say at the end was &#8220;<strong>I guess, I would be soon associated with Bluehost</strong>&#8220;. JFYI, I asked the same set of questions and it took less than 10 minutes for the whole chat. Within minutes, I signed up for a 2 year contract on Bluehost.</p>
<p>All I want to say is that if you decide to provide the option of live sales chat on your site, make sure you are offering nothing but the best. A customer creates an impression about the whole company from this chat and you don&#8217;t want to spoil it if you are offering the best services in the industry. Do Not Lose Customers, at least not from your sales chat!!</p>
]]></content:encoded>
			<wfw:commentRss>http://publicmind.in/blog/welcome-to-the-sales-chat/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>PHP: Encoding a URL before accessing it</title>
		<link>http://publicmind.in/blog/url-encoding/</link>
		<comments>http://publicmind.in/blog/url-encoding/#comments</comments>
		<pubDate>Sat, 08 May 2010 16:56:34 +0000</pubDate>
		<dc:creator>Nitin</dc:creator>
				<category><![CDATA[Nitin's Blog]]></category>
		<category><![CDATA[encoding]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[URL]]></category>

		<guid isPermaLink="false">http://publicmind.in/blog/?p=605</guid>
		<description><![CDATA[I discussed a little about URL encoding in my recent post Facebook: Bug with URL encoding, although it seems like the bug still exists. In this post I will discuss &#8220;how to encode a given URL before accessing it using CURL or fsockopen&#8221;. The problem with URLs is that they might contain certain disallowed characters [...]]]></description>
			<content:encoded><![CDATA[<p>I discussed a little about URL encoding in my recent post <a title="Facebook: Bug with URL encoding" href="http://publicmind.in/blog/facebook-bug-with-url-encoding/">Facebook: Bug with URL encoding</a>, although it seems like the bug still exists. In this post I will discuss &#8220;how to encode a given URL before accessing it using CURL or fsockopen&#8221;. The problem with URLs is that they might contain certain disallowed characters like spaces, according to RFC 3986. Our aim is to convert these invalid characters to their <a href="http://en.wikipedia.org/wiki/Percent-encoding" target="_blank">percentage encoded values</a> in a given URL , so that we can access the URL using our regular HTTP request methods. For example the URL [http://example.com/space space] should be converted to [http://example.com/space%20space] before we can access it using CURL. However, the URL [http://example.com/percents%25percent] is perfectly valid as it doesn&#8217;t contains any of the disallowed characters.<br />
<span id="more-605"></span><br />
The given URL can only contain characters which are allowed by RFC 3986 which includes alpha-numeric characters along with reserved characters and delimiters  (<strong>:</strong> | <strong>/</strong> | <strong>?</strong> | <strong>#</strong> | <strong>[</strong> | <strong>]</strong> | <strong>@ </strong>| <strong>!</strong> | <strong>$</strong> | <strong>&amp;</strong> | <strong>&#8216; </strong>| <strong>(</strong> | <strong>)</strong> | <strong>*</strong> | <strong>+</strong> | <strong>,</strong> | <strong>;</strong> | <strong>=</strong> | <strong>%</strong>).  The following piece of code changes the disallowed characters in the URL to their corresponding percentage encoded values. The characters and delimiters which are allowed are left untouched.</p>
<div class="codecolorer-container php default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;height:500px;"><div class="php codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #009933; font-style: italic;">/**<br />
* @param $url<br />
* &nbsp; &nbsp; The URL to encode<br />
*<br />
* @return<br />
* &nbsp; &nbsp; A string containing the encoded URL with disallowed<br />
* &nbsp; &nbsp; characters converted to their percentage encodings.<br />
*/</span><br />
<span style="color: #000000; font-weight: bold;">function</span> encode_url<span style="color: #009900;">&#40;</span><span style="color: #000088;">$url</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span><br />
<span style="color: #000088;">$reserved</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/array"><span style="color: #990000;">array</span></a><span style="color: #009900;">&#40;</span><br />
<span style="color: #0000ff;">&quot;:&quot;</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'!%3A!ui'</span><span style="color: #339933;">,</span><br />
<span style="color: #0000ff;">&quot;/&quot;</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'!%2F!ui'</span><span style="color: #339933;">,</span><br />
<span style="color: #0000ff;">&quot;?&quot;</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'!%3F!ui'</span><span style="color: #339933;">,</span><br />
<span style="color: #0000ff;">&quot;#&quot;</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'!%23!ui'</span><span style="color: #339933;">,</span><br />
<span style="color: #0000ff;">&quot;[&quot;</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'!%5B!ui'</span><span style="color: #339933;">,</span><br />
<span style="color: #0000ff;">&quot;]&quot;</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'!%5D!ui'</span><span style="color: #339933;">,</span><br />
<span style="color: #0000ff;">&quot;@&quot;</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'!%40!ui'</span><span style="color: #339933;">,</span><br />
<span style="color: #0000ff;">&quot;!&quot;</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'!%21!ui'</span><span style="color: #339933;">,</span><br />
<span style="color: #0000ff;">&quot;$&quot;</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'!%24!ui'</span><span style="color: #339933;">,</span><br />
<span style="color: #0000ff;">&quot;&amp;&quot;</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'!%26!ui'</span><span style="color: #339933;">,</span><br />
<span style="color: #0000ff;">&quot;'&quot;</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'!%27!ui'</span><span style="color: #339933;">,</span><br />
<span style="color: #0000ff;">&quot;(&quot;</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'!%28!ui'</span><span style="color: #339933;">,</span><br />
<span style="color: #0000ff;">&quot;)&quot;</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'!%29!ui'</span><span style="color: #339933;">,</span><br />
<span style="color: #0000ff;">&quot;*&quot;</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'!%2A!ui'</span><span style="color: #339933;">,</span><br />
<span style="color: #0000ff;">&quot;+&quot;</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'!%2B!ui'</span><span style="color: #339933;">,</span><br />
<span style="color: #0000ff;">&quot;,&quot;</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'!%2C!ui'</span><span style="color: #339933;">,</span><br />
<span style="color: #0000ff;">&quot;;&quot;</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'!%3B!ui'</span><span style="color: #339933;">,</span><br />
<span style="color: #0000ff;">&quot;=&quot;</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'!%3D!ui'</span><span style="color: #339933;">,</span><br />
<span style="color: #0000ff;">&quot;%&quot;</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'!%25!ui'</span><span style="color: #339933;">,</span><br />
<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<br />
<span style="color: #000088;">$url</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/rawurlencode"><span style="color: #990000;">rawurlencode</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$url</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<span style="color: #000088;">$url</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/preg_replace"><span style="color: #990000;">preg_replace</span></a><span style="color: #009900;">&#40;</span><a href="http://www.php.net/array_values"><span style="color: #990000;">array_values</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$reserved</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span> <a href="http://www.php.net/array_keys"><span style="color: #990000;">array_keys</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$reserved</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$url</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<span style="color: #b1b100;">return</span> <span style="color: #000088;">$url</span><span style="color: #339933;">;</span><br />
<span style="color: #009900;">&#125;</span></div></div>
<p>One thing to notice here is that the &#8216;%&#8217; character must be the last in the <em>$reserved</em> array. This makes sure that the already encoded values are not lost or encoded again.</p>
<p><strong>Note</strong>: This might not be the best solution but well, it works. If you are using something better, let me know in the comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://publicmind.in/blog/url-encoding/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
	</channel>
</rss>

