<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for simulacra</title>
	<atom:link href="http://simulacra.in/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://simulacra.in</link>
	<description>Confusing fact and fiction, since 2006.</description>
	<lastBuildDate>Wed, 09 Jun 2010 05:23:51 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Half-fried honey omelette by Ankit Solanki</title>
		<link>http://simulacra.in/2010/06/half-fried-honey-omelette/comment-page-1/#comment-3098</link>
		<dc:creator>Ankit Solanki</dc:creator>
		<pubDate>Wed, 09 Jun 2010 05:23:51 +0000</pubDate>
		<guid isPermaLink="false">http://simulacra.in/?p=468#comment-3098</guid>
		<description>Hah. Good food is its own reward, my good friend :)</description>
		<content:encoded><![CDATA[<p>Hah. Good food is its own reward, my good friend :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Half-fried honey omelette by Amit Srivastava</title>
		<link>http://simulacra.in/2010/06/half-fried-honey-omelette/comment-page-1/#comment-3097</link>
		<dc:creator>Amit Srivastava</dc:creator>
		<pubDate>Mon, 07 Jun 2010 15:16:45 +0000</pubDate>
		<guid isPermaLink="false">http://simulacra.in/?p=468#comment-3097</guid>
		<description>Aha..onto cooking..gearing up for marriage? ;-)</description>
		<content:encoded><![CDATA[<p>Aha..onto cooking..gearing up for marriage? ;-)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Milestone! (android notes) by Vince</title>
		<link>http://simulacra.in/2010/04/milestone-android-notes/comment-page-1/#comment-3094</link>
		<dc:creator>Vince</dc:creator>
		<pubDate>Tue, 11 May 2010 05:07:19 +0000</pubDate>
		<guid isPermaLink="false">http://simulacra.in/?p=459#comment-3094</guid>
		<description>Hey

I came across your blog and I really have no way of contacting you. I know you&#039;re pro-Android but I need your recommendations on this new Nokia product - Nokia C6
http://www.nokia.co.in/find-products/products/nokia-c6/specifications

Thanks. Hope all is well in BBY.</description>
		<content:encoded><![CDATA[<p>Hey</p>
<p>I came across your blog and I really have no way of contacting you. I know you&#039;re pro-Android but I need your recommendations on this new Nokia product &#8211; Nokia C6<br />
<a href="http://www.nokia.co.in/find-products/products/nokia-c6/specifications">http://www.nokia.co.in/find-products/products/nokia-c6/specifications</a></p>
<p>Thanks. Hope all is well in BBY.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Milestone! (android notes) by Ankit Solanki</title>
		<link>http://simulacra.in/2010/04/milestone-android-notes/comment-page-1/#comment-3093</link>
		<dc:creator>Ankit Solanki</dc:creator>
		<pubDate>Mon, 26 Apr 2010 06:59:49 +0000</pubDate>
		<guid isPermaLink="false">http://simulacra.in/?p=459#comment-3093</guid>
		<description>Done.</description>
		<content:encoded><![CDATA[<p>Done.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Milestone! (android notes) by Ankur</title>
		<link>http://simulacra.in/2010/04/milestone-android-notes/comment-page-1/#comment-3092</link>
		<dc:creator>Ankur</dc:creator>
		<pubDate>Mon, 26 Apr 2010 05:44:04 +0000</pubDate>
		<guid isPermaLink="false">http://simulacra.in/?p=459#comment-3092</guid>
		<description>Can u email me the price ?</description>
		<content:encoded><![CDATA[<p>Can u email me the price ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Random Ubuntu tip of the day—Spell check everywhere by Luke</title>
		<link>http://simulacra.in/2007/11/random-ubuntu-tip-of-the-day-spell-check-everywhere/comment-page-1/#comment-3091</link>
		<dc:creator>Luke</dc:creator>
		<pubDate>Wed, 17 Mar 2010 21:01:08 +0000</pubDate>
		<guid isPermaLink="false">http://simulacra.in/2007/11/random-ubuntu-tip-of-the-day-spell-check-everywhere/#comment-3091</guid>
		<description>I tried this and the script didn&#039;t behave the way that I expected. I loved the idea thought so I made some changes. Instead of using xclip I used xsel. I found that by using xsel I could get the output from the spell checker to properly be put in the clipboard. I wasn&#039;t able to access where xclip was putting the final result with ctrl-v in applications. This was a problem since I wanted to quickly paste the correct spelling back into the application where I was working. Here is what I did. 


#!/usr/bin/env bash
# Copy clipboard contents to a temp file
xsel -ob &gt; /tmp/spell.tmp
# Run aspell on that file
aspell check /tmp/spell.tmp
# Copy the results back to the clipboard
cat /tmp/spell.tmp &#124; xsel -ib
exit</description>
		<content:encoded><![CDATA[<p>I tried this and the script didn&#039;t behave the way that I expected. I loved the idea thought so I made some changes. Instead of using xclip I used xsel. I found that by using xsel I could get the output from the spell checker to properly be put in the clipboard. I wasn&#039;t able to access where xclip was putting the final result with ctrl-v in applications. This was a problem since I wanted to quickly paste the correct spelling back into the application where I was working. Here is what I did. </p>
<p>#!/usr/bin/env bash<br />
# Copy clipboard contents to a temp file<br />
xsel -ob &gt; /tmp/spell.tmp<br />
# Run aspell on that file<br />
aspell check /tmp/spell.tmp<br />
# Copy the results back to the clipboard<br />
cat /tmp/spell.tmp | xsel -ib<br />
exit</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Workspace by Ankit Solanki</title>
		<link>http://simulacra.in/2010/01/workspace/comment-page-1/#comment-3088</link>
		<dc:creator>Ankit Solanki</dc:creator>
		<pubDate>Tue, 26 Jan 2010 06:39:31 +0000</pubDate>
		<guid isPermaLink="false">http://simulacra.in/?p=456#comment-3088</guid>
		<description>Thanks!</description>
		<content:encoded><![CDATA[<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Workspace by Shweta</title>
		<link>http://simulacra.in/2010/01/workspace/comment-page-1/#comment-3087</link>
		<dc:creator>Shweta</dc:creator>
		<pubDate>Mon, 25 Jan 2010 11:30:06 +0000</pubDate>
		<guid isPermaLink="false">http://simulacra.in/?p=456#comment-3087</guid>
		<description>It&#039;s a beaut!</description>
		<content:encoded><![CDATA[<p>It&#039;s a beaut!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on News by Amit Srivastava</title>
		<link>http://simulacra.in/2009/11/news-3/comment-page-1/#comment-3086</link>
		<dc:creator>Amit Srivastava</dc:creator>
		<pubDate>Sun, 08 Nov 2009 12:59:38 +0000</pubDate>
		<guid isPermaLink="false">http://simulacra.in/?p=447#comment-3086</guid>
		<description>This one is more like a capsule post! Interesting though.</description>
		<content:encoded><![CDATA[<p>This one is more like a capsule post! Interesting though.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Android Awesomeness by Ankit Solanki</title>
		<link>http://simulacra.in/2009/06/android-awesomeness/comment-page-1/#comment-3078</link>
		<dc:creator>Ankit Solanki</dc:creator>
		<pubDate>Sun, 28 Jun 2009 04:35:35 +0000</pubDate>
		<guid isPermaLink="false">http://simulacra.in/?p=442#comment-3078</guid>
		<description>Yup, the Hero looks like the best HTC device out there. 

HTC Magic is selling for 30k (30k!) in India. I&#039;m going to wait for a few months, and let the prices go down.</description>
		<content:encoded><![CDATA[<p>Yup, the Hero looks like the best HTC device out there. </p>
<p>HTC Magic is selling for 30k (30k!) in India. I&#039;m going to wait for a few months, and let the prices go down.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
