<?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>/home/karthik</title>
	<atom:link href="http://carthick.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://carthick.wordpress.com</link>
	<description>:D</description>
	<lastBuildDate>Sun, 27 Nov 2011 09:25:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='carthick.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>/home/karthik</title>
		<link>http://carthick.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://carthick.wordpress.com/osd.xml" title="/home/karthik" />
	<atom:link rel='hub' href='http://carthick.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Linux: Recording soundcard output using arecord</title>
		<link>http://carthick.wordpress.com/2007/11/26/linux-recording-soundcard-output-using-arecord/</link>
		<comments>http://carthick.wordpress.com/2007/11/26/linux-recording-soundcard-output-using-arecord/#comments</comments>
		<pubDate>Mon, 26 Nov 2007 12:13:38 +0000</pubDate>
		<dc:creator>carthick</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[alsa]]></category>
		<category><![CDATA[arecord]]></category>
		<category><![CDATA[recording]]></category>
		<category><![CDATA[sound card]]></category>

		<guid isPermaLink="false">http://carthick.wordpress.com/2007/11/26/linux-recording-soundcard-output-using-arecord/</guid>
		<description><![CDATA[Through this brief article I want to share with you, my experiences as I tried to record audio, playing on my computer speakers. I have a Fedora Core 6 with ALSA configured for my sound card. What I was trying to do was this: Play a song or movie through one of the players available [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=carthick.wordpress.com&amp;blog=1202560&amp;post=6&amp;subd=carthick&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Through this brief article I want to share with you, my experiences as I tried to<br />
record audio, playing on my computer speakers. I have a Fedora Core 6 with ALSA<br />
configured for my sound card.</p>
<p>What I was trying to do was this:<br />
Play a song or movie through one of the players available like: xine, xmms etc.<br />
Record this audio output.</p>
<p>There is an application called KRec which is bundled with KDE, but this app can only record an aRTs ouput, not ALSA&#8217;s. Besides, the output format is not WAV.</p>
<p>When I google&#8217;d for other alternatives, I came across a command line utility called<br />
&#8216;arecord&#8217; which comes with ALSA.</p>
<p>I checked it out and it <em>was</em> installed in my system.<br />
An example command to record soundcard ouput was specified in the <a href="http://linux.die.net/man/1/arecord">man pages </a>and I tried it:</p>
<p><code>arecord -d 10 -f cd -t wav -D copy foobar.wav</code></p>
<p>This command records a 10 second audio clip of CD quality from the device &#8216;copy&#8217;<br />
and the output is in &#8216;wav&#8217; format.<br />
But, the command failed saying that it could not find &#8216;copy&#8217;.</p>
<p>According to the manual the &#8216;copy&#8217; device has to be specified in the user&#8217;s .asoundrc file.<br />
As I did not find the file in my home folder, I created it and named it  &#8217;.asoundrc&#8217; in my home folder and copied the following lines into it:</p>
<p><code>pcm.copy {<br />
type plug<br />
slave {<br />
pcm hw<br />
}<br />
route_policy copy<br />
}</code></p>
<p>Now when I tried the previous command again, it worked!<br />
But unfortunately, when I tried to play the wav file back all I heard was static.</p>
<p>Then I saw that the &#8216;arecord&#8217; man pages referred to the command &#8216;amixer&#8217;.</p>
<p>After a bit of digging I issued the following command:</p>
<p><code>amixer contents</code></p>
<p>This command displays all controls applicable to the sound card.</p>
<p>The ouput of this command listed a control called &#8216;Capture Source&#8217; which was currently set to 3 which meant it was recording from the external microphone.</p>
<p>I set the capture source to 4 which meant &#8216;MIX&#8217;:</p>
<p><code>amixer cset numid=27,iface=MIXER,name='Capture Source" 4</code><br />
(The &#8216;numid&#8217; might be different in your system, use &#8216;amixer controls&#8217;  to find the exact name)</p>
<p>Then I tried the old arecord command:</p>
<p><code>arecord -d 10 -f cd -t wav -D copy foobar.wav</code></p>
<p>After all that waiting, it felt amazing to hear something recorded when I played back foober.wav. But the recording was horrible with a lot of static, so I dug up the man pages again and issued the following command:</p>
<p><code>arecord -d 10 -c 2 -f S16_LE -r 44100 -t wav -D copy foobar.wav</code></p>
<p>This is exactly same as the earlier command (&#8216;-f cd&#8217;internally is actually &#8216;-c2 -r44100 -f S16_LE&#8217;) but now the audio quality was perfect with no noise as far as I could hear.</p>
<p>The output was a bulky file which blew up to 1.7 MB for 10 seconds which is understandable given that the output is wav format.</p>
<p>If you have lame installed on your system you can use the following command to convert wav to MP3.<br />
<code>lame -h foober.wav foobar.mp3</code><br />
Tips:</p>
<p>Do not set you player volume to max while recording. This will introduce noise into your recording. Set it halfway through, say between 50%-60%.</p>
<p>If you do not know how long a recording will take (For example a live interview on LQRadio), set the -d option of &#8216;arecord&#8217; command to an arbitrarily large value like 1400.<br />
This way when you have reached the end of the recording you can just ctrl-c.</p>
<p>Good bye and happy recording.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/carthick.wordpress.com/6/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/carthick.wordpress.com/6/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/carthick.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/carthick.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/carthick.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/carthick.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/carthick.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/carthick.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/carthick.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/carthick.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/carthick.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/carthick.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/carthick.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/carthick.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/carthick.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/carthick.wordpress.com/6/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=carthick.wordpress.com&amp;blog=1202560&amp;post=6&amp;subd=carthick&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://carthick.wordpress.com/2007/11/26/linux-recording-soundcard-output-using-arecord/feed/</wfw:commentRss>
		<slash:comments>52</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bfeada2eb2d796c611a86dde3614aa86?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">carthick</media:title>
		</media:content>
	</item>
		<item>
		<title>The Brain &#8211; Part II</title>
		<link>http://carthick.wordpress.com/2007/06/13/the-brain-part-ii/</link>
		<comments>http://carthick.wordpress.com/2007/06/13/the-brain-part-ii/#comments</comments>
		<pubDate>Wed, 13 Jun 2007 14:19:18 +0000</pubDate>
		<dc:creator>carthick</dc:creator>
				<category><![CDATA[StoryBoard]]></category>

		<guid isPermaLink="false">http://carthick.wordpress.com/2007/06/13/the-brain-part-ii/</guid>
		<description><![CDATA[July 6. &#8220;Hello. I am Dr. R. I am the chief here. What is your name?&#8221;. I could not believe my ears. Darn, I didn&#8217;t even know, I had ears. &#8220;I am A.&#8221;, I said in a shrill voice. Now I couldn&#8217;t believe my tongue. &#8220;Mr A, how do you feel now?&#8221; asked Dr. R. &#8220;I thought [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=carthick.wordpress.com&amp;blog=1202560&amp;post=4&amp;subd=carthick&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>July 6.</strong></p>
<p>&#8220;Hello. I am Dr. R. I am the chief here. What is your name?&#8221;.</p>
<p>I could not believe my ears. Darn, I didn&#8217;t even know, I had ears.</p>
<p>&#8220;I am A.&#8221;, I said in a shrill voice.</p>
<p>Now I couldn&#8217;t believe my tongue.</p>
<p>&#8220;Mr A, how do you feel now?&#8221; asked Dr. R.</p>
<p>&#8220;I thought I was deaf and mute, but it seems I am not. I am still blind though.&#8221;</p>
<p>&#8220;We will soon fix that.&#8221; replied R.</p>
<p><strong>August 3.</strong></p>
<p>I have been quite busy these days. I have found out about the crash, the Daylight&#8217;s crew and where I am lying right now.</p>
<p>It seems, I did survive the crash, but just about. The rest of the crew though were plain unlucky. The unit in SD12 where we crashed, whisked me away to the nearest hospital and I had been in a coma for a couple of months.</p>
<p>But all is not bad, the chief says, I will be able to see in about a month. So, I have something to look forward to (literally), but in the meantime I am reduced to lie here and listen.</p>
<p>The first thing I noticed was that there was a beep every now and then. The warden told me that it was a clock which beeped every hour. Occassionally, I would hear a door opening somewhere, people talking, a faint din of computers and sometimes a laugh. The wierd thing was how the chief talked to me. He would come into the room followed by a group of people at about the tenth beep of the day, which I calculated to be around 3 PM. He would then ask questions, as if they were addressed to a baby, pausing after each word and repeating the whole question in case of a mistake. While we talked, the group listened on, recording the conversation, I guess.</p>
<p><strong>December 12.</strong></p>
<p>The chief came in early today, at the 6th beep to be exact. And he came in alone. I had got to know him quite well and of late he had dropped his wierd accent and started talking to me normally. Today, he had an excited air about him.</p>
<p>&#8220;You seem to be stirred today, chief&#8221;, I asked.</p>
<p>&#8220;Yup.&#8221;, he replied.</p>
<p>&#8220;Well, what it is about?&#8221;</p>
<p>&#8220;How would you like to have a pair of eyes, A?&#8221;</p>
<p>&#8220;I would very much like them&#8221;, I said excitedly.</p>
<p>&#8220;Then I will give it to you. Tomorrow.&#8221; he said and walked away.</p>
<p><strong>December 14.</strong></p>
<p>&#8220;Open your eyes.&#8221; The chief said.</p>
<p>I obeyed and tried to open. Initially, the light in the room seemed to burn my eyes, but I persisted and in time found a blurry image of the room before me. I tried moving my eyes all around and found the chief and his assistants eagerly gaping at me. I tried looking at the my constant companion, the beeping clock, but it was out of my range.</p>
<p>&#8220;Everything is blurred and I cannot move my head.&#8221; I said.</p>
<p>&#8220;It will improve&#8221;, replied the chief.</p>
<p> <strong>December 18.</strong></p>
<p>As my vision got clearer, I began taking in the room and its contents. It was drenched with little blinking lights made by all the computers. I couldn&#8217;t see my body, because of the angle I was lying in, but I could see a large part of the cieling.</p>
<p>The room was completely sealed, which meant there was no natural light. The ceiling was made up of a lot of lamps. I knew about these huge lamps, they were shiny when turned off but when switched on gave a flourascent glow which was pleasant to the eye.</p>
<p>That gave me an idea. If you switched off the lamp closest and directly ahead of me and leave the other lamps on, I could look at the whole room reflected on the lamp, and thus my beeping clock. It was a tempting thought, and I stuck to it.</p>
<p><strong>December 19.</strong></p>
<p>At exactly the third beep of the day, S, the chief&#8217;s assistant came in to check me up. S was a good man and a friend of mine. I had talked to him one day, quite suddenly, and he was startled a good deal. But later, he got used to me and we had become quite good friends.</p>
<p>But, today I was silent when he took my readings. About an hour later, when he was turning to leave, I called to him.</p>
<p>&#8220;S, How are you?&#8221;</p>
<p>&#8220;I am good. How are you doing yourself?.&#8221;</p>
<p>&#8220;Great. S, can you turn off the lamp over there, in front of me. They are hurting my eyes.&#8221;</p>
<p>&#8220;Sure. See you later.&#8221;</p>
<p>I waited impatiently for S to switch off the light. When he did, I saw the part of the room behind me clearly reflected in the lamp. I frantically searched for my beeping clock but could not find it. I had myself heard it three times since this morning, so it had to be somewhere behind me.</p>
<p>Just about then, the clock beeped again and I moved my eyes frantically trying to locate it. I found it at last.</p>
<p>It wasn&#8217;t a clock at all !!! I mean, why would a clock be so huge, with so many wires going into it and coming out of it.</p>
<p>&#8220;Oh..&#8221;, I said to myself,&#8221;that is a computer.&#8221;</p>
<p>&#8220;Then where are those wires going.&#8221;</p>
<p>I carefully followed path of the wires. They connected to other computers and the wires coming out of all the computers were connected to a black box.</p>
<p>That is when I saw myself.</p>
<p>I was numb.</p>
<p>I saw myself floating there, in a glass box. Millions of wires coming out of my brainstem. I closed my cameras and squeezed them.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/carthick.wordpress.com/4/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/carthick.wordpress.com/4/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/carthick.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/carthick.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/carthick.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/carthick.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/carthick.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/carthick.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/carthick.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/carthick.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/carthick.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/carthick.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/carthick.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/carthick.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/carthick.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/carthick.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=carthick.wordpress.com&amp;blog=1202560&amp;post=4&amp;subd=carthick&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://carthick.wordpress.com/2007/06/13/the-brain-part-ii/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bfeada2eb2d796c611a86dde3614aa86?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">carthick</media:title>
		</media:content>
	</item>
		<item>
		<title>The Brain &#8211; Part I</title>
		<link>http://carthick.wordpress.com/2007/06/12/the-brain-part-i/</link>
		<comments>http://carthick.wordpress.com/2007/06/12/the-brain-part-i/#comments</comments>
		<pubDate>Tue, 12 Jun 2007 13:30:44 +0000</pubDate>
		<dc:creator>carthick</dc:creator>
				<category><![CDATA[StoryBoard]]></category>

		<guid isPermaLink="false">http://carthick.wordpress.com/2007/06/12/the-brain-part-i/</guid>
		<description><![CDATA[June 8. Re-entry I was in the deepest state of sleep, you can imagine. I could not say how long I had been asleep. Five days, maybe a week. I am very strong person, of course otherwise how do you explain my survival. But I am very weak now, I cannot feel my body or [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=carthick.wordpress.com&amp;blog=1202560&amp;post=3&amp;subd=carthick&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>June 8. Re-entry<br />
</strong>I was in the deepest state of sleep, you can imagine. I could not say how long I had been asleep. Five days, maybe a week. I am very strong person, of course otherwise how do you explain my survival. But I am very weak now, I cannot feel my body or see anything.<br />
I might be in a coma, but wait, can comatose think?.</p>
<p>Let me try to remember how I got here. Ah, yes, the crash, of course.</p>
<p><strong>March 10. The Crash.</strong><br />
The day was ordinary, what I mean by day is of course the 12 hours between 6 and 6. Thats how we marked day. Not by sunlight, we did not have that luxury aboard the Daylight. How ironic, no daylight aboard the Daylight. We had reached a point where the sun became but a small blip on the navigation panel, and invisible if you peeked out of your portal window.</p>
<p>&#8220;Report at +07 01 12 March 10 2054.<br />
 Mean distance = 2054 AUs from Sun and 1542 AUs from SD12.<br />
 Computing data for LS jump. Estimated computation time 6 hours.<br />
 Critcality attainment at +13 50 00.<br />
 Next LS jump at +14 00 00.&#8221;</p>
<p>said the ship&#8217;s computer as I read it out aloud. After another jump we should be close to SD12 and then would be time to wake up the crew from their sleep.</p>
<p><strong>March 10 +13 50 00.</strong><br />
The ship wizzed and suddenly felt alive. No matter how many times I had experienced this, it never failed to give me the thrills. It was preparing for another jump.</p>
<p>&#8220;Current co-ordinates 09139764301244977321500&#8243;<br />
 Destination co-ordiantes 1206647896355214556877<br />
 Error percentage 1E-96 +/- 1E-102&#8243;<br />
I looked at the screen, smiled at the chances of error. I closed my eyes. There was a zip.<br />
When I opened them, the smile vanished. Where was SD12? A second later, the planet came out suddenly in my view, and ground was approaching fast. I was numb at the sight. &#8220;This cannot be&#8221; I said to myself. The last few things I heard were the bellow of the ships fins trying to slow down the descent and the bang that came in the end.</p>
<p><strong>June 20.</strong><br />
It is horrible to lie on a bed when you can think, but cannot see, hear or talk. You tend to believe that the world is a black box with you trapped inside, nowhere to go because, awkwardly there is no place to go. You think about things until you exhaust everything there is to think about. You wait with bated breath, to hear the most faintest sound not your own.<br />
But I haven&#8217;t heard so much as a whisper.</p>
<p><strong>June 24<br />
</strong>Silence.</p>
<p><strong>June 25.</strong><br />
Silence.</p>
<p><strong>June 26.<br />
</strong>Silence. I think I am dead.</p>
<p><strong>June 27</strong><br />
A whir. I am not dead.</p>
<p><strong>July 1.</strong><br />
Noise.</p>
<p><strong>July 3.<br />
</strong>More noise. Unbearable noise, I wish I could go back to silence.</p>
<p><strong>July 4.<br />
</strong>Silence.</p>
<p>..To Be Continued..</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/carthick.wordpress.com/3/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/carthick.wordpress.com/3/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/carthick.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/carthick.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/carthick.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/carthick.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/carthick.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/carthick.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/carthick.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/carthick.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/carthick.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/carthick.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/carthick.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/carthick.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/carthick.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/carthick.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=carthick.wordpress.com&amp;blog=1202560&amp;post=3&amp;subd=carthick&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://carthick.wordpress.com/2007/06/12/the-brain-part-i/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bfeada2eb2d796c611a86dde3614aa86?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">carthick</media:title>
		</media:content>
	</item>
		<item>
		<title>A short conv.</title>
		<link>http://carthick.wordpress.com/2007/06/06/hello-world/</link>
		<comments>http://carthick.wordpress.com/2007/06/06/hello-world/#comments</comments>
		<pubDate>Wed, 06 Jun 2007 13:00:47 +0000</pubDate>
		<dc:creator>carthick</dc:creator>
				<category><![CDATA[RandomWrites]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Hi, Welcome to my page. Here is a short conv. I conjured. What do you think about it?? Guest: How kind of you to let me come. Host: It was nothing. G: I really must thank you. H: You musn&#8217;t. G: Yes. Thanks indeed. H: My pleasure. G: I mean, I am awfully obliged. H: [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=carthick.wordpress.com&amp;blog=1202560&amp;post=1&amp;subd=carthick&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hi,  Welcome to my page. Here is a short conv. I conjured. What do you think about it??</p>
<p>Guest: How kind of you to let me come.</p>
<p>Host: It was nothing.</p>
<p>G: I really must thank you.</p>
<p>H: You musn&#8217;t.</p>
<p>G: Yes. Thanks indeed.</p>
<p>H: My pleasure.</p>
<p>G: I mean, I am awfully obliged.</p>
<p>H: But, I thought you liked it.</p>
<p>G: No. I don&#8217;t mean it was awful of you !!</p>
<p>H: That is a relief.</p>
<p>G: Though, I do admit, I am a trifle uneasy.</p>
<p>H: What can I do to ease you?</p>
<p>G: That man over there hasn&#8217;t stopped ogling at me since I arrived.</p>
<p>H: That&#8217;s my husband!!</p>
<p>G: I feel like a mannequin in a bazaar.</p>
<p>H: He is not looking at you.</p>
<p>G: oh, why did you invite me here you dim nitwit.</p>
<p>H: What?!!</p>
<p>G: Really it was cruel of you to let me come.</p>
<p>H: Shall I lead you to the door.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/carthick.wordpress.com/1/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/carthick.wordpress.com/1/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/carthick.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/carthick.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/carthick.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/carthick.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/carthick.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/carthick.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/carthick.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/carthick.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/carthick.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/carthick.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/carthick.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/carthick.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/carthick.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/carthick.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=carthick.wordpress.com&amp;blog=1202560&amp;post=1&amp;subd=carthick&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://carthick.wordpress.com/2007/06/06/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bfeada2eb2d796c611a86dde3614aa86?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">carthick</media:title>
		</media:content>
	</item>
	</channel>
</rss>
