<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Ology on Noetic Nought</title>
    <link>https://punchagan.muse-amuse.in/tags/ology/</link>
    <description>Recent content in Ology on Noetic Nought</description>
    <generator>Hugo</generator>
    <language>en-US</language>
    <copyright>© 2006-2026 CC-BY-SA-4.0</copyright>
    <lastBuildDate>Mon, 04 Oct 2010 00:00:00 +0530</lastBuildDate>
    <atom:link href="https://punchagan.muse-amuse.in/tags/ology/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Augmented assignment in Python</title>
      <link>https://punchagan.muse-amuse.in/blog/augmented-assignment-in-python/</link>
      <pubDate>Mon, 04 Oct 2010 00:00:00 +0530</pubDate>
      <guid>https://punchagan.muse-amuse.in/blog/augmented-assignment-in-python/</guid>
      <description>&lt;p&gt;If you are new to &lt;code&gt;Python&lt;/code&gt;, you should probably stop reading here.&#xA;But, if you have used &lt;code&gt;Python&lt;/code&gt; and &lt;code&gt;numpy&lt;/code&gt;, then read on. Before, that&#xA;try these bits of code.&lt;/p&gt;&#xA;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-python&#34; data-lang=&#34;python&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;kn&#34;&gt;import&lt;/span&gt; &lt;span class=&#34;nn&#34;&gt;numpy&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;n&#34;&gt;a&lt;/span&gt; &lt;span class=&#34;o&#34;&gt;=&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;numpy&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;array&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;([&lt;/span&gt;&lt;span class=&#34;mi&#34;&gt;1&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;&lt;span class=&#34;mi&#34;&gt;2&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;])&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;n&#34;&gt;a&lt;/span&gt; &lt;span class=&#34;o&#34;&gt;=&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;a&lt;/span&gt; &lt;span class=&#34;o&#34;&gt;+&lt;/span&gt; &lt;span class=&#34;mf&#34;&gt;0.5&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;j&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;nb&#34;&gt;print&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;a&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;The &amp;ldquo;same thing&amp;rdquo;, in a slightly different way.&lt;/p&gt;&#xA;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-python&#34; data-lang=&#34;python&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;kn&#34;&gt;import&lt;/span&gt; &lt;span class=&#34;nn&#34;&gt;numpy&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;n&#34;&gt;a&lt;/span&gt; &lt;span class=&#34;o&#34;&gt;=&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;numpy&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;array&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;([&lt;/span&gt;&lt;span class=&#34;mi&#34;&gt;1&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;&lt;span class=&#34;mi&#34;&gt;2&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;])&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;n&#34;&gt;a&lt;/span&gt; &lt;span class=&#34;o&#34;&gt;+=&lt;/span&gt; &lt;span class=&#34;mf&#34;&gt;0.5&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;j&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;nb&#34;&gt;print&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;a&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;Both the code blocks, look really the same, until you look carefully.&#xA;Under normal circumstances &lt;kbd&gt;a = a + b&lt;/kbd&gt; and &lt;kbd&gt;a += b&lt;/kbd&gt; behave exactly&#xA;similarly, and we really don&amp;rsquo;t need to bother about the differences&#xA;between them.&lt;/p&gt;&#xA;&lt;p&gt;But, &lt;kbd&gt;+=&lt;/kbd&gt;, which is an augmented assignment operator, actually tries&#xA;to perform the operation in-place, unlike the other statement where&#xA;&lt;code&gt;+&lt;/code&gt; actually returns a new object which is again being referenced by&#xA;the name &lt;code&gt;a&lt;/code&gt;.&lt;/p&gt;&#xA;&lt;p&gt;But, when dealing with &lt;code&gt;numpy&lt;/code&gt; arrays, this will lead to trouble.&#xA;When assigning to an array, it&amp;rsquo;s &lt;code&gt;dtype&lt;/code&gt; is not changed and hence the&#xA;trouble.&lt;/p&gt;&#xA;&lt;p&gt;The right way to use the augmented assignment operator, would be:&lt;/p&gt;&#xA;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-python&#34; data-lang=&#34;python&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;kn&#34;&gt;import&lt;/span&gt; &lt;span class=&#34;nn&#34;&gt;numpy&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;n&#34;&gt;a&lt;/span&gt; &lt;span class=&#34;o&#34;&gt;=&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;numpy&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;array&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;([&lt;/span&gt;&lt;span class=&#34;mi&#34;&gt;1&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;&lt;span class=&#34;mi&#34;&gt;2&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;],&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;dtype&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;=&lt;/span&gt;&lt;span class=&#34;nb&#34;&gt;complex&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;)&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;n&#34;&gt;a&lt;/span&gt; &lt;span class=&#34;o&#34;&gt;+=&lt;/span&gt; &lt;span class=&#34;mf&#34;&gt;0.5&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;j&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;nb&#34;&gt;print&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;a&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;The same thing is explained in this thread.  Also, Thanks to&#xA;Bhanukiran for asking me this.&lt;/p&gt;&#xA;</description>
    </item>
    <item>
      <title>A GNU and a friend</title>
      <link>https://punchagan.muse-amuse.in/blog/a-gnu-and-a-friend/</link>
      <pubDate>Tue, 07 Sep 2010 00:00:00 +0530</pubDate>
      <guid>https://punchagan.muse-amuse.in/blog/a-gnu-and-a-friend/</guid>
      <description>&lt;p&gt;I now have a GNU! I bought it (a GNU soft toy) in memory of my friend&#xA;swathanthran from #emacs-in.  RIP swathanthran&lt;/p&gt;&#xA;&lt;p&gt;As a bonus, I got the chance to have a photograph with just RMS and&#xA;me. Also, hoping the monetary contribution will be of some use to&#xA;FSF-India.&lt;/p&gt;&#xA;&lt;p&gt;The thrill of getting the GNU (and the GNU itself) and shaking hands,&#xA;getting photographed with RMS is dedicated to all the lafoots and&#xA;specially to Voodoo, who taught me the meaning of the word &amp;ldquo;hacker&amp;rdquo;.&lt;/p&gt;&#xA;&lt;p&gt;Happy Hacking!&lt;/p&gt;&#xA;&lt;p&gt;ps: I just hope and pray nobody else does anything as stupid and&#xA;shocking as what swathanthran did.&lt;/p&gt;&#xA;</description>
    </item>
    <item>
      <title>org2blog on the web</title>
      <link>https://punchagan.muse-amuse.in/blog/org2blog-on-the-web/</link>
      <pubDate>Sun, 29 Aug 2010 00:00:00 +0530</pubDate>
      <guid>https://punchagan.muse-amuse.in/blog/org2blog-on-the-web/</guid>
      <description>&lt;p&gt;Well, it&amp;rsquo;s been a week of lull on my blog.  Not that I&amp;rsquo;m very&#xA;busy.  But, just didn&amp;rsquo;t have anything to post.  I was feeling jobless&#xA;today and searched the web for org2blog users.  Here is what I found.&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;This is a test post from org2blog&lt;/p&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;Posting from emacs and org-mode&lt;/p&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;Vim vs Emacs, or why it really doesn’t matter&lt;/p&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;Posting subtree from org-mode buffer (take 2)&lt;/p&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;Here’s a test post to wordpress for Org2blog – an Emacs plugin&lt;/p&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;Primeiro post usando org2blog&lt;/p&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;Emacs中绘图－ ditaa篇&lt;/p&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;org2blog on identi.ca&lt;/p&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;Marcel van der Boom &amp;ndash; StatusNet&lt;/p&gt;&#xA;&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;</description>
    </item>
    <item>
      <title>Vimperator and Firemacs!</title>
      <link>https://punchagan.muse-amuse.in/blog/vimperator-and-firemacs/</link>
      <pubDate>Wed, 28 Jul 2010 00:00:00 +0530</pubDate>
      <guid>https://punchagan.muse-amuse.in/blog/vimperator-and-firemacs/</guid>
      <description>&lt;p&gt;For the uninitiated, vimperator is an emacs plugin to get Firefox&#xA;working with vim keybindings and firemacs &lt;sup id=&#34;fnref:1&#34;&gt;&lt;a href=&#34;#fn:1&#34; class=&#34;footnote-ref&#34; role=&#34;doc-noteref&#34;&gt;1&lt;/a&gt;&lt;/sup&gt; is for emacs keybindings.&lt;/p&gt;&#xA;&lt;p&gt;I&amp;rsquo;m obsessed with emacs (as should already be evident) and can&amp;rsquo;t&#xA;really edit text without it&amp;rsquo;s key-bindings. There are others like me,&#xA;and hence the firemacs plugin. It&amp;rsquo;s a blessing for my tribe.&lt;/p&gt;&#xA;&lt;p&gt;Firemacs is great, except for the one great feature that it lacks -&#xA;being able to jump to links/textareas without using the mouse.  I&amp;rsquo;ve&#xA;seen Nishanth do it with ease, using Vimperator. I wanted to add this&#xA;feature to Firemacs, by copying some code from Vimperator to&#xA;Firemacs.  I directly started looking at the code, but couldn&amp;rsquo;t make&#xA;head or tail of it. I got a few doubts about how Vimperator works,&#xA;since I&amp;rsquo;d never used it. Nishanth asked me to simply install it and&#xA;try it out.&lt;/p&gt;&#xA;&lt;p&gt;And then we had our EUREKA! moment. Vimperator and Emacs both&#xA;enabled together work seamlessly well. Two obsessed people are happy&#xA;and satisfied! And hopefully many more. :D&lt;/p&gt;&#xA;&lt;div class=&#34;footnotes&#34; role=&#34;doc-endnotes&#34;&gt;&#xA;&lt;hr&gt;&#xA;&lt;ol&gt;&#xA;&lt;li id=&#34;fn:1&#34;&gt;&#xA;&lt;p&gt;Key-bindings are a religious thing, in the world of editors!&amp;#160;&lt;a href=&#34;#fnref:1&#34; class=&#34;footnote-backref&#34; role=&#34;doc-backlink&#34;&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;/div&gt;&#xA;</description>
    </item>
    <item>
      <title>Sage Days 25, Mumbai, India</title>
      <link>https://punchagan.muse-amuse.in/blog/sage-days-25-mumbai-india/</link>
      <pubDate>Wed, 21 Jul 2010 00:00:00 +0530</pubDate>
      <guid>https://punchagan.muse-amuse.in/blog/sage-days-25-mumbai-india/</guid>
      <description>&lt;h2 id=&#34;what-is-sage-days&#34;&gt;What is &amp;lsquo;Sage Days&amp;rsquo;?&lt;/h2&gt;&#xA;&lt;p&gt;Sage Days is a confluence of present and prospective SAGE Users and&#xA;Developers. It is an opportunity to come together to share ideas,&#xA;brainstorm and hack on Sage. Sage Days 25 is the 25th version of Sage&#xA;Days, and is being organized in Mumbai, India. In order to cater to an&#xA;Indian audience and scenario, this version has been tweaked&#xA;slightly. Sage Days 25 has beginner level tutorials, in addition to&#xA;the usual talks and sprints, to help new users get started with Sage&#xA;and help promote the use of Sage in India.&lt;/p&gt;&#xA;&lt;h2 id=&#34;what-is-sage&#34;&gt;What is Sage?&lt;/h2&gt;&#xA;&lt;p&gt;Sage is a free, open-source mathematics software system licensed under&#xA;the GPL. It combines the power of numerous existing open-source&#xA;packages into a common Python-based interface. It&amp;rsquo;s mission is to&#xA;create a &amp;ldquo;viable free open source alternative to Magma, Maple,&#xA;Mathematica and Matlab&amp;rdquo;. Sage has tools for a broad range of&#xA;mathematical areas like Linear Algebra, Calculus, Symbolic Math,&#xA;Plotting, Rings &amp;amp; Groups, Graph Theory, Number Theory and&#xA;Cryptography. Essentially, &amp;ldquo;it can do anything from mapping a&#xA;12-dimensional object to calculating rainfall patterns under global&#xA;warming&amp;rdquo; - as Science Daily puts it . Eager to get started? Start&#xA;here. Apart from being feature rich, it&amp;rsquo;s usability is one of it&amp;rsquo;s&#xA;greatest strengths. Sage Notebook, a web-interface for all the math&#xA;you&amp;rsquo;ll ever want to do, is really the killer feature! As the Sage&#xA;Marketing page says, &amp;ldquo;The SAGE GUI surely works on your computer box,&#xA;because it just runs in Firefox!&amp;rdquo;. Try it Now!&lt;/p&gt;&#xA;&lt;h2 id=&#34;why-should-you-attend&#34;&gt;Why should you attend?&lt;/h2&gt;&#xA;&lt;p&gt;Sage Days 25 is being attended by the creator and lead developer of&#xA;Sage, Prof. William Stein. It will also be attended by other&#xA;developers of Sage. This would be a great opportunity to meet and&#xA;interact with them! The conference will be attended by a plethora of&#xA;enthusiastic people from all over the country who use Sage or are&#xA;interested in doing so. The conference will also see the presence of&#xA;many mathematicians interested in software. Who knows, you may run&#xA;into someone you&amp;rsquo;d want to collaborate with, for your future work!&#xA;This event will be a great learning experience, if you are even&#xA;remotely interested in math and software for it!&lt;/p&gt;&#xA;&lt;h2 id=&#34;when-and-where&#34;&gt;When and Where?&lt;/h2&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Venue: IIT-Bombay, Mumbai, India&lt;/li&gt;&#xA;&lt;li&gt;Dates: August 9-12, 2010&lt;/li&gt;&#xA;&lt;li&gt;Tentative Schedule&lt;/li&gt;&#xA;&lt;li&gt;Register Here&lt;/li&gt;&#xA;&lt;li&gt;Click here for more info&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;</description>
    </item>
    <item>
      <title>talk at GNUnify&#39; 10</title>
      <link>https://punchagan.muse-amuse.in/blog/talk-at-gnunify-10/</link>
      <pubDate>Sun, 28 Feb 2010 00:00:00 +0530</pubDate>
      <guid>https://punchagan.muse-amuse.in/blog/talk-at-gnunify-10/</guid>
      <description>&lt;p&gt;Shantanu and I conducted a workshop on Scipy at GNUnify &amp;lsquo;10. It&#xA;was intended to be an introduction to Scipy and Numpy through&#xA;Image processing. We expected an audience which was python&#xA;literate. But GNUnify&amp;rsquo;s schedule wasn&amp;rsquo;t too favorable for us. Ours&#xA;was the first talk scheduled and we ended up getting people who&#xA;only &amp;ldquo;heard&amp;rdquo; of Python, the language.&lt;/p&gt;&#xA;&lt;p&gt;We had planned quite a bit of stuff expecting a python literate&#xA;audience. But unfortunately, we had to start almost from scratch&#xA;and couldn&amp;rsquo;t do all of what we planned. Still, the workshop wasn&amp;rsquo;t&#xA;too bad. Nobody left mid-way during the 2 hour workshop; nobody&#xA;was dozing either.  I would have liked my first talk at a FOSS&#xA;event to be better, though.&lt;/p&gt;&#xA;&lt;p&gt;Slides and Images that we used.  Shantanu&amp;rsquo;s post on the talk is&#xA;here.&lt;/p&gt;&#xA;</description>
    </item>
    <item>
      <title>Monikers and the Internet</title>
      <link>https://punchagan.muse-amuse.in/blog/monikers-and-the-internet/</link>
      <pubDate>Sat, 27 Feb 2010 00:00:00 +0530</pubDate>
      <guid>https://punchagan.muse-amuse.in/blog/monikers-and-the-internet/</guid>
      <description>&lt;p&gt;Like most bloggers, I keep looking at my blogs hits once in a&#xA;while. (Sometimes inspires to write better; and more often.) The&#xA;post that gets most hits these days is my post on mailman,&#xA;postfix, et al. But the search term that&amp;rsquo;s increasingly bringing&#xA;people to my blog is &amp;ldquo;punchagan&amp;rdquo;.&lt;/p&gt;&#xA;&lt;p&gt;This scares me. What makes people search for me? What makes people&#xA;search more often these days? Why am I scared?&lt;/p&gt;&#xA;&lt;p&gt;Why do people use monikers or online identities? I started off&#xA;with the idea of anonymity and privacy; keeping my online identify&#xA;separate from my real one. But it, obviously, is a folly to have&#xA;you email id with the same handle. Now, almost anybody who knows&#xA;me, also knows my online handle. They can find me anywhere and&#xA;everywhere with just a few keystrokes (and Google). Also, the&#xA;uniqueness of my handle doesn&amp;rsquo;t help one bit. Any search returns&#xA;over 90% relevant results.&lt;/p&gt;&#xA;&lt;p&gt;Is it time to get lost in the crowd with a new handle? ;) Probably&#xA;not. I don&amp;rsquo;t have much to hide under the covers. Let the world see&#xA;&amp;ndash; who I am, who I have been; where I am, where I have been.&lt;/p&gt;&#xA;&lt;p&gt;Peace.&lt;/p&gt;&#xA;</description>
    </item>
    <item>
      <title>numpy, pacman and me</title>
      <link>https://punchagan.muse-amuse.in/blog/numpy-pacman-and-me/</link>
      <pubDate>Sun, 31 Jan 2010 00:00:00 +0530</pubDate>
      <guid>https://punchagan.muse-amuse.in/blog/numpy-pacman-and-me/</guid>
      <description>&lt;p&gt;I&amp;rsquo;m now officially a part of the Arch Linux community! Arch Linux&#xA;is a lightweight and flexible Linux® distribution that tries to&#xA;Keep It Simple.&lt;/p&gt;&#xA;&lt;p&gt;I have started using arch from less than a week or so. It took me&#xA;a while, not too long, to realize the beauty of this distro. I was&#xA;trying to tweak the settings of my org-mode&amp;rsquo;s remember (on&#xA;Karmic), trying to make it work the way I liked it. After breaking&#xA;my head with .emacs and lisp for a while, I realized the version&#xA;of my org-mode was way different from the version of the docs, I&#xA;was reading. It didn&amp;rsquo;t take long to figure out, which version of&#xA;org-mode to get. As a matter of curiosity, I checked AUR for the&#xA;version, and true to Arch&amp;rsquo;s reputation it was bleeding edge! I was&#xA;still using Karmic, since I hadn&amp;rsquo;t got my Arch installation&#xA;working the way I like it, yet. Out of laziness. sudo reboot; to&#xA;hell with laziness!&lt;/p&gt;&#xA;&lt;p&gt;I was setting up things I regularly use, tweaking my way&#xA;around. After a day or so, I find python-numpy is out of date. And&#xA;to top it, an orphaned package! I didn&amp;rsquo;t feel one bit good about&#xA;this. After some futile attempts to suppress my discomfort, I sat&#xA;down to work.&lt;/p&gt;&#xA;&lt;p&gt;After an afternoon of effort, I created my first PKGBUILD. :) I&#xA;now have python-numpy installed using pacman! Pleasure to join the&#xA;Arch User Community! Also, thanks to lifeeth and Lynus Vaz, for&#xA;the sparks.&lt;/p&gt;&#xA;&lt;p&gt;PS: I&amp;rsquo;m using Arch with Openbox. It&amp;rsquo;s neat! PPS: org-mode is&#xA;really awesome! It&amp;rsquo;s a world in itself. life in plain text,&#xA;truly!]&lt;/p&gt;&#xA;</description>
    </item>
    <item>
      <title>Stress and us</title>
      <link>https://punchagan.muse-amuse.in/blog/stress-and-us/</link>
      <pubDate>Fri, 25 Sep 2009 00:00:00 +0530</pubDate>
      <guid>https://punchagan.muse-amuse.in/blog/stress-and-us/</guid>
      <description>&lt;p&gt;&lt;em&gt;[Cross-posted on the FOSSEE Blog]&lt;/em&gt;&lt;/p&gt;&#xA;&lt;p&gt;Don&amp;rsquo;t tell me I didn&amp;rsquo;t warn you, if you walk into our lab sometime&#xA;and mistake it for a game zone in your neighbourhood. You are&#xA;indeed in &amp;ldquo;the&amp;rdquo; lab. If you came looking for Prof. Prabhu you&amp;rsquo;ll&#xA;have to return. You&amp;rsquo;ll only find PR vowing to see the end of&#xA;baali, for having a nice time pawning him. You won&amp;rsquo;t find me&#xA;around - I&amp;rsquo;m cloaked and busy creating havoc. Unless, of course,&#xA;you are the seer KD. Watch your step extremely carefully or you&#xA;won&amp;rsquo;t know when and how fuchmed&amp;rsquo;s GM hit you. And don&amp;rsquo;t dare&#xA;venture anywhere near madrazr, jumping all around with a&#xA;shockwave, unless you are capable enjoying some real nasty&#xA;shocks. Well, the team is busy in one of it&amp;rsquo;s two SB sessions per&#xA;day. SB (short for Stress Buster) sessions are intense 15 minute&#xA;rounds of bzflag - 3D first person tank battle game.&lt;/p&gt;&#xA;&lt;p&gt;Hope you didn&amp;rsquo;t start thinking, I&amp;rsquo;m just goofing off here, doing&#xA;nothing at all. If it&amp;rsquo;s not already clear, SB sessions are exactly&#xA;what they are called - Stress Busters. Just to refresh ourselves&#xA;and get back to work, with greater force. What then, am I doing&#xA;for the rest of my time?&lt;/p&gt;&#xA;&lt;p&gt;Mainly I&amp;rsquo;ve been developing course content that we have been&#xA;working on, called Software Tools, Techniques and Practices. I&#xA;have been working on a session for elementary LaTeX and basic&#xA;Linux tools. I&amp;rsquo;ve also been attending classes of Digital Control&#xA;and trying to Python-ize the Matlab/Scilab code that the course&#xA;uses.&lt;/p&gt;&#xA;&lt;p&gt;But, that&amp;rsquo;s not all. I&amp;rsquo;ve helped a guy restore a Joomla site on&#xA;Day-1. I screwed up a brand new installation of a server with some&#xA;real skill; then expect to be screwed but get some encouragement&#xA;with the words, &amp;ldquo;It was a good learning experience for us.&amp;rdquo; Seen a&#xA;Debian server upgrade from Etch to Lenny in under 10&#xA;minutes. Installed an instance of twiki and struggled to configure&#xA;it. Helped a Humanities Scholar with LaTeX. Attended a workshop on&#xA;Instruction Design. Restored Qmail on an old Fedora 3&#xA;server. Goofed around in gimp, for a CD cover and a T-shirt&#xA;design. Chipped in with bits, for mutating Ubuntu into&#xA;&amp;ldquo;LivePython&amp;rdquo;. Did a bit of css and javascript tweaking&amp;hellip; The list&#xA;goes on!&lt;/p&gt;&#xA;&lt;p&gt;Now, don&amp;rsquo;t you think we deserve the SB&amp;rsquo;s? ;)&lt;/p&gt;&#xA;</description>
    </item>
    <item>
      <title>Postfix &#43; Mailman for Multiple Domains.</title>
      <link>https://punchagan.muse-amuse.in/blog/postfix-mailman-for-multiple-domains/</link>
      <pubDate>Wed, 05 Aug 2009 00:00:00 +0530</pubDate>
      <guid>https://punchagan.muse-amuse.in/blog/postfix-mailman-for-multiple-domains/</guid>
      <description>&lt;p&gt;Well, there are a hazaar tutorials on setting up Postfix and&#xA;Mailman for Debian for a single domain. There were a few for doing&#xA;that for multiple domains also, but nothing comprehensive, if I&#xA;could say so. This link is pretty comprehensive and details all&#xA;the steps for setting up Postfix for a single domain.  Here is all&#xA;you&amp;rsquo;ll want to know about setting up Virtual domains in Postfix.&lt;/p&gt;&#xA;&lt;p&gt;You only need to make a few changes for adding a second (or more)&#xA;domain. You just need to add the &lt;code&gt;virtual_alias_domains&lt;/code&gt; and add&#xA;&lt;code&gt;virtual_alias_maps&lt;/code&gt;. Here is a glimpse of how my &lt;code&gt;main.cf&lt;/code&gt; looks:&lt;/p&gt;&#xA;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-text&#34; data-lang=&#34;text&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;myhostname = mail.abc.in&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;mydomain = abc.in&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;mydestination = $myhostname, $mydomain, localhost.$mydomain&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;myorigin = /etc/mailname&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;virtual_alias_maps =&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;                hash:/etc/postfix/virtual-xyz,&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;                hash:/etc/postfix/virtual-abc,&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;                hash:/var/lib/mailman/data/virtual-mailman&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;virtual_alias_domains = xyz.in, mail.xyz.in&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;&lt;code&gt;virtual-xyz&lt;/code&gt; and &lt;code&gt;virtual-abc&lt;/code&gt; contain the virtual aliases for&#xA;each domain. Note that Postfix expects hash files and hence you&#xA;need to run &lt;code&gt;postmap /etc/postfix/virtual-abc&lt;/code&gt; each&#xA;time the file is changed, to keep the hash file in sync with the&#xA;text file that you edit. Also, you need to run &lt;code&gt;postfix reload&lt;/code&gt;,&#xA;each time you make changes to &lt;code&gt;main.cf&lt;/code&gt; or &lt;code&gt;master.cf&lt;/code&gt;&lt;/p&gt;&#xA;&lt;p&gt;Fairly straight forward, right? But it took me quite sometime to&#xA;get it all right, since this was the first time I was doing&#xA;anything with Mail Transfer Agents or the like.&lt;/p&gt;&#xA;&lt;p&gt;Now, onto Mailman. Well the Installation Manual of Mailman,&#xA;literally has it all. Here is a look at how my&#xA;&lt;code&gt;mm_cfg.py&lt;/code&gt; looks:&lt;/p&gt;&#xA;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-text&#34; data-lang=&#34;text&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;DEFAULT_EMAIL_HOST = &amp;#39;abc.in&amp;#39;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;DEFAULT_URL_HOST   = &amp;#39;mail.abc.in&amp;#39;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;add_virtualhost(DEFAULT_URL_HOST, DEFAULT_EMAIL_HOST)&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;POSTFIX_STYLE_VIRTUAL_DOMAINS=[&amp;#39;xyz.in&amp;#39;]&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;add_virtualhost(&amp;#39;mail.xyz.in&amp;#39;, &amp;#39;xyz.in&amp;#39;)&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;MTA=&amp;#39;Postfix&amp;#39;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;The only trouble was to get mailing lists with same names on both&#xA;the domains (which I couldn&amp;rsquo;t get working). I experimented with&#xA;multiple mailman instances but that won&amp;rsquo;t work because the MTA&#xA;can&amp;rsquo;t differentiate between the two instances of mailman. The&#xA;alternative is probably to have two instances of postfix running&#xA;too. But that I felt was like going too far, and gave up. [What if&#xA;we wanted to add another domain to the list?!]&lt;/p&gt;&#xA;&lt;p&gt;Also, I had to make a few alterations to the Apache file to allow&#xA;access to the mailman pages without breaking the Zope redirection&#xA;that was already set-up.&lt;/p&gt;&#xA;&lt;p&gt;[Thanks to Shantanu and Vattam (and all the hazaar people using&#xA;Postfix and Mailman and cared to document things for the sake of&#xA;others, and of course Google)]&lt;/p&gt;&#xA;</description>
    </item>
    <item>
      <title>FOSS talks at CDEEP</title>
      <link>https://punchagan.muse-amuse.in/blog/foss-talks-at-cdeep/</link>
      <pubDate>Fri, 10 Jul 2009 00:00:00 +0530</pubDate>
      <guid>https://punchagan.muse-amuse.in/blog/foss-talks-at-cdeep/</guid>
      <description>&lt;p&gt;I had the opportunity to attend a FOSS talk session organized by&#xA;Center for Distance Education Engineering Programme (CDEEP) as a&#xA;part of the National Mission on Education through ICT. The&#xA;National Mission on Education through ICT has some lofty goals,&#xA;which when reached will take the country ahead by leaps and&#xA;bounds.&lt;/p&gt;&#xA;&lt;p&gt;The Mission has a budget of $1billion in the 11th Five year plan,&#xA;40% of which will be spent on content generation (all of which&#xA;will be free/open source) and the rest will be spent on making&#xA;available a minimum bandwidth of 1Gbps to the 30,000 odd colleges&#xA;spread over India (out of which around 3000 are Engineering&#xA;colleges). The mission has various projects planned and they are&#xA;picking up steam rapidly. The project I will be working on, for&#xA;the Adoption of Open Source in Engineering and Science Education&#xA;in India, is also a part of this Mission. Prof. Kannan had kick&#xA;started the session with an introduction to the National Mission&#xA;on Education through ICT. The talks were all being webcast to&#xA;various EduSAT centers and on the web.&lt;/p&gt;&#xA;&lt;p&gt;Then, Prof. Pathak talked on, why open source is important. He&#xA;said, (not exactly quoting him) &amp;quot; It is theoritically possible for&#xA;any person to learn and discover things from scratch, but there&amp;rsquo;s&#xA;been only one Ekalavya in the entire history of India.&amp;quot; Education&#xA;is a social activity and hence open access to content is&#xA;absolutely vital. He mentioned various things like how IIT-B has&#xA;been working on Creative Commons licensing and other things going&#xA;on here. He ended the talk with a hope that soon India will move&#xA;from being a net taker of Open source to a net giver to open&#xA;source.&lt;/p&gt;&#xA;&lt;p&gt;This was followed by three talks, delivered by developers from&#xA;RedHat meant for programmers who wish to contribute to FLOSS.&lt;/p&gt;&#xA;&lt;p&gt;The first talk was by Ramakrishna Reddy, titled 10 things a FLOSS&#xA;developer should know. It was a pretty nice and balanced talk,&#xA;covering a wide range of things. I would like to point out a few&#xA;things, that I liked the most.&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;He clarified the term hacker as soon as he used it.&lt;/li&gt;&#xA;&lt;li&gt;He emphasized a lot on groking code; reading code for fun,&#xA;looking at the code of others, reading as much code as&#xA;possible&amp;hellip;&lt;/li&gt;&#xA;&lt;li&gt;He talked of muscle memory of emacsen. I liked the way he talked&#xA;of people being so quick with their editors and how learning to&#xA;use your tools effectively is a big plus&lt;/li&gt;&#xA;&lt;li&gt;Release often, Release early. Everybody talks of it, but he said&#xA;a few words, which I liked. Some developers don&amp;rsquo;t usually&#xA;release their code as early for the fear of being ridiculed. But&#xA;don&amp;rsquo;t bother, &amp;ldquo;we are just small people, in the whole galaxy.&amp;rdquo;&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;The next talk was by Prasad Pandit on How to use Infrastructure&#xA;for FOSS projects. Prasad talked of Website, Version Control,&#xA;Mailing list, IRC, Bugzilla, Wiki and RSS feeds. He gave quite a&#xA;few examples on how each thing is important, most of the examples&#xA;being his personal experiences.&lt;/p&gt;&#xA;&lt;p&gt;The last talk was by Rahul Sundaram and was on Communication in a&#xA;FOSS project. For a change he didn&amp;rsquo;t have slides and the reason&#xA;for that, he said, is that communication in a FOSS project is&#xA;casual and not having slides and walking in with a t-shirt and&#xA;jeans represents that casualness which is a culture of FOSS&#xA;projects&amp;rsquo; communication.&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Be polite, but don&amp;rsquo;t be Formal.&lt;/li&gt;&#xA;&lt;li&gt;Be precise, but do provide a context to what you are saying.&lt;/li&gt;&#xA;&lt;li&gt;Don&amp;rsquo;t fear that you&amp;rsquo;ll say something foolish, which, will be&#xA;archived for eternity. Mistakes are there to learn from. Not&#xA;just you, but others too.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;He talked of quite a lot of things, but these were the things&#xA;which struck me as particularly interesting/important.&lt;/p&gt;&#xA;&lt;p&gt;At the end, all the participants walked out with Fedora 11 DVDs&#xA;from the RedHat/Fedora guys. :D&lt;/p&gt;&#xA;</description>
    </item>
    <item>
      <title>Weblogger.el configured!</title>
      <link>https://punchagan.muse-amuse.in/blog/webloggerel-configured/</link>
      <pubDate>Thu, 19 Mar 2009 00:00:00 +0530</pubDate>
      <guid>https://punchagan.muse-amuse.in/blog/webloggerel-configured/</guid>
      <description>&lt;p&gt;If you see this post, it means weblogger has been successfully&#xA;configured in emacs.  Emacs Rocks. \m/&lt;/p&gt;&#xA;&lt;p&gt;&lt;strong&gt;UPDATE &lt;span class=&#34;timestamp-wrapper&#34;&gt;&lt;span class=&#34;timestamp&#34;&gt;[2010-09-02 Thu]&lt;/span&gt;&lt;/span&gt;&lt;/strong&gt;: I now use org2blog, a small extension to&#xA;emacs orgmode to post to my blog.&lt;/p&gt;&#xA;</description>
    </item>
    <item>
      <title>The &#39;Academic&#39; Internet</title>
      <link>https://punchagan.muse-amuse.in/blog/the-academic-internet/</link>
      <pubDate>Fri, 10 Oct 2008 00:00:00 +0530</pubDate>
      <guid>https://punchagan.muse-amuse.in/blog/the-academic-internet/</guid>
      <description>&lt;blockquote&gt;&#xA;&lt;p&gt;&lt;strong&gt;Notice for the Internet Usage&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;p&gt;Internet Facility is provided to students for academic activities&#xA;and e-mails. It is observed that few students are misusing the&#xA;Internet facility by using excessive internet bandwidth for&#xA;non-academic purposes. The students who are running the hubs are&#xA;strictly informed to close their hubs. Computer Center will be&#xA;starting official hub for the sharing of academic information and&#xA;open source softwares.&lt;/p&gt;&#xA;&lt;p&gt;If a student is found while doing so the network facility will be&#xA;blocked by Computer Center for a semester. Further, a student will&#xA;be called by a disciplinary committee and a severe disciplinary&#xA;action will be taken.&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;&lt;p&gt;This Notice from the Computer Center is creating waves all&#xA;around. This isn&amp;rsquo;t the first time, though, that the people&#xA;in-charge of the Network have &amp;ldquo;acted&amp;rdquo;.&lt;/p&gt;&#xA;&lt;p&gt;Academic activities; wonder what it&amp;rsquo;s definition is, in their&#xA;dictionaries. It surely includes the following.&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Using Internet for &amp;lsquo;academic activities&amp;rsquo; or emails, during&#xA;class-room hours makes no sense.&lt;/li&gt;&#xA;&lt;li&gt;Anything &amp;lsquo;academic&amp;rsquo; cannot have a size greater than 5 MB.&lt;/li&gt;&#xA;&lt;li&gt;Accessing version control systems ( svn, cvs et al ) cannot be&#xA;classified &amp;lsquo;academic&amp;rsquo;&lt;/li&gt;&#xA;&lt;li&gt;IRC cannot teach you anything. Don&amp;rsquo;t ever dream of thinking it&#xA;as &amp;lsquo;academic&amp;rsquo; to hang out on \#python or \#emacs&lt;/li&gt;&#xA;&lt;li&gt;All &amp;lsquo;academic&amp;rsquo; stuff is limited to the http(s) ports. You&#xA;wouldn&amp;rsquo;t need to use any other ports, ever.&lt;/li&gt;&#xA;&lt;li&gt;Any &amp;lsquo;academic&amp;rsquo; activity fits within a span of 2 hours or can be&#xA;done in blocks of 2 hours each, with gaps of 2 hours in between.&lt;/li&gt;&#xA;&lt;li&gt;&amp;lsquo;Academic&amp;rsquo; stuff doesn&amp;rsquo;t definitely contain key-words chosen by&#xA;the &amp;ldquo;all-knowing&amp;rdquo; admins.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;Moreover, the people in-charge who refused to allow the use of a&#xA;computer in the CC as a server for on-campus repositories of&#xA;GNU/Linux packages, now wish to host a &amp;lsquo;hub&amp;rsquo; for sharing&#xA;open-source softwares! There&amp;rsquo;s already an official ftp server&#xA;which hosts the academic info and a few useful softwares. I don&amp;rsquo;t&#xA;see how a hub would be different.&lt;/p&gt;&#xA;&lt;p&gt;We don&amp;rsquo;t have any disciplinary committees for people smoking in&#xA;hostel rooms, causing a lot of trouble for others around them, but&#xA;we are going to have them for hosting hubs. ( Well, a new law&#xA;banning smoking in public places in India has been passed just a&#xA;few days ago. Hopefully it&amp;rsquo;ll work better than the older one,&#xA;since now there&amp;rsquo;s some pressure on the people in-charge of the&#xA;public place. )&lt;/p&gt;&#xA;&lt;p&gt;Also, it could be argued that college isn&amp;rsquo;t meant only for&#xA;&amp;lsquo;academic&amp;rsquo; learning and a lots of other learning takes place here&#xA;(and the hubs were definitely helping quite a bit) but I&amp;rsquo;ll leave&#xA;that for another day, probably. Also, I don&amp;rsquo;t think 18+ year olds,&#xA;people who are about to step into various big roles, leading the&#xA;country need to be told how to make use of the&#xA;facilities/resources available to them; A degree of freedom is&#xA;indispensable, I believe.&lt;/p&gt;&#xA;&lt;p&gt;I appreciate the efforts being made to improve the network&#xA;situation here and also help the students get the most (&#xA;&amp;lsquo;academically&amp;rsquo; ) out of their college experience, but I feel the&#xA;situation deserves more careful handling.&lt;/p&gt;&#xA;</description>
    </item>
    <item>
      <title>Software Freedom Day</title>
      <link>https://punchagan.muse-amuse.in/blog/software-freedom-day/</link>
      <pubDate>Sun, 21 Sep 2008 00:00:00 +0530</pubDate>
      <guid>https://punchagan.muse-amuse.in/blog/software-freedom-day/</guid>
      <description>&lt;p&gt;Three Cheers to &amp;lsquo;Free Software&amp;rsquo;!&lt;/p&gt;&#xA;&lt;p&gt;A toast for GNU on its 25th Birthday!&lt;sup id=&#34;fnref:1&#34;&gt;&lt;a href=&#34;#fn:1&#34; class=&#34;footnote-ref&#34; role=&#34;doc-noteref&#34;&gt;1&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;&#xA;&lt;p&gt;If you intend to ask, what I did on this day, I have nothing to show. I haven&amp;rsquo;t done anything that&amp;rsquo;s tangible but yes, I have re-dedicated myself to the idea of Free Software.&#xA;This post intends to shed some light on a few things (if not for the benefit of others, just as a reminder for myself)&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Free Software is a matter of liberty, not price. I&amp;rsquo;ve often been&#xA;in a position that required me to correct people. &amp;lsquo;Free&#xA;Software&amp;rsquo; is software that&amp;rsquo;s free as in free speech and not free&#xA;beer. For the lack of a better word in english, the word &amp;lsquo;free&amp;rsquo;&#xA;which also means gratis has been used. Using the term &amp;lsquo;Libre&amp;rsquo;&#xA;sometimes helps and if you are in this part of the world, &amp;ldquo;mukt&amp;rdquo;&#xA;is the best word to use.&lt;/li&gt;&#xA;&lt;li&gt;Free Software&lt;sup id=&#34;fnref:2&#34;&gt;&lt;a href=&#34;#fn:2&#34; class=&#34;footnote-ref&#34; role=&#34;doc-noteref&#34;&gt;2&lt;/a&gt;&lt;/sup&gt; comes along with four fundamental freedoms. To put&#xA;it simply, the freedom to use, study, share and modify any&#xA;software.&lt;/li&gt;&#xA;&lt;li&gt;Free Software may have the advantage of being &amp;rsquo;technically&#xA;sounder&amp;rsquo;, but the philosophy is what matters the most to me.&lt;/li&gt;&#xA;&lt;li&gt;I will do whatever is possible within my capacity to spread the&#xA;philosophy and the associated freedom&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;Be Free, My Friend!&lt;/p&gt;&#xA;&lt;p&gt;Here is an extract from one of Stallman&amp;rsquo;s &lt;sup id=&#34;fnref:3&#34;&gt;&lt;a href=&#34;#fn:3&#34; class=&#34;footnote-ref&#34; role=&#34;doc-noteref&#34;&gt;3&lt;/a&gt;&lt;/sup&gt; essays:&lt;/p&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;We must talk about Freedom&lt;/p&gt;&#xA;&lt;p&gt;Estimates today are that there are ten million users of&#xA;GNU/Linux systems such as Debian GNU/Linux and Red Hat&#xA;Linux. Free software has developed such practical advantages&#xA;that users are flocking to it for purely practical reasons.&lt;/p&gt;&#xA;&lt;p&gt;The good consequences of this are evident: more interest in&#xA;developing free software, more customers for free software&#xA;businesses, and more ability to encourage companies to develop&#xA;commercial free software instead of proprietary software&#xA;products.&lt;/p&gt;&#xA;&lt;p&gt;But interest in the software is growing faster than awareness&#xA;of the philosophy it is based on, and this leads to&#xA;trouble. Our ability to meet the challenges and threats&#xA;described above depends on the will to stand firm for&#xA;freedom. To make sure our community has this will, we need to&#xA;spread the idea to the new users as they come into the&#xA;community.&lt;/p&gt;&#xA;&lt;p&gt;But we are failing to do so: the efforts to attract new users&#xA;into our community are far outstripping the efforts to teach&#xA;them the civics of our community. We need to do both, and we&#xA;need to keep the two efforts in balance.&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;&lt;hr&gt;&#xA;&lt;div class=&#34;footnotes&#34; role=&#34;doc-endnotes&#34;&gt;&#xA;&lt;hr&gt;&#xA;&lt;ol&gt;&#xA;&lt;li id=&#34;fn:1&#34;&gt;&#xA;&lt;p&gt;&lt;a href=&#34;http://www.gnu.org/fry/&#34;&gt;http://www.gnu.org/fry/&lt;/a&gt;&amp;#160;&lt;a href=&#34;#fnref:1&#34; class=&#34;footnote-backref&#34; role=&#34;doc-backlink&#34;&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;/li&gt;&#xA;&lt;li id=&#34;fn:2&#34;&gt;&#xA;&lt;p&gt;The Free Software Definition&amp;#160;&lt;a href=&#34;#fnref:2&#34; class=&#34;footnote-backref&#34; role=&#34;doc-backlink&#34;&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;/li&gt;&#xA;&lt;li id=&#34;fn:3&#34;&gt;&#xA;&lt;p&gt;The GNU Project by Richard Stallman&amp;#160;&lt;a href=&#34;#fnref:3&#34; class=&#34;footnote-backref&#34; role=&#34;doc-backlink&#34;&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;/div&gt;&#xA;</description>
    </item>
    <item>
      <title>A Byte of Python</title>
      <link>https://punchagan.muse-amuse.in/blog/a-byte-of-python/</link>
      <pubDate>Sun, 07 Sep 2008 00:00:00 +0530</pubDate>
      <guid>https://punchagan.muse-amuse.in/blog/a-byte-of-python/</guid>
      <description>&lt;p&gt;This post&amp;rsquo;s been inspired by a wonderful book, &amp;ldquo;A Byte of&#xA;Python&amp;rdquo;&lt;sup id=&#34;fnref:1&#34;&gt;&lt;a href=&#34;#fn:1&#34; class=&#34;footnote-ref&#34; role=&#34;doc-noteref&#34;&gt;1&lt;/a&gt;&lt;/sup&gt; by Swaroop C H. The book has been revised after a&#xA;gap of nearly 4 years and the wait is worth it! I thoroughly loved&#xA;the book, and I&amp;rsquo;m happy to be accompanied by so many&lt;sup id=&#34;fnref:2&#34;&gt;&lt;a href=&#34;#fn:2&#34; class=&#34;footnote-ref&#34; role=&#34;doc-noteref&#34;&gt;2&lt;/a&gt;&lt;/sup&gt;&#xA;others&lt;sup id=&#34;fnref:3&#34;&gt;&lt;a href=&#34;#fn:3&#34; class=&#34;footnote-ref&#34; role=&#34;doc-noteref&#34;&gt;3&lt;/a&gt;&lt;/sup&gt;. This book has filled me with a sense of joy and&#xA;pride. The pride, of being part of such a wonderful community, a&#xA;beautiful crowd. Further, it is a matter of pride, the book&amp;rsquo;s been&#xA;authored by an Indian - its quite rare to find such books written&#xA;by people in this part of the world.&lt;/p&gt;&#xA;&lt;p&gt;I have loved python, the moment I started using it. There are&#xA;quite a few occasions, where I did something, just because I had&#xA;the power of Python with me. Python is undoubtedly amongst the&#xA;best, not just as a first programming language, but to give the&#xA;user a sense of &amp;ldquo;do-able-ity&amp;rdquo; and I am thoroughly enjoying it.&lt;/p&gt;&#xA;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-text&#34; data-lang=&#34;text&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&amp;gt;&amp;gt;&amp;gt; import this&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;The Zen of Python, by Tim Peters&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-text&#34; data-lang=&#34;text&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;Beautiful is better than ugly.&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;Explicit is better than implicit.&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;Simple is better than complex.&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;Complex is better than complicated.&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;Flat is better than nested.&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;Sparse is better than dense.&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;Readability counts.&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;Special cases aren&amp;#39;t special enough to break the rules.&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;Although practicality beats purity.&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;Errors should never pass silently.&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;Unless explicitly silenced.&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;In the face of ambiguity, refuse the temptation to guess.&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;There should be one-- and preferably only one --obvious way to do it.&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;Although that way may not be obvious at first unless you&amp;#39;re Dutch.&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;Now is better than never.&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;Although never is often better than *right* now.&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;If the implementation is hard to explain, it&amp;#39;s a bad idea.&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;If the implementation is easy to explain, it may be a good idea.&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;Namespaces are one honking great idea -- let&amp;#39;s do more of those!&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;hr&gt;&#xA;&lt;div class=&#34;footnotes&#34; role=&#34;doc-endnotes&#34;&gt;&#xA;&lt;hr&gt;&#xA;&lt;ol&gt;&#xA;&lt;li id=&#34;fn:1&#34;&gt;&#xA;&lt;p&gt;A Byte of Python&amp;#160;&lt;a href=&#34;#fnref:1&#34; class=&#34;footnote-backref&#34; role=&#34;doc-backlink&#34;&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;/li&gt;&#xA;&lt;li id=&#34;fn:2&#34;&gt;&#xA;&lt;p&gt;Python - Notes &amp;ndash; Swaroop CH&amp;#160;&lt;a href=&#34;#fnref:2&#34; class=&#34;footnote-backref&#34; role=&#34;doc-backlink&#34;&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;/li&gt;&#xA;&lt;li id=&#34;fn:3&#34;&gt;&#xA;&lt;p&gt;Book updated for Python 3000 &amp;ndash; Swaroop CH&amp;#160;&lt;a href=&#34;#fnref:3&#34; class=&#34;footnote-backref&#34; role=&#34;doc-backlink&#34;&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;/div&gt;&#xA;</description>
    </item>
    <item>
      <title>mukt.in 2008</title>
      <link>https://punchagan.muse-amuse.in/blog/muktin-2008/</link>
      <pubDate>Fri, 18 Jul 2008 00:00:00 +0530</pubDate>
      <guid>https://punchagan.muse-amuse.in/blog/muktin-2008/</guid>
      <description>&lt;p&gt;Mukt.in is a FOSS-fest, being conducted in Hyderabad, India by the&#xA;mukt.in team (a group of FOSS enthusiasts). Spread the word and Be&#xA;there!&lt;/p&gt;&#xA;&lt;table&gt;&#xA;  &lt;thead&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;th&gt;Venue&lt;/th&gt;&#xA;          &lt;th&gt;CSE Department, Osmania University, Hyderabad, India&lt;/th&gt;&#xA;      &lt;/tr&gt;&#xA;  &lt;/thead&gt;&#xA;  &lt;tbody&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td&gt;Date&lt;/td&gt;&#xA;          &lt;td&gt;1-3 August, 2008&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td&gt;Register&lt;/td&gt;&#xA;          &lt;td&gt;&lt;a href=&#34;http://mukt.in/registration.php&#34;&gt;http://mukt.in/registration.php&lt;/a&gt;&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;  &lt;/tbody&gt;&#xA;&lt;/table&gt;&#xA;</description>
    </item>
    <item>
      <title>Mid-Term &#39;Psycho&#39;Analysis</title>
      <link>https://punchagan.muse-amuse.in/blog/mid-term-psychoanalysis/</link>
      <pubDate>Tue, 15 Jul 2008 00:00:00 +0530</pubDate>
      <guid>https://punchagan.muse-amuse.in/blog/mid-term-psychoanalysis/</guid>
      <description>&lt;p&gt;Its been 10 days on my sabbatical. I have done reasonably well&#xA;during the first week, but now its getting on my nerves. I have&#xA;realized how addicted I am to chat, IRC and the Internet. I have&#xA;to soon find some remedies for this.&lt;/p&gt;&#xA;&lt;p&gt;Well, here is the first step. I approached ELIZA (or Doctor Fill,&#xA;that&amp;rsquo;s actually the emacs mode) , the Emacs Psychotherapist to&#xA;help me. An enjoyable chat this one! ;)&lt;/p&gt;&#xA;&lt;p&gt;ELIZA (Doctor Fill) abbreviated as DF (pun intended, for those who&#xA;get it)&lt;/p&gt;&#xA;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-text&#34; data-lang=&#34;text&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;DF: I am the psychotherapist.  Please, describe your problems.  Each time&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;you are finished talking, type RET twice.&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;Hi. Nice meeting you.&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;DF: How do you do?  What brings you to see me?&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;I am obviously not fine, otherwise I would not have been here.&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;I have realized I am addicted to the internet and want you to help&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;me.&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;DF: Why do you say that?&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;I say that because you are a doctor.&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;DF: Is it because because I am a doctor that you came to me?&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;Isn&amp;#39;t that pretty obvious?&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;DF: Can you elaborate on that?&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;Yes, I did come to see you because you are a doctor. Now, I regret it.&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;DF: Does it bother you that I am a doctor now you regret it?&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;I don&amp;#39;t understand your question.&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;DF: Earlier you said because I am a doctor?&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;Yes, because you are a doctor I came to you.&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;DF: When did you first know that I am a doctor you came to me?&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;I knew about you, when I first fiddled around with Emacs around an&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;year ago.&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;DF: What happened when you first fiddled around with emacs around a year&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;ago?&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;I loved it, thoroughly! But for a beginner like me it was difficult to&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;get along. I stopped using it.&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;DF: Is the fact that for a beginner like you it was difficult to get along&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;you stopped using it the real reason?&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;I think that along with my laziness to stick with the learning was the&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;real reason&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;DF: Does the fact that along with your laziness to stick with the learning&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;was the real reason explain anything else?&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;It does not explain anything else to me.&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;DF: Maybe your plans have something to do with this.&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;What plans? I donot have any plans.&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;DF: What makes you believe what plans you donot have any plans?&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;If I had plans, I would have been executing them.&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;DF: You mentioned that I am a doctor now you regret it?&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;Yes, because you seemed stupid initially. Now you seem to be making&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;some sense.&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;DF: Are you sure I seemed stupid initially now I seem to be making some&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;sense?&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;Yes I am pretty sure.&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;DF: Is it because of your life that you are going through all this?&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;Obviously. Because I am alive I am going through all this.&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;DF: Is it because you are alive you are going through all this that you&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;came to me?&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;Yes.&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;DF: I see...  Well, are you sure that this is so?&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;Yes. I don&amp;#39;t think there is emacs in the hell.&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;DF: I would appreciate it if you would watch your tongue!&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;Oh! so emacs is in the hell too! is it in the heavan too?&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;DF: Emacs?  Hah!  Perhaps you could continue.&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;I thought only mortals used Emacs. Do others use it too?&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;DF: Have you been positive?&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;Yes. I always thought Emacs is only for the homo sapiens.&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;DF: I believe you have inhibitions with emacs.&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;No. I love emacs.&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;But it isn&amp;#39;t suitable for Gods and Demons&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;DF: Are you annoyed that it is not suitable for gods and demons?&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;No&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;DF: Why not?&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;I am neither of them. That&amp;#39;s why&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;DF: Please, continue.&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;I am a human and I can use emacs. Others donot need it. I am not annoyed&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;DF: Have you been annoyed often?&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;Ocassionally&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;DF: Go on, don&amp;#39;t be afraid.&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;I am not. I have been ocassionally annoyed, more often with myself&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;than others.&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;DF: What causes you to be annoyed?&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;Presently, I am annoyed with myself for being addicted to the Internet&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;and may be for chatting with you too.&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;DF: Do you really think you are annoyed?&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;Affirmative&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;DF: I need a little more detail please.&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;Yes. I am a little annoyed with myself.&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;DF: Are you annoyed often?&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;Ocassionally. Why do you repeat questions?&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;DF: When did you first know that do me repeat questions?&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;Long Long ago, when I first used Emacs.&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;DF: What makes you think long long ago when you first used emacs?&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;I saw you repeat questions.&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;DF: Is it because of the people you hang around with that you say you saw&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;me repeat questions?&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;Yes.&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;DF: Yes, hmmm... so, why do you say this is so?&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;I am leaving. You are being too repititive. Goodbye!&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;DF: What makes you believe because I am a doctor?&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;Goodbye!&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;DF: My secretary will send you a bill.&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;Bill? You did not help me much.&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;DF: How do you reconcile problems at school?&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;Goodbye!&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;DF: Bye bye.&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;Bye&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;DF: See ya.&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;See ya.&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;DF: Are you sure that see me?&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;Yes, when in trouble&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;DF: What would happen if in trouble?&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;I will see ya&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;DF: Earlier you said I am a doctor you came to me?&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;Yes, now also I say that.&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;DF: You&amp;#39;re being a bit brief, would you please go into detail.&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;Goodbye!&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;DF: Ok, talk to you some other time.&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;bye!&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;DF: Talk to you later.&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;On a more serious note, the Internet has become an &lt;strong&gt;Integral&lt;/strong&gt; part&#xA;of my life. I do sometimes think, a bit too much, but then&amp;hellip;. the&#xA;internet is &amp;ldquo;The Internet&amp;rdquo;!&lt;/p&gt;</description>
    </item>
    <item>
      <title>Update Script</title>
      <link>https://punchagan.muse-amuse.in/blog/update-script/</link>
      <pubDate>Tue, 08 Jul 2008 00:00:00 +0530</pubDate>
      <guid>https://punchagan.muse-amuse.in/blog/update-script/</guid>
      <description>&lt;p&gt;Well, this isn&amp;rsquo;t an update of how I&amp;rsquo;m doing on my sabbatical. Its&#xA;just been 3 days and I&amp;rsquo;m doing pretty fine.  I just finished&#xA;writing a script to keep my blogs page in sync with my&#xA;google-reader (well not exactly). The script parses an xml export&#xA;of my google-reader-subscriptions and updates the edits the html&#xA;of my unnought-blogs page. period.&lt;/p&gt;&#xA;&lt;p&gt;There are a couple of things I don&amp;rsquo;t like about this script.&lt;/p&gt;&#xA;&lt;p&gt;Firstly, I don&amp;rsquo;t want to keep exporting my&#xA;google-reader-subscription each time I make changes. The script&#xA;should be able to directly sync with my google-reader without me&#xA;having to export the file.  [I have read about the atom&#xA;subscriptions feed of Google Reader, but haven&amp;rsquo;t been able to get&#xA;it right.] Hopefully, I&amp;rsquo;ll be able to do it in the near future.&lt;/p&gt;&#xA;&lt;p&gt;Secondly, The blog author&amp;rsquo;s name is non-existent. I can&amp;rsquo;t do&#xA;anything about this though.&lt;/p&gt;&#xA;&lt;p&gt;Also, In the process, I had the chance to look a geeky ad. I found&#xA;it at the weirdest of places!&lt;/p&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;header: X-hacker: If you&amp;rsquo;re reading this, you should visit&#xA;automattic.com/jobs and apply to join the fun, mention this&#xA;header.&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;&lt;p&gt;ps :&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;The source is GPLv2 licensed.&lt;/li&gt;&#xA;&lt;li&gt;Get in touch, if you&amp;rsquo;d like to have a look.&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;</description>
    </item>
    <item>
      <title>A sabbatical</title>
      <link>https://punchagan.muse-amuse.in/blog/a-sabbatical/</link>
      <pubDate>Fri, 04 Jul 2008 00:00:00 +0530</pubDate>
      <guid>https://punchagan.muse-amuse.in/blog/a-sabbatical/</guid>
      <description>&lt;p&gt;This post, is a different one in a couple of ways.&lt;/p&gt;&#xA;&lt;p&gt;Firstly, I posted this from within emacs! I&amp;rsquo;m using the w3m&#xA;browser within emacs to post this. I&amp;rsquo;ve started using (trying to&#xA;use) emacs again. Hope to keep at it longer this time.&lt;/p&gt;&#xA;&lt;p&gt;Secondly, I wish to inform junta about my sabbatical for a couple&#xA;of weeks. I have decided not to use IM/IRC/SocialNetworking sites&#xA;for the next couple of weeks. &lt;span class=&#34;timestamp-wrapper&#34;&gt;&lt;span class=&#34;timestamp&#34;&gt;[2008-07-06 Sun 00:00]&lt;/span&gt;&lt;/span&gt;&amp;ndash;[2008-07-19&#xA;Sat 23:59] I will, of course, be using mail and will also blog if&#xA;and when I feel like. This is an experiment triggered by a few&#xA;ideas from Chaitu&lt;sup id=&#34;fnref:1&#34;&gt;&lt;a href=&#34;#fn:1&#34; class=&#34;footnote-ref&#34; role=&#34;doc-noteref&#34;&gt;1&lt;/a&gt;&lt;/sup&gt; and my own holiday lifestyle analysis. (Also&#xA;Chaitu has volunteered to join me.) Hope to make it through and&#xA;also get some valid, interesting results out of the experiment.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;p&gt;&lt;strong&gt;Update:&lt;/strong&gt; Firemacs add-on for firfox is very useful. I couldn&amp;rsquo;t&#xA;get a decent browser for emacs that could open gmail, so I&amp;rsquo;m&#xA;using Firefox with the Firemacs add-on to compose my mail. Its&#xA;absolutely amazing. Believe me! [Jul 6, 2008]&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;div class=&#34;footnotes&#34; role=&#34;doc-endnotes&#34;&gt;&#xA;&lt;hr&gt;&#xA;&lt;ol&gt;&#xA;&lt;li id=&#34;fn:1&#34;&gt;&#xA;&lt;p&gt;Chaitu - Poetic Paradigm&amp;#160;&lt;a href=&#34;#fnref:1&#34; class=&#34;footnote-backref&#34; role=&#34;doc-backlink&#34;&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;/div&gt;&#xA;</description>
    </item>
    <item>
      <title>Lafoot or Lafoobot!</title>
      <link>https://punchagan.muse-amuse.in/blog/lafoot-or-lafoobot/</link>
      <pubDate>Mon, 26 May 2008 00:00:00 +0530</pubDate>
      <guid>https://punchagan.muse-amuse.in/blog/lafoot-or-lafoobot/</guid>
      <description>&lt;p&gt;Summer&#39;08! I&amp;rsquo;m at home, doing nothing practically. :| No&#xA;Internships, No Projects, No GRE plans (a little pushing for GRE&#xA;has just started from the junta around.)&lt;/p&gt;&#xA;&lt;p&gt;Just to kill some time and to learn some Python, I have begun to&#xA;write an IRC chat bot &amp;lt;lafoobot&amp;gt; [Lafoot + Bot]. The present&#xA;haven of lafoobot is #fosskelog @ irc.freenode.net. Join in, if&#xA;you want to have a chat! ;) Lafoobot can presently do very few&#xA;things&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&amp;ldquo;Yoyo&amp;rdquo;, a newly joined user&lt;/li&gt;&#xA;&lt;li&gt;&amp;ldquo;Hello&amp;rdquo;/ &amp;ldquo;Yoyo&amp;rdquo;, a user or pass on a Hello/Yoyo from user to&#xA;another.&lt;/li&gt;&#xA;&lt;li&gt;Gives Local time / GMT&lt;/li&gt;&#xA;&lt;li&gt;Gives a random word and its meaning [put in for the junta&#xA;preparing for GRE ;)]&lt;/li&gt;&#xA;&lt;li&gt;Gives out an MOTD or a fortune when it first joins \#fosskelog&lt;/li&gt;&#xA;&lt;li&gt;Googles a search term and returns the top 5 results (This is my&#xA;favourite feature and this is the reason partially for this&#xA;post. &amp;ldquo;!google lafoobot&amp;rdquo; doesn&amp;rsquo;t return anything. Hopefully not&#xA;anymore.)&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;If you have ideas for any other features or if you want to have a&#xA;look at the source, comment here or join #fosskelog. lafoobot&amp;rsquo;s&#xA;code is licensed under GPLv2!&lt;/p&gt;&#xA;&lt;p&gt;Other than this, the summer has been relatively uneventful but for&#xA;the two FOSS events I attended. Yes, two events, Sat and Sun, both&#xA;by Twincling (There are two different Twinclings! Don&amp;rsquo;t ask me&#xA;why) Hoping to have some more action this summer!&lt;/p&gt;&#xA;&lt;p&gt;PS: There&amp;rsquo;s a Big discussion presently on whether lafoobot is a he&#xA;or a she. ;) What do you think?&lt;/p&gt;&#xA;</description>
    </item>
    <item>
      <title>Quark&#39;08 !</title>
      <link>https://punchagan.muse-amuse.in/blog/quark08/</link>
      <pubDate>Mon, 11 Feb 2008 00:00:00 +0530</pubDate>
      <guid>https://punchagan.muse-amuse.in/blog/quark08/</guid>
      <description></description>
    </item>
    <item>
      <title>Not so Floppix…</title>
      <link>https://punchagan.muse-amuse.in/blog/not-so-floppix/</link>
      <pubDate>Tue, 11 Dec 2007 00:28:00 +0530</pubDate>
      <guid>https://punchagan.muse-amuse.in/blog/not-so-floppix/</guid>
      <description>&lt;p&gt;&lt;strong&gt;Disambiguation:&lt;/strong&gt; The original Linux on 2 Floppies is &lt;a href=&#34;https://floppix.com/&#34;&gt;here&lt;/a&gt;.&lt;/p&gt;&#xA;&lt;p&gt;I, post this from a remastered version of Knoppix that we named&#xA;Floppix!&lt;/p&gt;&#xA;&lt;p&gt;It all actually began, with me deciding to do a bit of Emacs-ing&#xA;at home during the winter hols but I don&amp;rsquo;t have a Linux box at&#xA;home. Live-CD is the way to go! But then Emacs doesn&amp;rsquo;t \*usually\*&#xA;go with Live-CDs. So I decided to get around making my own. :)&#xA;[Dunnet &amp;ldquo;Dunnet Game&amp;rdquo;),&#xA;an Adventure game in Emacs, played a crucial role in motivating me&#xA;to go ahead!] The rest as they say is history&amp;hellip;.&lt;/p&gt;&#xA;&lt;p&gt;Actually, I tried a debootstrap from my Debian etch but I couldn&amp;rsquo;t&#xA;manage to get the initrd working. [I ain&amp;rsquo;t this geekish, its only that I am incapable of&#xA;putting these terms in a simpler language.] After numerous futile&#xA;attempt, I gave up for the time being and that&amp;rsquo;s when the genius&#xA;of &lt;a href=&#34;http://avudem.blogspot.com%20%22voodoo%22&#34;&gt;Voodoo&lt;/a&gt; came in, he took a different route. Remastering&#xA;Knoppix.[Modifying an existing Live-CD of Knoppix]&lt;/p&gt;&#xA;&lt;p&gt;I won&amp;rsquo;t get into the exact details of how we got about it. There&amp;rsquo;s&#xA;a lot of online help available for that.&lt;/p&gt;&#xA;&lt;p&gt;A few highlights, for the curious reader&amp;hellip;&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;got rid of the default KDE and replaced it with&#xA;Fluxbox. [actually Floppix = Fluxbox + Knoppix :P]&lt;/li&gt;&#xA;&lt;li&gt;added emacs, cmucl, slime, octave, linuxdcpp, vlc and others.&lt;/li&gt;&#xA;&lt;li&gt;got rid of other packages which we weren&amp;rsquo;t going to use.&lt;/li&gt;&#xA;&lt;li&gt;changed the boot message&lt;/li&gt;&#xA;&lt;li&gt;changed the default background image.&lt;/li&gt;&#xA;&lt;li&gt;removed the default boot image [ couldn&amp;rsquo;t change it as the image&#xA;we chose wasn&amp;rsquo;t being properly converted to lss16 format ]&lt;/li&gt;&#xA;&lt;li&gt;tested the CD with Qemu [size of the iso got more than 700MB]&lt;/li&gt;&#xA;&lt;li&gt;removed a few other not so regularly used packages [including&#xA;wine!]&lt;/li&gt;&#xA;&lt;li&gt;burnt the CD&lt;/li&gt;&#xA;&lt;li&gt;Logged in!&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;Now, that I&amp;rsquo;ve logged in, I realize we managed to quite a decent&#xA;job. Obviously we weren&amp;rsquo;t perfect. It was the first time and done&#xA;in quite a hurry. [btw, we have our end-sems going on; I&amp;rsquo;ve no&#xA;exam tomorrow though] I was able to listen to music, connect to&#xA;the DC, play a game of dunnet and make a blogpost! We also missed&#xA;a few packages, for instance a screen shot capture program! But it&#xA;ain&amp;rsquo;t too bad, still a long way to go though!&lt;/p&gt;&#xA;&lt;p&gt;Just hoping we manage to make it better, as we get better at it!&#xA;;)&lt;/p&gt;&#xA;&lt;p&gt;Here comes FloppixV0.1!&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;p&gt;Update [3/1/08]: I never knew that GIMP could capture screenshots!&#xA;ImageMagick can do that too. I had two programs at hand and&#xA;thought I had none! Here&amp;rsquo;s a Screenshot of the Floppix Desktop.&lt;/p&gt;&#xA;&lt;figure&gt;&lt;img src=&#34;../../images/floppix_desktop.jpg&#34;&gt;&#xA;&lt;/figure&gt;&#xA;&#xA;&lt;p&gt;Picture Source [for the Background Image] : 9&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;p&gt;Update 2 [4/1/08]: There is already a floppy distro of Linux&#xA;called Floppix. I knew about this only when some one searching for&#xA;it reached my blog. Guess I should do something about this. [I&amp;rsquo;ll&#xA;be able to do it only after getting back to campus,though]&lt;/p&gt;&#xA;</description>
    </item>
    <item>
      <title>Telugu Rendering in Ubuntu...</title>
      <link>https://punchagan.muse-amuse.in/blog/telugu-rendering-in-ubuntu/</link>
      <pubDate>Wed, 11 Jul 2007 00:00:00 +0530</pubDate>
      <guid>https://punchagan.muse-amuse.in/blog/telugu-rendering-in-ubuntu/</guid>
      <description>&lt;p&gt;I had problems with this and tried quite a few things to get it&#xA;working&amp;hellip;  [uninstalling and re-installing&#xA;packages&amp;hellip; downloading fonts.. etc.. ] but couldn&amp;rsquo;t until I found&#xA;help here&amp;hellip;&lt;/p&gt;&#xA;&lt;p&gt;[Apparently there&amp;rsquo;s a bug in the Pothana font (in Feisty)]&lt;/p&gt;&#xA;&lt;p&gt;[ Don&amp;rsquo;t worry if you can&amp;rsquo;t figure out what&amp;rsquo;s the big deal in&#xA;linking to an already existing post.. :P]&lt;/p&gt;&#xA;</description>
    </item>
    <item>
      <title>Summer or Awe-TEM!! Whatever... Forever</title>
      <link>https://punchagan.muse-amuse.in/blog/summer-or-awe-tem-whatever-forever/</link>
      <pubDate>Wed, 13 Jun 2007 00:00:00 +0530</pubDate>
      <guid>https://punchagan.muse-amuse.in/blog/summer-or-awe-tem-whatever-forever/</guid>
      <description>&lt;p&gt;Writing from Delhi, doing my PS at NPL! One would imagine, that I&#xA;am here enjoying myself; that I am enjoying thoroughly the&#xA;exposure I am getting to the world of Physics at a Research Level;&#xA;that I am spending each moment, inspired. But things haven&amp;rsquo;t been&#xA;so rosy here&amp;hellip; until today! [All this while I had been only doing&#xA;a lot of mechanical labor, very unhappily&amp;hellip;]&lt;/p&gt;&#xA;&lt;p&gt;Its around 12 noon, when I get a call, in the lab, from my guide&#xA;asking me to come down to room no. so and so. I had no idea what&#xA;that room had, or why I had been called. I enter and I am lead to&#xA;another room inside. I enter and there&amp;rsquo;s a huge machine. (first&#xA;look, reminded me of Vickers&amp;rsquo; Hardness Testing Machine, that we&#xA;had in Lab at coll and I had a test on using it!) and its called a&#xA;TEM. But when I got closer, I fell in love with it! I dunno how&#xA;and why, but it looked simply amazing and extremely lovely to me&#xA;[Nothing like the Vickers&amp;rsquo; machine]. A 25 to 30 year old machine,&#xA;lots of controls all over it, lots of circuitry out in the&#xA;open&amp;hellip; absolutely awe-inspiring..[though I knew nothing about&#xA;them.]&lt;/p&gt;&#xA;&lt;p&gt;And then came the moment. The lights in the room were turned off,&#xA;and slowly and steadily the beam intensity of the TEM was&#xA;increased. Gradually the Greenish Fluoroscent Screen (displaying a&#xA;sample magnified X27,000) came to life&amp;hellip; with control lights&#xA;blinking here and there&amp;hellip; in the darkness of the room.It was&#xA;absolutely amazing; A great feeling. Though I was in there for a&#xA;very short while&amp;hellip; an absolutely unforgettable experience; and&#xA;will remain so, for the rest of my life.&lt;/p&gt;&#xA;&lt;p&gt;Now, it doesn&amp;rsquo;t matter to me even if I don&amp;rsquo;t learn much, during&#xA;the training period, I don&amp;rsquo;t mind doing any kind-of mechanical&#xA;work, I don&amp;rsquo;t mind not getting any results from my work,&#xA;whatever&amp;hellip; it doesn&amp;rsquo;t matter any more. This one moment; that&amp;rsquo;s&#xA;all that matters.&lt;/p&gt;&#xA;</description>
    </item>
    <item>
      <title>Non-e-Moments??!!</title>
      <link>https://punchagan.muse-amuse.in/blog/non-e-moments/</link>
      <pubDate>Fri, 13 Apr 2007 00:00:00 +0530</pubDate>
      <guid>https://punchagan.muse-amuse.in/blog/non-e-moments/</guid>
      <description>&lt;p&gt;A few days back.. we [the usual gang of Ringo,9,UC,Vudum n&#xA;me.. along with a lot of others who joined us later] were in the&#xA;park, just relaxing and having a chat&amp;hellip; but with the others&#xA;joining us [with whom I usually don&amp;rsquo;t hang around..] , the topics&#xA;discussed were quite different from those that interest me&amp;hellip;and&#xA;we usually talk on..  I was getting bored.. but suddenly an&#xA;interesting idea popped up&amp;hellip; the funda of living on CS.. [though&#xA;the tone in which they looked at the idea was different&amp;hellip; I found&#xA;it interesting..]&lt;/p&gt;&#xA;&lt;p&gt;The ppl were criticizing a guy (don&amp;rsquo;t wanna name him :P) {who&#xA;hosted wierd maps with soccer and other such stuff in it..}.. the&#xA;people were imagining wild things like.. maps in which class-notes&#xA;would be read out/scrolled&amp;hellip; maps where food items would be&#xA;displayed at lunch time.. etc.. This might look like a funny and&#xA;weird idea.. (that gave us all a nice laugh..) but it doesn&amp;rsquo;t seem&#xA;ridiculous or crazy to me.. the very fact that the idea was&#xA;conceived, annihilates it ridiculousness, for me. Though such a&#xA;degree of dependence (and addiction??) may be an over exaggeration&#xA;but&amp;hellip;&lt;/p&gt;&#xA;&lt;p&gt;A walk in the hostel corridors any time during the night will tell&#xA;you why i say this&amp;hellip; I can see people in every room&amp;hellip; (literally&#xA;every one.. and mind you I am no exception to this..) stuck to&#xA;their comps doing all sorts of things&amp;hellip; [actually not a wide&#xA;range.. its pretty predictable&amp;hellip; :-(] and now after my comp&amp;rsquo;s&#xA;network card got burnt out (&amp;hellip;probably&amp;hellip; thanks to the lack of&#xA;grounding in hostels) I can see it even more clearly&amp;hellip; that&#xA;computers are ruling our lives&amp;hellip; [at this point.. I&amp;rsquo;m confused&#xA;why I started writing this&amp;hellip; what&amp;rsquo;s it that&amp;rsquo;s bugging me? I&amp;rsquo;m&#xA;definitely not against ppl using Comps.. for I love them&amp;hellip;]&lt;/p&gt;&#xA;&lt;p&gt;Is it that it pains me to see people use comps for stuff that&amp;rsquo;s&#xA;not so technical? Does it hurt me that we have such &amp;ldquo;Powerful&amp;rdquo;&#xA;machines before us.. and all we do with them is trivial things&#xA;like chat with others or play? I don&amp;rsquo;t think so&amp;hellip; Yes, when I&#xA;read the book Hackers:Heroes of the Computer Revolution, I felt&#xA;ashamed of using my comp in a meek and powerless way&amp;hellip; but then I&#xA;realise that they were the Hackers from the Hacker land .. and&#xA;everyone can&amp;rsquo;t be one, can they? Then what&amp;rsquo;s it, that bugs me?&lt;/p&gt;&#xA;&lt;p&gt;I guess I miss the time we spent in the first (and a little of&#xA;second) semester&amp;hellip; when very few people had comps. We had a great&#xA;time&amp;hellip; doing other activities that were more physical&amp;hellip; and&#xA;refreshing (than sitting in front of a comp and posting&#xA;this!!).. I miss those football tourneys we had in the&#xA;quadrangles.. I miss those &amp;ldquo;leg&amp;rdquo; cricket matches&amp;hellip; I long for&#xA;something like the Wrestling match we [Vudum, Ravi,Thatha n me]&#xA;had in my room&amp;hellip; I miss those thermo sessions with Vudum n&#xA;Ravi.. I miss the tuts in Ravi&amp;rsquo;s room&amp;hellip; (mind you we sometimes&#xA;studied even when there weren&amp;rsquo;t exams!!) I guess I miss a lotta&#xA;things from the first sem&amp;hellip; The time at dinner and the chats in&#xA;parks, are the only things that are still intact&amp;hellip; [ I wouldn&amp;rsquo;t&#xA;dare forget to mention our recent trip to the woods near the&#xA;lake&amp;hellip; it was awesome!! something that we&amp;rsquo;ll all cherish for&#xA;life&amp;hellip;] I just hope we have more and more and such&#xA;moments&amp;hellip; moments that i will cherish for life&amp;hellip; moments.. that&#xA;&amp;ldquo;we&amp;rdquo; will cherish for life&amp;hellip;&lt;/p&gt;&#xA;&lt;p&gt;&lt;strong&gt;Update&lt;/strong&gt;: I just saw Ringo&amp;rsquo;s old cd of Illayaraja songs&amp;hellip; and&#xA;realised, I forgot to mention the wonderful time we&#xA;[Ringo,9,Hari,UC n me..] had listening to them in Ringo&amp;rsquo;s room on&#xA;a CD player&amp;hellip; and Ringo&amp;rsquo;s mouthorgan!!!&lt;/p&gt;&#xA;&lt;p&gt;&lt;em&gt;&lt;strong&gt;Everyone hears what you say, Friends listen to what you say,&#xA;Best friends listen to what you dont say.&lt;/strong&gt;&lt;/em&gt; &amp;ndash; Anon.&lt;/p&gt;&#xA;&lt;p&gt;&lt;em&gt;&lt;strong&gt;Live as if your were to die tomorrow. Learn as if you were to&#xA;live forever.&lt;/strong&gt;&lt;/em&gt; &amp;ndash; Johann Von Goethe&lt;/p&gt;&#xA;</description>
    </item>
  </channel>
</rss>
