<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<feed xmlns="http://www.w3.org/2005/Atom">

	<title>Planet LUG-Jaipur</title>
	<link rel="self" href="http://planet.lugj.in/atom.xml"/>
	<link href="http://planet.lugj.in/"/>
	<id>http://planet.lugj.in/atom.xml</id>
	<updated>2010-07-31T19:45:05+00:00</updated>
	<generator uri="http://www.planetplanet.org/">Planet/2.0 +http://www.planetplanet.org</generator>

	<entry xml:lang="en">
		<title type="html">Rise till you fall</title>
		<link href="http://kapilacharya.com/2010/07/rise-till-you-fall/"/>
		<id>http://kapilacharya.com/?p=38</id>
		<updated>2010-07-21T17:04:39+00:00</updated>
		<content type="html">&lt;p&gt;I stand on the edge of the shore&lt;br /&gt;
Watching the waves gliding by&lt;br /&gt;
They rise and fall&lt;br /&gt;
As does my mind and fate&lt;br /&gt;
They come close to me&lt;br /&gt;
And caress my feet slightly&lt;br /&gt;
Then  retreat back&lt;br /&gt;
They stand all alone&lt;br /&gt;
Through their fate&lt;br /&gt;
Though they encounter&lt;br /&gt;
Many a support at the shore&lt;br /&gt;
But they always leave alone&lt;br /&gt;
They ask me, why you stand here?&lt;br /&gt;
Don&amp;#8217;t wait for us waves&lt;br /&gt;
To come and hold you&lt;br /&gt;
&amp;#8216;coz we can&amp;#8217;t do so&lt;br /&gt;
Go fall and then stand up&lt;br /&gt;
Again on your own&lt;br /&gt;
And keep rising till you fall&lt;br /&gt;
&amp;#8216;coz otherwise you waste&lt;br /&gt;
This life of yours in vain&lt;/p&gt;</content>
		<author>
			<name>Kapil Acharya (kapzi)</name>
			<uri>http://kapilacharya.com</uri>
		</author>
		<source>
			<title type="html">A circle has no beginning</title>
			<subtitle type="html">Kapzi's Personal Blog</subtitle>
			<link rel="self" href="http://kapilacharya.com/feed/"/>
			<id>http://kapilacharya.com/feed/</id>
			<updated>2010-07-21T17:05:05+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Computational Fluid Dynamics General Notation System</title>
		<link href="http://cgns.sourceforge.net"/>
		<id>http://cgns.sourceforge.net</id>
		<updated>2010-07-20T13:00:00+00:00</updated>
		<content type="html">The &lt;a href=&quot;http://cgns.sourceforge.net/&quot;&gt;Computational Fluid Dynamics General Notation System&lt;/a&gt; (CGNS) library is now available in Fedora under the zlib license. Install it using:
&lt;pre&gt;
  $ yum install cgnslib
&lt;/pre&gt;
It provides a general, portable, and extensible standard for the storage and retrieval of computational fluid dynamics (CFD) analysis data. It consists of a collection of conventions, and free and open software implementing those conventions. It is self-descriptive, machine-independent, &lt;a href=&quot;http://www.grc.nasa.gov/WWW/cgns/user/index.html&quot;&gt;well-documented&lt;/a&gt;, and administered by an international &lt;a href=&quot;http://cgns.sourceforge.net/steering.html&quot;&gt;Steering Committee&lt;/a&gt;.&lt;br /&gt;</content>
		<author>
			<name>Shakthi Kannan (mbuf)</name>
			<uri>http://www.shakthimaan.com/news.xml</uri>
		</author>
		<source>
			<title type="html">shakthimaan.com</title>
			<subtitle type="html">/news</subtitle>
			<link rel="self" href="http://www.shakthimaan.com/news.xml"/>
			<id>http://www.shakthimaan.com/news.xml</id>
			<updated>2010-07-29T03:15:05+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Chalmers Lava2000</title>
		<link href="http://hackage.haskell.org/package/chalmers-lava2000"/>
		<id>http://hackage.haskell.org/package/chalmers-lava2000</id>
		<updated>2010-07-01T11:00:00+00:00</updated>
		<content type="html">&lt;a href=&quot;http://hackage.haskell.org/package/chalmers-lava2000&quot;&gt;Chalmers Lava2000&lt;/a&gt;, a hardware description library in Haskell is now available for Fedora. Thanks to &lt;a href=&quot;http://www.cse.chalmers.se/~emax/index.html&quot;&gt;Emil Axelsson&lt;/a&gt; and &lt;a href=&quot;http://fedoraproject.org/wiki/JensPetersen&quot;&gt;Jens Peterson&lt;/a&gt; for their feedback, and package review. You can install the same using:
&lt;pre&gt;
$ sudo yum install ghc-chalmers-lava2000       \
                   ghc-chalmers-lava2000-devel \
                   ghc-chalmers-lava2000-doc
&lt;/pre&gt;
To illustrate a half adder example with the use of the Lava library, create a Test.hs file:
&lt;pre&gt;
import Lava

halfAdd (a, b) = (sum, carry)
  where
    sum   = xor2 (a, b)
    carry = and2 (a, b)
&lt;/pre&gt;
Load it with ghci (Glasgow Haskell Compiler):
&lt;pre&gt;
$ ghci Test.hs

GHCi, version 6.12.2: http://www.haskell.org/ghc/  :? for help
Loading package ghc-prim ... linking ... done.
Loading package integer-gmp ... linking ... done.
Loading package base ... linking ... done.
Loading package ffi-1.0 ... linking ... done.
[1 of 1] Compiling Main             ( Test.hs, interpreted )
Ok, modules loaded: Main.
&lt;/pre&gt;
Test half adder with low, high inputs using:
&lt;pre&gt;
*Main&gt; simulate halfAdd(low, high)
Loading package syb-0.1.0.2 ... linking ... done.
Loading package base-3.0.3.2 ... linking ... done.
Loading package array-0.3.0.0 ... linking ... done.
Loading package filepath-1.1.0.3 ... linking ... done.
Loading package old-locale-1.0.0.2 ... linking ... done.
Loading package old-time-1.0.0.3 ... linking ... done.
Loading package unix-2.4.0.0 ... linking ... done.
Loading package directory-1.0.1.0 ... linking ... done.
Loading package process-1.0.1.2 ... linking ... done.
Loading package time-1.1.4 ... linking ... done.
Loading package random-1.0.0.2 ... linking ... done.
Loading package haskell98 ... linking ... done.
Loading package chalmers-lava2000-1.1.1 ... linking ... done.
(high,low)
*Main&gt; 
&lt;/pre&gt;
Testing half adder with high, high inputs gives:
&lt;pre&gt;
*Main&gt; simulate halfAdd(high, high)
(low,high)
&lt;/pre&gt;
You can also generate vhdl file using:
&lt;pre&gt;
*Main&gt; writeVhdl &quot;halfAdd&quot; halfAdd

Loading package syb-0.1.0.2 ... linking ... done.
Loading package base-3.0.3.2 ... linking ... done.
Loading package array-0.3.0.0 ... linking ... done.
Loading package filepath-1.1.0.4 ... linking ... done.
Loading package old-locale-1.0.0.2 ... linking ... done.
Loading package old-time-1.0.0.4 ... linking ... done.
Loading package unix-2.4.0.1 ... linking ... done.
Loading package directory-1.0.1.1 ... linking ... done.
Loading package process-1.0.1.2 ... linking ... done.
Loading package time-1.1.4 ... linking ... done.
Loading package random-1.0.0.2 ... linking ... done.
Loading package haskell98 ... linking ... done.
Loading package chalmers-lava2000-1.1.1 ... linking ... done.
Writing to file &quot;halfAdd.vhd&quot; ... Done.
&lt;/pre&gt;
Copy /usr/share/chalmers-lava2000-1.1.1/Vhdl/lava.vhd to your project directory, and you can verify the generated halfAdd.vhd with it using &lt;a href=&quot;http://ghdl.free.fr/&quot;&gt;ghdl&lt;/a&gt;:
&lt;pre&gt;
$ ghdl -a lava.vhd
$ ghdl -a halfAdd.vhd 
$
&lt;/pre&gt;
You are encouraged to read the &lt;a href=&quot;http://www.cse.chalmers.se/edu/course/TDA956/Papers/lava-tutorial.ps&quot;&gt;&quot;Slightly Revised Tutorial on Lava&quot;&lt;/a&gt; by &lt;a href=&quot;http://www.chalmers.se/cse/EN/people/claessen-koen&quot;&gt;Koen Claessen&lt;/a&gt;, and &lt;a href=&quot;http://www.cse.chalmers.se/~ms/&quot;&gt;Mary Sheeran&lt;/a&gt; for more detailed documentation on using the library.&lt;br /&gt;</content>
		<author>
			<name>Shakthi Kannan (mbuf)</name>
			<uri>http://www.shakthimaan.com/news.xml</uri>
		</author>
		<source>
			<title type="html">shakthimaan.com</title>
			<subtitle type="html">/news</subtitle>
			<link rel="self" href="http://www.shakthimaan.com/news.xml"/>
			<id>http://www.shakthimaan.com/news.xml</id>
			<updated>2010-07-29T03:15:05+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Hardware Complexity Tool</title>
		<link href="http://hct.sf.net"/>
		<id>http://hct.sf.net</id>
		<updated>2010-06-18T23:00:00+00:00</updated>
		<content type="html">&lt;a href=&quot;http://hct.sourceforge.net/index.html&quot;&gt;Hardware Complexity Tool&lt;/a&gt; (hct) is now available for Fedora. It generates scores that represent the complexity of the modules of integrated circuit design projects. It uses &lt;a href=&quot;http://www.literateprogramming.com/mccabe.pdf&quot;&gt;McCabes' cyclomatic complexity&lt;/a&gt; for understanding branch complexity. You can run hct on verilog, vhdl, cdl (computer design language) files or directories that contain these files. For example:&lt;br /&gt;
&lt;pre&gt;
$ hct verilog
Directory: /tmp/verilog

verilog, 18 file(s)
+--------------------+--------------+------+-------+----------+--------+
| FILENAME           | MODULE       | IO   | NET   | MCCABE   | TIME   |
+--------------------+--------------+------+-------+----------+--------+
| Case.v                              0      0       18         0.1504 |
|                      case           0      0       18                |
+----------------------------------------------------------------------+
| modules.v                           1      0       2          0.0137 |
|                      m1             1      0       1                 |
|                      m2             0      0       1                 |
+----------------------------------------------------------------------+
| RAM.v                               7      0       4          0.1653 |
|                      RAM            7      0       4                 |
+----------------------------------------------------------------------+
| hello_world.v                       0      0       1          0.0113 |
|                      hello_world    0      0       1                 |
+----------------------------------------------------------------------+
| one_day2.v                          0      0       2          0.0423 |
|                      one_day2       0      0       2                 |
+----------------------------------------------------------------------+
| S430.v                              13     4       1          0.2438 |
|                      S430           13     4       1                 |
+----------------------------------------------------------------------+
| one_day3.v                          0      0       4          0.0305 |
|                      one_day3       0      0       4                 |
+----------------------------------------------------------------------+
| first_counter.v                     4      3       3          0.0765 |
|                      first_~unter   4      3       3                 |
+----------------------------------------------------------------------+
| Multiplier.v                        7      4       1          0.1646 |
|                      Multiplier     7      4       1                 |
+----------------------------------------------------------------------+
| Sys430.v                            10     12      9          0.5017 |
|                      Sys430         3      12      5                 |
|                      LEDTest        7      0       4                 |
+----------------------------------------------------------------------+
| first_counter_tb.v                  0      1       1          0.0279 |
|                      first_~er_tb   0      1       1                 |
+----------------------------------------------------------------------+
| longtest.v                          9      5       12         2.1130 |
|                      RAMB16_S9      9      5       12                |
+----------------------------------------------------------------------+
| GPR.v                               8      0       3          0.1039 |
|                      GPR            8      0       3                 |
+----------------------------------------------------------------------+
| encoder_u~g_case.v                  3      0       16         0.1384 |
|                      encode~_case   3      0       16                |
+----------------------------------------------------------------------+
| RAMB16_S9.v                         9      5       12         2.0922 |
|                      RAMB16_S9      9      5       12                |
+----------------------------------------------------------------------+
| comment.v                           0      0       1          0.0264 |
|                      comment        0      0       1                 |
+----------------------------------------------------------------------+
| encoder_using_if.v                  3      0       17         0.1941 |
|                      encode~ng_if   3      0       17                |
+----------------------------------------------------------------------+
| MUX2.v                              0      0       1          0.0035 |
|                      INV            0      0       1                 |
+----------------------------------------------------------------------+
&lt;/pre&gt;</content>
		<author>
			<name>Shakthi Kannan (mbuf)</name>
			<uri>http://www.shakthimaan.com/news.xml</uri>
		</author>
		<source>
			<title type="html">shakthimaan.com</title>
			<subtitle type="html">/news</subtitle>
			<link rel="self" href="http://www.shakthimaan.com/news.xml"/>
			<id>http://www.shakthimaan.com/news.xml</id>
			<updated>2010-07-29T03:15:05+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Fedora 13 release party in Bangalore</title>
		<link href="http://jeevanullas.in/blog/2010/06/fedora-13-release-party-in-bangalore/"/>
		<id>http://jeevanullas.in/blog/?p=86</id>
		<updated>2010-06-12T10:48:54+00:00</updated>
		<content type="html">&lt;p&gt;I am a little &lt;a href=&quot;http://dodoincfedora.wordpress.com/2010/06/05/fedora-13-release-party-with-fsmk-in-bengaluru/&quot;&gt;late&lt;/a&gt; on writing about the release party we had last week on Saturday, was occupied with &lt;a href=&quot;http://www.infosys.com&quot;&gt;$work&lt;/a&gt;.  Well it all started with the mail of &lt;a href=&quot;https://fedoraproject.org/wiki/User:Sherry151&quot;&gt;Rangeen&lt;/a&gt; to &lt;a href=&quot;http://lists.fsmk.in/private.cgi/fsmk-discuss-fsmk.in/2010-May/000449.html&quot;&gt;FSUG&lt;/a&gt; mailing list. That time I have just come to Bangalore and thought it will be great to meet all the Fedora folks in Bangalore during such party. Venue was a big issue initially as almost all the colleges in Bangalore were having exams. But I knew my friend &lt;a href=&quot;http://www.facebook.com/saket.srivastav&quot;&gt;Saket&lt;/a&gt; who has been pretty active in &lt;a href=&quot;http://fsmk.org&quot;&gt;FSMK&lt;/a&gt; Bangalore. I contacted him and asked him if we can organize this release party at FSMK Bangalore office. I got a positive reply and after confirmation from the FSMK folks we &lt;a href=&quot;http://lists.fsmk.in/private.cgi/fsmk-discuss-fsmk.in/2010-June/000475.html&quot;&gt;finalized &lt;/a&gt;to have it at FSMK Bangalore office on June 5th.&lt;/p&gt;
&lt;p&gt;I personally never expected many folks to turn up because of two reasons. One been that many colleges in Bangalore were having end semester exams plus we don&amp;#8217;t have much Fedora folks here in Bangalore. Initially we (&lt;a href=&quot;https://fedoraproject.org/wiki/User:Deepsa&quot;&gt;Me&lt;/a&gt;, &lt;a href=&quot;https://fedoraproject.org/wiki/User:Ankursinha&quot;&gt;Ankur&lt;/a&gt;, &lt;a href=&quot;https://fedoraproject.org/wiki/User:Hiemanshu&quot;&gt;Hiemanshu&lt;/a&gt; , &lt;a href=&quot;http://twitter.com/dipjyotighosh&quot;&gt;Dipjyoti&lt;/a&gt; and &lt;a href=&quot;https://fedoraproject.org/wiki/User:Sherry151&quot;&gt;Rangeen&lt;/a&gt;) had a hard time finding out the office. Point to remember GPS in India will not be accurate enough with all these narrow lanes everywhere.&lt;/p&gt;
&lt;p&gt;Finally we found the place and till then FSMK folks also started turning up. I would like to specially mention Vignesh, Prabodh and Naveen from FSMK core team who turned up for the party and assisted with the logistics. We had few other people some friends of &lt;a href=&quot;https://fedoraproject.org/wiki/User:Sherry151&quot;&gt;Rangeen&lt;/a&gt; , students of Prabodh&amp;#8217;s previous college &lt;a href=&quot;http://cmrit.cmredu.com/&quot;&gt;CMRIT&lt;/a&gt; and other FSMK members.&lt;/p&gt;
&lt;p&gt;We started with the discussion about why people should use Linux and not Windows. I never expected to start with such discussion in a Fedora release party but I love to be part of such discussion. It was great. Many questions were thrown on us. Why Linux? Linux? Is it user friendly enough? Why would a normal user plan to switch to Linux? People there who were using Fedora for past 4 years had such questions. I respect all the points given by them.&lt;/p&gt;
&lt;p&gt;We started answering one by one. Inputs were given by Naveen on how the current scenario is changing and government bodies across India are encouraging FOSS in schools and engineering colleges. The current projects by Knowledge Commons and MHRD were been discussed with all the participants.&lt;/p&gt;
&lt;p&gt;Me and Rangeen told the participants about how things (hardware) works out of the box these days with Fedora. How easily if you plug a mobile broadband card you can be sure that it will work without any hassle (all thanks to the great NetworkManager). We discussed why latest hardware sometime doesn&amp;#8217;t work on most of the Linux distributions and how things are now changing. Times have changed and we should look towards improving things instead of blaming about them (my personal opinion).&lt;/p&gt;
&lt;p&gt;Naveen introduced us to the FSMK activities currently going on. I personally got to know lot from that and looking forward to contribute to the cause FSMK is supporting.&lt;/p&gt;
&lt;p&gt;While the hot discussion on various topics related to Linux/Windows was going on we ordered pizza&amp;#8217;s for all of us. I would like to mention here how happy was the pizza girl over phone that she told me to not pick her phone after few minutes. She loved my Kannada ring tone &lt;img src=&quot;http://jeevanullas.in/blog/wp-includes/images/smilies/icon_smile.gif&quot; alt=&quot;:)&quot; class=&quot;wp-smiley&quot; /&gt; &lt;/p&gt;
&lt;p&gt;Once the dust of doubts and questions settled down &lt;a href=&quot;https://fedoraproject.org/wiki/User:Ankursinha&quot;&gt;Ankur&lt;/a&gt; started giving the Fedora 13 DVD/Live CD media to all the members. We also copied ISO for others who brought USB stick. I personally got DVD 32bit ISO from Ankur. Thanks a lot Ankur because I am writing this blog post from a Fedora 13 loaded laptop  &lt;img src=&quot;http://jeevanullas.in/blog/wp-includes/images/smilies/icon_smile.gif&quot; alt=&quot;:)&quot; class=&quot;wp-smiley&quot; /&gt; &lt;/p&gt;
&lt;p&gt;After that we briefly discussed the new features in Fedora 13 among the participants and touched few special points from the release notes handouts given to them by Ankur and &lt;a href=&quot;https://fedoraproject.org/wiki/User:Sherry151&quot;&gt;Rangeen&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Pizzas had arrived by that time and we ate them all!! It was great having pizza and garlic bread-sticks with jalapeño. Finally we all exchanged our phone numbers and promised to stay in touch &lt;img src=&quot;http://jeevanullas.in/blog/wp-includes/images/smilies/icon_smile.gif&quot; alt=&quot;:)&quot; class=&quot;wp-smiley&quot; /&gt; &lt;/p&gt;
&lt;p&gt;Overall turn out was around 10 + we four Fedora folks (&lt;a href=&quot;https://fedoraproject.org/wiki/User:Deepsa&quot;&gt;Me&lt;/a&gt;, &lt;a href=&quot;https://fedoraproject.org/wiki/User:Sherry151&quot;&gt;Rangeen&lt;/a&gt;, &lt;a href=&quot;https://fedoraproject.org/wiki/User:Hiemanshu&quot;&gt;Hiemanshu&lt;/a&gt; and &lt;a href=&quot;https://fedoraproject.org/wiki/User:Ankursinha&quot;&gt;Ankur&lt;/a&gt;). That was a good figure. We have now aligned ourself with the FSMK and we plan to conduct some good workshops as soon as the college re-opens in Bangalore. Fedora is going to spread everywhere in the air of Bangalore I am sure. We are looking for contributors and FSMK is also planning their strategy on the same grounds. I hope to see some good action coming in next few weeks.&lt;/p&gt;
&lt;p&gt;Oh yes, I don&amp;#8217;t want to miss this part. After the release party ended me and &lt;a href=&quot;https://fedoraproject.org/wiki/User:Hiemanshu&quot;&gt;Hiemanshu&lt;/a&gt; planned to end up in pub (purple haze in Kormangla). Ankur and Rangeen didn&amp;#8217;t supported us so we went there alone. Hiemanshu had I believe 2 different cocktails and me 1 pitcher of Foster&amp;#8217;s &lt;img src=&quot;http://jeevanullas.in/blog/wp-includes/images/smilies/icon_smile.gif&quot; alt=&quot;:)&quot; class=&quot;wp-smiley&quot; /&gt; &lt;/p&gt;
&lt;p&gt;Drink beer use Fedora our motto!! Few pictures were shot by Me, Rangeen, &lt;a href=&quot;http://twitter.com/dipjyotighosh&quot;&gt;Dipjyoti&lt;/a&gt; and Ankur. You can find them here:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://picasaweb.google.com/dipjyoti.ghosh/Fedora13ReleaseParty&quot;&gt;http://picasaweb.google.com/dipjyoti.ghosh/Fedora13ReleaseParty#&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://picasaweb.google.com/sherry151/&quot;&gt;http://picasaweb.google.com/sherry151/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://picasaweb.google.com/sanjay.ankur/Fedora13ReleaseParty&quot;&gt;http://picasaweb.google.com/sanjay.ankur/Fedora13ReleaseParty&lt;/a&gt;&lt;/p&gt;</content>
		<author>
			<name>Deependra Singh Shekhawat (linuxguru)</name>
			<uri>http://jeevanullas.in/blog</uri>
		</author>
		<source>
			<title type="html">/home/jeevanullas » Linux</title>
			<subtitle type="html">Life of a geek</subtitle>
			<link rel="self" href="http://jeevanullas.in/blog/category/linux/feed/"/>
			<id>http://jeevanullas.in/blog/category/linux/feed/</id>
			<updated>2010-06-12T15:25:03+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">silence !!</title>
		<link href="http://acedip.in/blog/silence/"/>
		<id>http://acedip.in/blog/?p=189</id>
		<updated>2010-06-12T09:08:23+00:00</updated>
		<content type="html">The real has no existance,
&amp;#160;&amp;#160;&amp;#160;&amp;#160; and the un-real ceases to be,
the reality of both has
&amp;#160;&amp;#160;&amp;#160;&amp;#160; thus perceived by the seers of truth.
voices have no answers,
&amp;#160;&amp;#160;&amp;#160;&amp;#160; neither do I,
voices hear the presence,
&amp;#160;&amp;#160;&amp;#160;&amp;#160; without any essence,
the sounds of sorrow,
neither the sounds of joy,
&amp;#160;&amp;#160;&amp;#160;&amp;#160; do I here,
Its presence lingering somewhere,
with the deep blue essence of the meadows,
&amp;#160;&amp;#160;&amp;#160;&amp;#160; cant [...]</content>
		<author>
			<name>Anirudh Singh Shekhawat (Acedip)</name>
			<uri>http://acedip.in/blog</uri>
		</author>
		<source>
			<title type="html">Acedip | Anirudh singh shekhawat</title>
			<subtitle type="html">Desultory thoughts of a wandering mind.</subtitle>
			<link rel="self" href="http://acedip.in/blog/feed/"/>
			<id>http://acedip.in/blog/feed/</id>
			<updated>2010-06-12T09:30:05+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">A long silence…</title>
		<link href="http://kapilacharya.com/2010/06/a-long-silence/"/>
		<id>http://kapilacharya.com/?p=33</id>
		<updated>2010-06-08T05:07:49+00:00</updated>
		<content type="html">&lt;p&gt;What is happy, What is sad&lt;br /&gt;
What is smile , What are tears&lt;br /&gt;
A mere difference of perspective&lt;br /&gt;
And here I am&lt;br /&gt;
Against all those laws of human nature&lt;br /&gt;
I cry when I am happy&lt;br /&gt;
I smile when I am sad&lt;br /&gt;
The days will go by&lt;br /&gt;
And all you&amp;#8217;ll be left with&lt;br /&gt;
Is a long silence&lt;br /&gt;
Where there is no happiness and tears&lt;br /&gt;
No pain and smiles&lt;br /&gt;
Just , a long silence&amp;#8230;&lt;/p&gt;</content>
		<author>
			<name>Kapil Acharya (kapzi)</name>
			<uri>http://kapilacharya.com</uri>
		</author>
		<source>
			<title type="html">A circle has no beginning</title>
			<subtitle type="html">Kapzi's Personal Blog</subtitle>
			<link rel="self" href="http://kapilacharya.com/feed/"/>
			<id>http://kapilacharya.com/feed/</id>
			<updated>2010-07-21T17:05:05+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Blender meet, Hyderabad</title>
		<link href="http://shakthimaan.com/downloads/glv/hyd/blender-hyderabad-meet-may-16-2010.png"/>
		<id>http://shakthimaan.com/downloads/glv/hyd/blender-hyderabad-meet-may-16-2010.png</id>
		<updated>2010-05-17T14:30:00+00:00</updated>
		<content type="html">Attended May months' &lt;a href=&quot;http://ilughyd.org.in/&quot;&gt;Hyderabad user group&lt;/a&gt; meeting on Sunday, May 16, 2010 at:&lt;br /&gt;
&lt;pre&gt;
Rhythm &amp;amp; Hues Studios India Pvt. Ltd.
The V, Vega Block, 11th Floor,
Left Wing, Plot No - 17, Software Units Layout
HITEC City, Madhapur, 
Hyderabad 500 081
India
&lt;/pre&gt;
Satish &quot;iloveblender&quot; Goda gave a very informative talk about the history of the &lt;a href=&quot;http://www.blender.org/&quot;&gt;Blender&lt;/a&gt; project, &lt;a href=&quot;http://www.blender.org/features-gallery/blender-open-projects/&quot;&gt;animation movies created&lt;/a&gt; using the Blender software, pipelines involved in animation movie production, and on how the blender community functions in producing open animation movies with the guidance of &lt;a href=&quot;http://www.blender.org/blenderorg/blender-foundation/history/&quot;&gt;Ton Roosendaal&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;

Their open animation movie projects are code named after names of fruits. One interesting aspect is that before starting on a new movie project, one can pay and pre-order the DVD, and your name is added to the credits when the movie is released. This funding also helps the team in producing the movie!&lt;br /&gt;&lt;br /&gt;

Thanks to the Management of Rhythm &amp;amp; Hues Studios India Pvt. Ltd. for hosting our user group meet at their auditorium. Special thanks to &quot;cheedhu&quot; and &quot;iloveblender&quot; for initiating the effort. We hope to have more sessions of blender and other F/OSS sessions at this venue.&lt;br /&gt;&lt;br /&gt;

A photo taken at the end of the session:&lt;br /&gt;
&lt;img src=&quot;http://shakthimaan.com/downloads/glv/hyd/blender-hyderabad-meet-may-16-2010.png&quot; alt=&quot;blender meet photo&quot; /&gt;&lt;br /&gt;</content>
		<author>
			<name>Shakthi Kannan (mbuf)</name>
			<uri>http://www.shakthimaan.com/news.xml</uri>
		</author>
		<source>
			<title type="html">shakthimaan.com</title>
			<subtitle type="html">/news</subtitle>
			<link rel="self" href="http://www.shakthimaan.com/news.xml"/>
			<id>http://www.shakthimaan.com/news.xml</id>
			<updated>2010-07-29T03:15:05+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">KMR Foundation</title>
		<link href="http://www.kmrfoundation.org"/>
		<id>http://www.kmrfoundation.org</id>
		<updated>2010-05-08T21:00:00+00:00</updated>
		<content type="html">Visited &lt;a href=&quot;http://www.sreenidhiinternational.com/&quot;&gt;Sreenidhi International School&lt;/a&gt; and members of the &lt;a href=&quot;http://www.kmrfoundation.org/&quot;&gt;KMR Foundation&lt;/a&gt; today, Saturday, May 8, 2010 in Hyderabad. They have &lt;a href=&quot;http://laptop.org/en/&quot;&gt;OLPC&lt;/a&gt; XOs that they are using for class(grade) IV students in a school near their premises at Aziznagar, Ranga Reddy district, Andhra Pradesh, India. They require support for Telugu language and use of XO software for the school students. Here is a screenshot of one of the XOs:&lt;br /&gt;
&lt;img alt=&quot;olpc xo&quot; src=&quot;http://shakthimaan.com/downloads/glv/hyd/olpc/olpc-xo.png&quot; /&gt;&lt;br /&gt;</content>
		<author>
			<name>Shakthi Kannan (mbuf)</name>
			<uri>http://www.shakthimaan.com/news.xml</uri>
		</author>
		<source>
			<title type="html">shakthimaan.com</title>
			<subtitle type="html">/news</subtitle>
			<link rel="self" href="http://www.shakthimaan.com/news.xml"/>
			<id>http://www.shakthimaan.com/news.xml</id>
			<updated>2010-07-29T03:15:05+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">perl-Sys-CPU</title>
		<link href="http://search.cpan.org/~mkoderer/Sys-CPU/CPU.pm"/>
		<id>http://search.cpan.org/~mkoderer/Sys-CPU/CPU.pm</id>
		<updated>2010-05-07T01:00:00+00:00</updated>
		<content type="html">Pushed &lt;a href=&quot;http://search.cpan.org/~mkoderer/Sys-CPU/CPU.pm/&quot;&gt;perl-Sys-CPU&lt;/a&gt; to Fedora repository. You can use it like:&lt;br /&gt;
&lt;pre&gt;
use Sys::CPU;
  
$number_of_cpus = Sys::CPU::cpu_count();
printf(&quot;I have %d CPU's\n&quot;, $number_of_cpus);

print &quot;  Speed : &quot;, Sys::CPU::cpu_clock(), &quot;\n&quot;;
print &quot;  Type  : &quot;, Sys::CPU::cpu_type(), &quot;\n&quot;;
&lt;/pre&gt;</content>
		<author>
			<name>Shakthi Kannan (mbuf)</name>
			<uri>http://www.shakthimaan.com/news.xml</uri>
		</author>
		<source>
			<title type="html">shakthimaan.com</title>
			<subtitle type="html">/news</subtitle>
			<link rel="self" href="http://www.shakthimaan.com/news.xml"/>
			<id>http://www.shakthimaan.com/news.xml</id>
			<updated>2010-07-29T03:15:05+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">\newcommand macro substitution</title>
		<link href="http://gitorious.org/di-git-ally-managing-love-letters"/>
		<id>http://gitorious.org/di-git-ally-managing-love-letters</id>
		<updated>2010-04-21T00:22:00+00:00</updated>
		<content type="html">Used \newcommand to abstract the four actor names in &lt;a href=&quot;http://shakthimaan.com/downloads.html#di-git-ally-managing-love-letters&quot;&gt;di-git-ally managing love letters&lt;/a&gt; presentation:&lt;br /&gt;
&lt;pre&gt;
\newcommand{\oneactor}{pretty-zinta}
\newcommand{\twoactor}{raaani-mukerji}
\newcommand{\threeactor}{nayantaaara}
\newcommand{\fouractor}{aishvarya-ray}
&lt;/pre&gt;
You can now get the &lt;a href=&quot;http://gitorious.org/di-git-ally-managing-love-letters&quot;&gt;sources from gitorious&lt;/a&gt;, and replace the above names to your liking, and rebuild the presentation by invoking &lt;em&gt;make&lt;/em&gt; from the sources directory.&lt;br /&gt;</content>
		<author>
			<name>Shakthi Kannan (mbuf)</name>
			<uri>http://www.shakthimaan.com/news.xml</uri>
		</author>
		<source>
			<title type="html">shakthimaan.com</title>
			<subtitle type="html">/news</subtitle>
			<link rel="self" href="http://www.shakthimaan.com/news.xml"/>
			<id>http://www.shakthimaan.com/news.xml</id>
			<updated>2010-07-29T03:15:05+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Hackers dom in Hyderabad</title>
		<link href="http://jeevanullas.in/blog/2010/04/hackers-dom-in-hyderabad/"/>
		<id>http://jeevanullas.in/blog/?p=78</id>
		<updated>2010-04-18T03:12:40+00:00</updated>
		<content type="html">&lt;p&gt;Well we hackers can&amp;#8217;t live without our machines and that&amp;#8217;s so true. Recently I have been playing with EBS volumes in &lt;a href=&quot;http://open.eucalyptus.com&quot;&gt;Eucalyptus&lt;/a&gt; but was not able to make it work on Centos 5.4 with XEN more information can be found &lt;a href=&quot;http://open.eucalyptus.com/forum/euca-attach-volume-failed-centos-54-hotplug-scripts-not-working&quot;&gt;here&lt;/a&gt;. Then I thought to give it a try on our KVM + Fedora 12. But wait a minute we need more than 1 machine to try EBS volume. Hmm, just gave it a thought and remembered that I have another laptop with me at home. My brother&amp;#8217;s new DELL laptop which is only having Windows 7 and nothing else. He doesn&amp;#8217;t like anyone else to install any other OS on it so I thought of putting Fedora 12 inside VMware and finally after doing that I started my hacking experiment.&lt;/p&gt;
&lt;p&gt;I have been running my &lt;a href=&quot;http://open.eucalyptus.com&quot;&gt;Eucalyptus&lt;/a&gt; private cloud on a single laptop till now and knew that I can&amp;#8217;t use brother&amp;#8217;s laptop as node because it has windows 7 and fedora 12 was running inside VM. So I started installing eucalyptus 1.6.2 on that VM via source and finished eucalyptus as well euca2ools installation. Created that VM as the head running Cloud controller, cluster controller, storage controller and walrus. Next I switched to my laptop from scratch installed eucalyptus and configured it to run as node. My laptop is super cool. It&amp;#8217;s been 4 years I have had this machine but the good thing it has the special processor flags which gives VT support so that I can run fully virtualized VM in KVM (kvm_intel).&lt;/p&gt;
&lt;p&gt;The next thing which started bothering me was I didn&amp;#8217;t had much space on my laptop left to store the instance copies when it boots up and later runs. But I have a 500 GB hard drive which I can use for this purpose. Created a directory on one of the partitions in my external hard drive and inside my node&amp;#8217;s eucalyptus.conf&lt;/p&gt;
&lt;p&gt;&lt;code&gt;INSTANCE_PATH=&quot;/media/f5a889e3-9300-4565-9cb3-9d14b79ad124/images/&quot;&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;The other thing I changed in my eucalyptus.conf was the VNET_BRIDGE interface which by default is xenbr0. This works good for XEN but not for KVM. Changed it to following:&lt;/p&gt;
&lt;p&gt;&lt;code&gt;VNET_BRIDGE=&quot;virbr0&quot;&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;Then I remember that console thing didn&amp;#8217;t worked for me when I first tried eucalyptus on KVM+Fedora 12 sometime back and for that to work I was suggested a &lt;a href=&quot;http://community.eucalyptus.com/forum/new-vm-instances-are-terminated&quot;&gt;patch&lt;/a&gt; at the forums. Applied that patch on my &lt;em&gt;/opt/eucalyptus/usr/share/eucalyptus/partition2disk&lt;/em&gt; and all was set.&lt;/p&gt;
&lt;p&gt;The next big thing to work out was my networking. The two laptops could have been connected to each other via a ad-hoc network but I prefer a cable connection as it makes the image transfer faster. I have a cross cable with me so I used it to connect both the laptops. The cross cable connection was available inside my VMware VM via bridged connection. The only thing I did different was the gateway IP inside my head (brother&amp;#8217;s laptop fedora 12 VM running inside VMware) I gave my laptop&amp;#8217;s eth0 IP. This was done because my instance will get a IP on the subnet 192.168.122.0/255.255.255.0 and my network was on 192.168.1.0/255.255.255.0. Once I did that I started the instance and later when it booted was able to ssh to it with my private key (password less login).&lt;/p&gt;
&lt;p&gt;The other problem I had was sharing internet connection at the same time. I use a reliance usb device for internet connectivity. I attached that to my laptop started the connection created a simple squid proxy configuration which allows 192.168.1.0/255.255.255.0 and configured the same proxy on the fedora 12 VM in my brother&amp;#8217;s laptop. This made internet as well as yum (had to made a proxy entry in /etc/yum.conf) working on the VM which was required to install some RPMS from the repos.&lt;/p&gt;
&lt;p&gt;Sounds cool, eh? Let&amp;#8217;s see a picture of this setup.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://188.40.110.37/blog/wp-content/uploads/2010/04/17042010085.jpg&quot;&gt;&lt;img src=&quot;http://jeevanullas.in/blog/wp-content/uploads/2010/04/17042010085-300x225.jpg&quot; alt=&quot;&quot; title=&quot;Hackers dom in hyderabad&quot; width=&quot;300&quot; height=&quot;225&quot; class=&quot;alignnone size-medium wp-image-79&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;In the picture above you can see my laptop on the left hand side connected to my external 500 GB maxtor hard drive, reliance USB device and my brother laptop on the right via cross cable wire.&lt;/p&gt;
&lt;p&gt;Though the setup worked and I was able to boot instance and login to them I was not able to see my EBS volume inside the VM. I have updated my forum entry for the same and you can find more information about it &lt;a href=&quot;http://community.eucalyptus.com/forum/new-vm-instances-are-terminated&quot;&gt;here&lt;/a&gt;. Let me know if you have any suggestions for me.&lt;/p&gt;
&lt;p&gt;Please note that this is a small private cloud facility running out of my home and its scalable so if you got a laptop or a machine which you would like to add to this cloud do let me know.&lt;/p&gt;
&lt;p&gt;Signing off for now but the love for machines still not ends up going to office to play more with those.&lt;/p&gt;</content>
		<author>
			<name>Deependra Singh Shekhawat (linuxguru)</name>
			<uri>http://jeevanullas.in/blog</uri>
		</author>
		<source>
			<title type="html">/home/jeevanullas » Linux</title>
			<subtitle type="html">Life of a geek</subtitle>
			<link rel="self" href="http://jeevanullas.in/blog/category/linux/feed/"/>
			<id>http://jeevanullas.in/blog/category/linux/feed/</id>
			<updated>2010-06-12T15:25:03+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">mcu8051ide 1.3.5</title>
		<link href="http://mcu8051ide.sourceforge.net/"/>
		<id>http://mcu8051ide.sourceforge.net/</id>
		<updated>2010-04-13T00:11:00+00:00</updated>
		<content type="html">Pushed recent &lt;a href=&quot;http://mcu8051ide.sourceforge.net/&quot;&gt;mcu8051ide&lt;/a&gt; 1.3.5 package to Fedora repository that has bug fixes.
&lt;br /&gt;</content>
		<author>
			<name>Shakthi Kannan (mbuf)</name>
			<uri>http://www.shakthimaan.com/news.xml</uri>
		</author>
		<source>
			<title type="html">shakthimaan.com</title>
			<subtitle type="html">/news</subtitle>
			<link rel="self" href="http://www.shakthimaan.com/news.xml"/>
			<id>http://www.shakthimaan.com/news.xml</id>
			<updated>2010-07-29T03:15:05+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Fedora Summer Coding 2010, DGC GTK+ GUI</title>
		<link href="https://fedoraproject.org/wiki/Category:Summer_Coding_2010_ideas#DGC_GTK_GUI"/>
		<id>https://fedoraproject.org/wiki/Category:Summer_Coding_2010_ideas#DGC_GTK_GUI</id>
		<updated>2010-04-12T00:10:00+00:00</updated>
		<content type="html">Inviting prospective students for Digital Gate Compiler (DGC) GTK+ GUI implementation for &lt;a href=&quot;https://fedoraproject.org/wiki/Category:Summer_Coding_2010&quot;&gt;Fedora Summer Coding 2010&lt;/a&gt;. More details are available at &lt;a href=&quot;https://fedoraproject.org/wiki/Summer_Coding_2010_ideas_-_DGC_GTK_GUI&quot;&gt;Summer Coding 2010 - DGC GTK GUI&lt;/a&gt;.
&lt;br /&gt;</content>
		<author>
			<name>Shakthi Kannan (mbuf)</name>
			<uri>http://www.shakthimaan.com/news.xml</uri>
		</author>
		<source>
			<title type="html">shakthimaan.com</title>
			<subtitle type="html">/news</subtitle>
			<link rel="self" href="http://www.shakthimaan.com/news.xml"/>
			<id>http://www.shakthimaan.com/news.xml</id>
			<updated>2010-07-29T03:15:05+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">FOSS tool for the week</title>
		<link href="http://atuljha.com/content/foss-tool-week"/>
		<id>http://atuljha.com/71 at http://atuljha.com</id>
		<updated>2010-04-11T21:35:40+00:00</updated>
		<content type="html">&lt;p&gt;This weeks software is denyhosts.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://denyhosts.sourceforge.net/&quot; title=&quot;http://denyhosts.sourceforge.net/&quot;&gt;http://denyhosts.sourceforge.net/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I&amp;nbsp;was having a look at my audit log file few weeks back and i noticed many chinease IP&amp;nbsp;hitting on my server with SSH&amp;nbsp;based dictionary attack. After spending some time on sourceforge i came to know about this project. It helps in solving the issue the script automatically after investigating the flow/trend&amp;nbsp; puts&amp;nbsp; the IP&amp;nbsp;inside hosts.deny list.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://atuljha.com/content/foss-tool-week&quot; target=&quot;_blank&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</content>
		<author>
			<name>Atul Jha (koolhead17)</name>
			<uri>http://atuljha.com</uri>
		</author>
		<source>
			<title type="html">koolhead17 == atul jha</title>
			<subtitle type="html">&lt;i&gt; &lt;h1&gt;Change is good, So am working on it.&lt;/h1&gt;&lt;br /&gt; All new homepage will be coming up in few days.&lt;/i&gt;&lt;br /&gt;I am a e-mail away &lt;b&gt;koolhead17@gmail.com &lt;/b&gt; incase of something urgent/interesting. :D&lt;/i&gt;&lt;br /&gt;&lt;br /&gt; I will be not be availabe on my e-mail or my mobile from apr 28 to may 15. I can reply to your mails and calls only when am back on the mainland :D</subtitle>
			<link rel="self" href="http://atuljha.com/rss.xml"/>
			<id>http://atuljha.com/rss.xml</id>
			<updated>2010-04-19T13:05:02+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Nitish, Development and my loving Bihar !!</title>
		<link href="http://atuljha.com/content/nitish-development-and-my-loving-bihar"/>
		<id>http://atuljha.com/70 at http://atuljha.com</id>
		<updated>2010-04-11T19:22:56+00:00</updated>
		<content type="html">&lt;p&gt;So the election cloud is all over bihar again and our sitting Chief Minister thinks he and his party is coming back in power again. I just wonder what makes him think so. One a note Media has been a loud mouth in citing development all across. As a young 24 yr old s/w engg if i have to rate development graph i wont rate development more than 4 on a scale of 10. I agree Nitish babu will cry hard and start mentioning his development quotient which will be :-&lt;/p&gt;
&lt;p&gt;1. More reservation and divisions of minorities.&lt;/p&gt;
&lt;p&gt;2.More division of dalits into maha dalits.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://atuljha.com/content/nitish-development-and-my-loving-bihar&quot; target=&quot;_blank&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</content>
		<author>
			<name>Atul Jha (koolhead17)</name>
			<uri>http://atuljha.com</uri>
		</author>
		<source>
			<title type="html">koolhead17 == atul jha</title>
			<subtitle type="html">&lt;i&gt; &lt;h1&gt;Change is good, So am working on it.&lt;/h1&gt;&lt;br /&gt; All new homepage will be coming up in few days.&lt;/i&gt;&lt;br /&gt;I am a e-mail away &lt;b&gt;koolhead17@gmail.com &lt;/b&gt; incase of something urgent/interesting. :D&lt;/i&gt;&lt;br /&gt;&lt;br /&gt; I will be not be availabe on my e-mail or my mobile from apr 28 to may 15. I can reply to your mails and calls only when am back on the mainland :D</subtitle>
			<link rel="self" href="http://atuljha.com/rss.xml"/>
			<id>http://atuljha.com/rss.xml</id>
			<updated>2010-04-19T13:05:02+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Beer is the cure!!</title>
		<link href="http://atuljha.com/content/beer-cure"/>
		<id>http://atuljha.com/69 at http://atuljha.com</id>
		<updated>2010-04-06T20:03:57+00:00</updated>
		<content type="html">&lt;p&gt;&amp;nbsp;I know my relatives and friends who thinks i should not have written this will curse on me. I really don't care much its my life and this is my homepage apart from that India is still holding freedom of speech and Internet (Thank god am no Chinease).&lt;img alt=&quot;&quot; src=&quot;http://atuljha.com/sites/all/modules/fckeditor/fckeditor/editor/images/smiley/msn/regular_smile.gif&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://atuljha.com/content/beer-cure&quot; target=&quot;_blank&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</content>
		<author>
			<name>Atul Jha (koolhead17)</name>
			<uri>http://atuljha.com</uri>
		</author>
		<source>
			<title type="html">koolhead17 == atul jha</title>
			<subtitle type="html">&lt;i&gt; &lt;h1&gt;Change is good, So am working on it.&lt;/h1&gt;&lt;br /&gt; All new homepage will be coming up in few days.&lt;/i&gt;&lt;br /&gt;I am a e-mail away &lt;b&gt;koolhead17@gmail.com &lt;/b&gt; incase of something urgent/interesting. :D&lt;/i&gt;&lt;br /&gt;&lt;br /&gt; I will be not be availabe on my e-mail or my mobile from apr 28 to may 15. I can reply to your mails and calls only when am back on the mainland :D</subtitle>
			<link rel="self" href="http://atuljha.com/rss.xml"/>
			<id>http://atuljha.com/rss.xml</id>
			<updated>2010-04-19T13:05:02+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">mukt.in 2010 cfp open now!!</title>
		<link href="http://atuljha.com/content/muktin-2010-cfp-open-now"/>
		<id>http://atuljha.com/68 at http://atuljha.com</id>
		<updated>2010-04-05T21:11:11+00:00</updated>
		<content type="html">&lt;p&gt;&amp;nbsp;After a long discussion and brainstorming session i would like to say that we have finally announced the date for www.mukt.in.&lt;img alt=&quot;&quot; src=&quot;http://atuljha.com/sites/all/modules/fckeditor/fckeditor/editor/images/smiley/msn/tounge_smile.gif&quot; /&gt;&lt;/p&gt;
&lt;p&gt;This year the event is happening in Jaipur instead of its traditional base Hyderabad. The reasons are many and i would prefer not counting it here.&lt;/p&gt;
&lt;p&gt;Thankfully we have got some sponsors with us and we are trying our best to have the event a success with the help on Lug-Jaipur.&lt;/p&gt;
&lt;p&gt;Date:- 23,24 apr, 2010.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://atuljha.com/content/muktin-2010-cfp-open-now&quot; target=&quot;_blank&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</content>
		<author>
			<name>Atul Jha (koolhead17)</name>
			<uri>http://atuljha.com</uri>
		</author>
		<source>
			<title type="html">koolhead17 == atul jha</title>
			<subtitle type="html">&lt;i&gt; &lt;h1&gt;Change is good, So am working on it.&lt;/h1&gt;&lt;br /&gt; All new homepage will be coming up in few days.&lt;/i&gt;&lt;br /&gt;I am a e-mail away &lt;b&gt;koolhead17@gmail.com &lt;/b&gt; incase of something urgent/interesting. :D&lt;/i&gt;&lt;br /&gt;&lt;br /&gt; I will be not be availabe on my e-mail or my mobile from apr 28 to may 15. I can reply to your mails and calls only when am back on the mainland :D</subtitle>
			<link rel="self" href="http://atuljha.com/rss.xml"/>
			<id>http://atuljha.com/rss.xml</id>
			<updated>2010-04-19T13:05:02+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Dont wonder.Wake up.</title>
		<link href="http://acedip.in/blog/dont-wonder-wake-up-2/"/>
		<id>http://acedip.in/blog/?p=183</id>
		<updated>2010-04-05T17:55:11+00:00</updated>
		<content type="html">&lt;p&gt;&lt;a href=&quot;http://acedip.in/blog/wp-content/uploads/2010/04/IMG_0515.jpg&quot;&gt;&lt;a href=&quot;http://acedip.in/blog/wp-content/uploads/2010/04/IMG_0515.jpg&quot;&gt;&lt;img class=&quot;size-large wp-image-186 aligncenter&quot; title=&quot;IMG_0515&quot; src=&quot;http://acedip.in/blog/wp-content/uploads/2010/04/IMG_0515-1024x682.jpg&quot; alt=&quot;&quot; width=&quot;614&quot; height=&quot;409&quot; /&gt;&lt;/a&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;
&lt;p&gt;Benjamin Franklin said, to do it today if you are to do it tomorrow. We have to sweep today&amp;#8217;s possibility under tomorrow rug, until we cant anymore, until we finally understand for ourselves, that knowing is better than wondering, that waking is better than sleeping. and that even the biggest failure, even the worst,most intractable mistake beats the hell out of never trying.&lt;/p&gt;
&lt;p&gt;I&amp;#8217;m trying to get into this habit of posting a few lines if I dont have a few hundred lines to write. Because earlier if a post wasn&amp;#8217;t a atleast a few hundred lines, I never considered it to be a blog. That should change now.&lt;/p&gt;&lt;/p&gt;</content>
		<author>
			<name>Anirudh Singh Shekhawat (Acedip)</name>
			<uri>http://acedip.in/blog</uri>
		</author>
		<source>
			<title type="html">Acedip | Anirudh singh shekhawat</title>
			<subtitle type="html">Desultory thoughts of a wandering mind.</subtitle>
			<link rel="self" href="http://acedip.in/blog/feed/"/>
			<id>http://acedip.in/blog/feed/</id>
			<updated>2010-06-12T09:30:05+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">vrq 1.0.74</title>
		<link href="http://vrq.sf.net/"/>
		<id>http://vrq.sf.net/</id>
		<updated>2010-04-05T00:22:30+00:00</updated>
		<content type="html">Pushed recent &lt;a href=&quot;http://vrq.sourceforge.net/&quot;&gt;VRQ&lt;/a&gt; (Verilog Parser) 1.0.74 package to Fedora repository.
&lt;br /&gt;</content>
		<author>
			<name>Shakthi Kannan (mbuf)</name>
			<uri>http://www.shakthimaan.com/news.xml</uri>
		</author>
		<source>
			<title type="html">shakthimaan.com</title>
			<subtitle type="html">/news</subtitle>
			<link rel="self" href="http://www.shakthimaan.com/news.xml"/>
			<id>http://www.shakthimaan.com/news.xml</id>
			<updated>2010-07-29T03:15:05+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">sunday</title>
		<link href="http://acedip.in/blog/sunday/"/>
		<id>http://acedip.in/blog/?p=173</id>
		<updated>2010-04-04T06:08:49+00:00</updated>
		<content type="html">&lt;p&gt;How does it feel, sweat dripping down your chin, slowly rolling around from the back of your ear and at times in your mouth but you fight to hold on. You are having a nice time with a bollywood damsel or the girl next door whom you watch reading the newspaper outside her room every morning and wish she would just lookup to find you reading poetry out loud or sticking your head into the view finder of your camera and clicking everything except her, maybe that would make her jealous. But no, you are having a nice time in this world, late night poetry readings in her room which you climbed through a tree in her house, intentional brushing of hands on her legs soft as feather, But wait, where is this sweat coming from, you dont remember doing something which result in this. And you fight to open your eyes which too evade you, but you are able to get a glimpse and you find yourself in your room while your mother ponder on you as if she heard everything you spoke to the girl in your dream, but no that dint happen. She simply switched off the cooling to get you off the bed and ruin the perfect sunday morning. You gather some energy, make a face or two, and go for the loo. There you close your eyes and try to go back to the room of pure bliss, the world of heartly laughter to your stupid jokes, the smell of that perfect perfume which, out of all the things have got you hooked to this human being. A little shake and you grab for balance while sitting in loo and look around why am I even here and mumble some random things or two.&lt;/p&gt;
&lt;p&gt;While you wash your face, a sudden blast of music draws your attention, you know exactly what it is and now the morning has taken a dive into the deep ocean and there is no reprise. You dress up and come out of your room and find your grandparents sitting in front of the TV in the dinning hall and watching Ramayana at full blast because the grandmother cant hear properly, and on top of that, despite of the high volume your grandfather has to narrate what all is happening, where is Rama in the quest to get his wife back from Ravana. I have seen people talk about how intelligent, a great brahmin he was. Why do people always have to insist on Ravana being a good guy but succumbed to his wrong doings. Anyway you wish them and briskly walk to the terrace overlooking the park outside your house, where sunlight had difficulty touching the grounds pertaining to the huge growth of Neem trees.&lt;/p&gt;
&lt;p&gt;Anyway, now is your moment, you grab the morning paper. First page is always depressing, filled with gang rapes, murders, political agitations, scandals, bollywood celebrity complaining of the heat blah blah blah. So you skip a few pages and reach the middle of the paper, where you find your favorite writers and hope that, atleast they have got something for you, to save the day. And as most of the time, they do save your day. Short laughs, interesting facts, and so brilliantly written articles that for a few hours you forget where you are. Though the maid comes along with the breakfast to remind you of the existence of human beings around you, the fact you loath all the time.&lt;/p&gt;
&lt;p&gt;here are a few of them which gave me the sunday laughs today. &lt;a href=&quot;http://www.hindustantimes.com/News-Feed/columnskaranthapar/Words-words-words/Article1-526783.aspx&quot;&gt;karan thapar&lt;/a&gt; , and &lt;a href=&quot;http://www.hindustantimes.com/News-Feed/columnsrahulsharma/The-godless-particle/Article1-526780.aspx&quot;&gt;Indrajit hazra&lt;/a&gt; (he&amp;#8217;s really amazing) , though occasionally funny but this one was good by &lt;a href=&quot;http://www.hindustantimes.com/News-Feed/columnsothers/Educated-hunger/Article1-526782.aspx&quot;&gt;Manas Chakravarty&lt;/a&gt;. And I think you should just simply order HT on sundays and forget the pain of me reminding you again that how good they all are.&lt;/p&gt;
&lt;p&gt;So who are my heroes who saved the day for me, some literary geeks. At times you envy them, on how beautifully they write and bring joy to you. How they make you feel that you are missing onto better things in life which are far away and waiting for you, though most of these dreams only make you feel terrible rather than encourage.&lt;/p&gt;
&lt;p&gt;You are lost again, after this momentary high which even proves ecstasy better, giving you a longer high and enveloping you away from the world around you.&lt;/p&gt;
&lt;p&gt;Sun gets hotter after a while and you get back to your room hoping to get inspired soon and get back to your work. You know the world awaits you but when you have lost the inspiration the fire which runs the whole show, you cant do anything other than just sit and wait and maybe if got lucky then get invited to a party to take your mind of things around you. Most of your friends think that you are busy doing something good which you always were but least that they know you are sulking in your room doing nothing but watching your ceiling fan move in a motion if you never realized it ever did, that your bed is slightly bent over the edges, that while pressing the navigational keys on the keypad of your laptop for like a hundred times, produces a unique stutter in yakuake ( the drop down KDE konsole) while your fedora is doing a yum update. Watching yum update is probably one of the lamest of things one can do but you dont mind doing it. And people think you are giving too much of your time to photographing world around you, when those n00bs least know that, it doesnt take long to click a picture, picture clicking is alien to what you might be feeling at that time, you see something, the moment, and it all just looks perfect, so you take out the camera and click it. And while you are at it clicking you click more than one picture. As time goes by you are having a pile of pictures to upload to flickr, but you only upload one or two each day, so the process of uploading goes on for a long time and almost everyday. So the moral of the lame photography story to all the lame people who should give more time indulging in their own affair than poking their noses in other&amp;#8217;s business that you dont click everyday.&lt;/p&gt;</content>
		<author>
			<name>Anirudh Singh Shekhawat (Acedip)</name>
			<uri>http://acedip.in/blog</uri>
		</author>
		<source>
			<title type="html">Acedip | Anirudh singh shekhawat</title>
			<subtitle type="html">Desultory thoughts of a wandering mind.</subtitle>
			<link rel="self" href="http://acedip.in/blog/feed/"/>
			<id>http://acedip.in/blog/feed/</id>
			<updated>2010-06-12T09:30:05+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Setting Up Local Jaunty Repository via Apt-Mirror</title>
		<link href="http://atuljha.com/content/setting-local-jaunty-repository-apt-mirror"/>
		<id>http://atuljha.com/67 at http://atuljha.com</id>
		<updated>2010-03-30T20:12:49+00:00</updated>
		<content type="html">&lt;p&gt;The article mentions the method to deploy APT-MIRROR so that you can use a local repository in your intranet insted going to internet againa nd again.&lt;/p&gt;
&lt;p&gt;I will you the local repository IP to 192.100.100.40&lt;/p&gt;
&lt;p&gt;Packages required:--&amp;nbsp;&lt;/p&gt;
&lt;p&gt;1.Apt-Mirror&lt;/p&gt;
&lt;p&gt;2.Apache Webserver (to distribute to whole intranet)&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Steps :---&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;1.Setting up the apt-mirror&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;$sudo apt-get install apt-mirror&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;$sudo nano &amp;nbsp;/etc/apt/apt-mirror (the configuration file of apt-cache)&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://atuljha.com/content/setting-local-jaunty-repository-apt-mirror&quot; target=&quot;_blank&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</content>
		<author>
			<name>Atul Jha (koolhead17)</name>
			<uri>http://atuljha.com</uri>
		</author>
		<source>
			<title type="html">koolhead17 == atul jha</title>
			<subtitle type="html">&lt;i&gt; &lt;h1&gt;Change is good, So am working on it.&lt;/h1&gt;&lt;br /&gt; All new homepage will be coming up in few days.&lt;/i&gt;&lt;br /&gt;I am a e-mail away &lt;b&gt;koolhead17@gmail.com &lt;/b&gt; incase of something urgent/interesting. :D&lt;/i&gt;&lt;br /&gt;&lt;br /&gt; I will be not be availabe on my e-mail or my mobile from apr 28 to may 15. I can reply to your mails and calls only when am back on the mainland :D</subtitle>
			<link rel="self" href="http://atuljha.com/rss.xml"/>
			<id>http://atuljha.com/rss.xml</id>
			<updated>2010-04-19T13:05:02+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">ragsagar</title>
		<link href="http://ragsagar.wordpress.com/2010/03/28/a-rhythmbox-plugin-that-sets-the-song-title-as-status-message-in-pidgin/"/>
		<id>http://ragsagar.wordpress.com/?p=156</id>
		<updated>2010-03-28T04:02:59+00:00</updated>
		<content type="html">&lt;p&gt;Atlast i came up with a real rhythmbox plugin for setting the status message in pidgin as the current song title playing in Rhythmbox music player .I wrote it a few month before and was using it. Thought of sharing it before but didnt get time. Actually i forgot about my blog when i started microblogging. From now onwards i will be updating this blog regularly.( this is what i wanted to do always &lt;img src=&quot;http://s.wordpress.com/wp-includes/images/smilies/icon_biggrin.gif&quot; alt=&quot;:-D&quot; class=&quot;wp-smiley&quot; /&gt;  )&lt;/p&gt;
&lt;p&gt;Download the plugin from here : http://ragsagar.freehostia.com/rb-nowplaying.tar.gz&lt;br /&gt;
To install it.&lt;br /&gt;
1) Extract the tarball.&lt;br /&gt;
2) Copy it to ~/.gnome2/rhythmbox/plugins/  (if no such directories exists, create them)&lt;br /&gt;
3) Open rhythmbox. Edit -&amp;gt; Plugins&lt;br /&gt;
4) Check &amp;#8216;Now Playing Pidgin&amp;#8217;&lt;/p&gt;
&lt;p&gt;That&amp;#8217;s it. If you are facing any problems do comment.&lt;/p&gt;
&lt;br /&gt;  &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gocomments/ragsagar.wordpress.com/156/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/comments/ragsagar.wordpress.com/156/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godelicious/ragsagar.wordpress.com/156/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/delicious/ragsagar.wordpress.com/156/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gostumble/ragsagar.wordpress.com/156/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/stumble/ragsagar.wordpress.com/156/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godigg/ragsagar.wordpress.com/156/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/digg/ragsagar.wordpress.com/156/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/goreddit/ragsagar.wordpress.com/156/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/reddit/ragsagar.wordpress.com/156/&quot; /&gt;&lt;/a&gt; &lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://stats.wordpress.com/b.gif?host=ragsagar.wordpress.com&amp;amp;blog=4629970&amp;amp;post=156&amp;amp;subd=ragsagar&amp;amp;ref=&amp;amp;feed=1&quot; /&gt;</content>
		<author>
			<name>Rag Sagar (ragsagar)</name>
			<uri>http://ragsagar.wordpress.com</uri>
		</author>
		<source>
			<title type="html">r4g54g4r's h4ckl0g</title>
			<subtitle type="html">an0th3r h4ck3r's w3blog</subtitle>
			<link rel="self" href="http://ragsagar.wordpress.com/feed/"/>
			<id>http://ragsagar.wordpress.com/feed/</id>
			<updated>2010-05-03T22:05:04+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Long way to go…</title>
		<link href="http://kapilacharya.com/2010/03/long-way-to-go/"/>
		<id>http://kapilacharya.com/?p=30</id>
		<updated>2010-03-21T09:38:24+00:00</updated>
		<content type="html">&lt;p&gt;Sitting in front of a PC&lt;br /&gt;
Three hours of trauma&lt;br /&gt;
Pressing keys on a keyboard&lt;br /&gt;
Staring at a monitor&lt;/p&gt;
&lt;p&gt;My eyes going sore&lt;br /&gt;
My brain going drowsy&lt;br /&gt;
My limbs going numb&lt;br /&gt;
My senses going blurry&lt;/p&gt;
&lt;p&gt;But I got a lab to attend&lt;br /&gt;
And preserve energy for another lecture&lt;br /&gt;
To stay alive&lt;br /&gt;
Amidst all that pressure&lt;/p&gt;
&lt;p&gt;Imagine four years of such a life&lt;br /&gt;
Living it out each day&lt;br /&gt;
I take a break from it&lt;br /&gt;
Just enough to pray&lt;/p&gt;
&lt;p&gt;But they say its just a start&lt;br /&gt;
Brace yourself for the next part&lt;br /&gt;
But they do give hope and say&lt;br /&gt;
You proceed to heaven once you graduate from this hell&lt;/p&gt;
&lt;p&gt;And this is something I&amp;#8217;ve heard&lt;br /&gt;
A gazzillion times&lt;br /&gt;
Every day of school&lt;br /&gt;
Every day of college&lt;/p&gt;
&lt;p&gt;Still I believe it every time I hear it&lt;br /&gt;
&amp;#8216;Coz I know one thing for sure&lt;br /&gt;
God has kept me alive so far&lt;br /&gt;
So there&amp;#8217;s a long way to go.&lt;/p&gt;</content>
		<author>
			<name>Kapil Acharya (kapzi)</name>
			<uri>http://kapilacharya.com</uri>
		</author>
		<source>
			<title type="html">A circle has no beginning</title>
			<subtitle type="html">Kapzi's Personal Blog</subtitle>
			<link rel="self" href="http://kapilacharya.com/feed/"/>
			<id>http://kapilacharya.com/feed/</id>
			<updated>2010-07-21T17:05:05+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Setting Up Postfix On Ubuntu</title>
		<link href="http://atuljha.com/content/setting-postfix-ubuntu"/>
		<id>http://atuljha.com/66 at http://atuljha.com</id>
		<updated>2010-03-04T21:07:17+00:00</updated>
		<content type="html">&lt;p&gt;&amp;nbsp;Requirement :-&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;1.A dedicated IP&amp;nbsp;&lt;/p&gt;
&lt;p&gt;2.A domain name with A record pointing to the IP/server.&lt;/p&gt;
&lt;p&gt;3.Domain Panel control for adding MX record.&lt;/p&gt;
&lt;p&gt;In my case my domain name is xyz.com and my hostname is xyz.net.in&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Installing Postfix&lt;/p&gt;
&lt;p&gt;&amp;nbsp;$sudo apt-get install postfix&lt;/p&gt;
&lt;p&gt;Installing Mailx, client to read/send incoming outgoing mails.&lt;/p&gt;
&lt;p&gt;$sudo apt-get install mailx&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Changes to make in postfix configuration file.&lt;/p&gt;
&lt;p&gt;$sudo nano /etc/postfix/main.cf&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://atuljha.com/content/setting-postfix-ubuntu&quot; target=&quot;_blank&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</content>
		<author>
			<name>Atul Jha (koolhead17)</name>
			<uri>http://atuljha.com</uri>
		</author>
		<source>
			<title type="html">koolhead17 == atul jha</title>
			<subtitle type="html">&lt;i&gt; &lt;h1&gt;Change is good, So am working on it.&lt;/h1&gt;&lt;br /&gt; All new homepage will be coming up in few days.&lt;/i&gt;&lt;br /&gt;I am a e-mail away &lt;b&gt;koolhead17@gmail.com &lt;/b&gt; incase of something urgent/interesting. :D&lt;/i&gt;&lt;br /&gt;&lt;br /&gt; I will be not be availabe on my e-mail or my mobile from apr 28 to may 15. I can reply to your mails and calls only when am back on the mainland :D</subtitle>
			<link rel="self" href="http://atuljha.com/rss.xml"/>
			<id>http://atuljha.com/rss.xml</id>
			<updated>2010-04-19T13:05:02+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">LAMP setup on Ubuntu</title>
		<link href="http://atuljha.com/content/lamp-setup-ubuntu"/>
		<id>http://atuljha.com/65 at http://atuljha.com</id>
		<updated>2010-03-03T10:12:19+00:00</updated>
		<content type="html">&lt;p&gt;Packages we will install as LAMP&amp;nbsp;Stack&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;1.apache2&lt;/p&gt;
&lt;p&gt;2.mysql-server&lt;/p&gt;
&lt;p&gt;3.php5&lt;/p&gt;
&lt;p&gt;4 .Phpmyadmin&lt;/p&gt;
&lt;p&gt;&amp;nbsp;(Installing apache2 and php5)&lt;/p&gt;
&lt;pre&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $apt-get install update&lt;br /&gt;    $apt-get install apache2 php5 libapache2-mod-php&lt;br /&gt;    $cd /var/www&lt;br /&gt;    $sudo nano testing.php&lt;br /&gt;    &amp;lt;?php phpinfo(); ?&amp;gt;&lt;br /&gt;    $firefox localhost/testing.php&lt;/p&gt;&lt;/pre&gt;&lt;p&gt;On the browser we can see all the information about the php we have installed.&lt;/p&gt;
&lt;p&gt;Installing mysql server/client both&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://atuljha.com/content/lamp-setup-ubuntu&quot; target=&quot;_blank&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</content>
		<author>
			<name>Atul Jha (koolhead17)</name>
			<uri>http://atuljha.com</uri>
		</author>
		<source>
			<title type="html">koolhead17 == atul jha</title>
			<subtitle type="html">&lt;i&gt; &lt;h1&gt;Change is good, So am working on it.&lt;/h1&gt;&lt;br /&gt; All new homepage will be coming up in few days.&lt;/i&gt;&lt;br /&gt;I am a e-mail away &lt;b&gt;koolhead17@gmail.com &lt;/b&gt; incase of something urgent/interesting. :D&lt;/i&gt;&lt;br /&gt;&lt;br /&gt; I will be not be availabe on my e-mail or my mobile from apr 28 to may 15. I can reply to your mails and calls only when am back on the mainland :D</subtitle>
			<link rel="self" href="http://atuljha.com/rss.xml"/>
			<id>http://atuljha.com/rss.xml</id>
			<updated>2010-04-19T13:05:02+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">When colours of Holi question me..</title>
		<link href="http://kapilacharya.com/2010/03/when-colors-of-holi-question-me/"/>
		<id>http://kapilacharya.com/?p=22</id>
		<updated>2010-03-01T03:38:20+00:00</updated>
		<content type="html">&lt;p&gt;I woke up one morning&lt;br /&gt;
Heard some chants outside&lt;br /&gt;
I rubbed my eyes&lt;br /&gt;
And went into the balcony&lt;/p&gt;
&lt;p&gt;There were a bunch of people&lt;br /&gt;
Throwing colours of Holi at each other&lt;br /&gt;
Smiles and laughs all around&lt;br /&gt;
As they played Holi&lt;/p&gt;
&lt;p&gt;I looked at the people&lt;br /&gt;
All covered in various colours&lt;br /&gt;
Some red, some yellow&lt;br /&gt;
Some pink, some green&lt;/p&gt;
&lt;p&gt;I went back inside with a smile&lt;br /&gt;
But with an itch within&lt;br /&gt;
But I couldn&amp;#8217;t realise&lt;br /&gt;
What that itch was about?&lt;/p&gt;
&lt;p&gt;Then I saw some colors&lt;br /&gt;
On the table&lt;br /&gt;
Placed gracefully&lt;br /&gt;
Close to each other&lt;/p&gt;
&lt;p&gt;I heard some murmuring&lt;br /&gt;
Coming from the table&lt;br /&gt;
They were giving strange looks to me&lt;br /&gt;
As they chatted with each other&lt;/p&gt;
&lt;p&gt;I went closer to them and asked&lt;br /&gt;
Why do you look at me like that?&lt;br /&gt;
They said nothing but stared at me&lt;br /&gt;
I repeated my question&lt;/p&gt;
&lt;p&gt;They said&lt;br /&gt;
You dare ask us a question?&lt;br /&gt;
First you answer us&lt;br /&gt;
Why the hell are we sitting here ?&lt;/p&gt;
&lt;p&gt;I said&lt;br /&gt;
Sorry, but I don&amp;#8217;t play Holi&lt;br /&gt;
They paused to give me a dreaded look&lt;br /&gt;
And said&lt;/p&gt;
&lt;p&gt;Is this your answer to every question?&lt;br /&gt;
Is this negation of everything,  your life?&lt;br /&gt;
Is this why never won an award?&lt;br /&gt;
Is this why you never confessed your love?&lt;/p&gt;
&lt;p&gt;I was taken aback by their questions&lt;br /&gt;
I took few moments to stabilize&lt;br /&gt;
I looked at them furiously&lt;br /&gt;
And asked&lt;/p&gt;
&lt;p&gt;What does all that has to do with you?&lt;br /&gt;
How does it matter to you?&lt;br /&gt;
That I never won an award?&lt;br /&gt;
That I never confessed my love?&lt;/p&gt;
&lt;p&gt;They all laughed at me&lt;br /&gt;
And said&lt;br /&gt;
Its because of losers like you&lt;br /&gt;
That we sit on this table doing nothing&lt;/p&gt;
&lt;p&gt;Not fulfilling our destiny&lt;br /&gt;
Not being able to touch someone&lt;br /&gt;
That you loved&lt;br /&gt;
Not being able to tell them what you feel&lt;/p&gt;
&lt;p&gt;Not being able to talk with them&lt;br /&gt;
Make them smile&lt;br /&gt;
Not being able to bring you two closer&lt;br /&gt;
The way we used to bring others&lt;/p&gt;
&lt;p&gt;Now I laughed at them and said&lt;br /&gt;
What do you know about love?&lt;br /&gt;
Why do you care what I feel?&lt;br /&gt;
How does all this matter to you?&lt;/p&gt;
&lt;p&gt;They all looked at each other&lt;br /&gt;
They answered one more time&lt;br /&gt;
This time they looked at me with a dull smile&lt;br /&gt;
There voice had a tone of compassion&lt;/p&gt;
&lt;p&gt;What do you think we colours are?&lt;br /&gt;
Its not our fault that you human beings&lt;br /&gt;
Are too naive to understand&lt;br /&gt;
That we are the feeling called &amp;#8220;love&amp;#8221;&lt;/p&gt;
&lt;p&gt;- Kapil Acharya&lt;/p&gt;</content>
		<author>
			<name>Kapil Acharya (kapzi)</name>
			<uri>http://kapilacharya.com</uri>
		</author>
		<source>
			<title type="html">A circle has no beginning</title>
			<subtitle type="html">Kapzi's Personal Blog</subtitle>
			<link rel="self" href="http://kapilacharya.com/feed/"/>
			<id>http://kapilacharya.com/feed/</id>
			<updated>2010-07-21T17:05:05+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Setting up AUCTeX Mode for Emacs in Jaunty(Ubuntu).</title>
		<link href="http://atuljha.com/content/setting-auctex-mode-emacs-jauntyubuntu"/>
		<id>http://atuljha.com/64 at http://atuljha.com</id>
		<updated>2010-02-02T17:43:54+00:00</updated>
		<content type="html">&lt;pre&gt;&lt;p&gt;&amp;nbsp;$ sudo apt-get install auctex, preview-latex-style&lt;/p&gt;&lt;/pre&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Once installed add the below mentioned part in your &amp;quot;.emacs&amp;quot; file.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;pre&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp;(load &amp;quot;auctex.el&amp;quot; nil t t)&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp;(load &amp;quot;preview-latex.el&amp;quot; nil t t)&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;/pre&gt;&lt;blockquote&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;Open emacs and try opening a .tex file from there and cheers you are done with it. &lt;img src=&quot;http://atuljha.com/modules/smileys/packs/Example/lol.png&quot; title=&quot;Laughing out loud&quot; alt=&quot;Laughing out loud&quot; class=&quot;smiley-content&quot; /&gt;&lt;/div&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://atuljha.com/content/setting-auctex-mode-emacs-jauntyubuntu&quot; target=&quot;_blank&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</content>
		<author>
			<name>Atul Jha (koolhead17)</name>
			<uri>http://atuljha.com</uri>
		</author>
		<source>
			<title type="html">koolhead17 == atul jha</title>
			<subtitle type="html">&lt;i&gt; &lt;h1&gt;Change is good, So am working on it.&lt;/h1&gt;&lt;br /&gt; All new homepage will be coming up in few days.&lt;/i&gt;&lt;br /&gt;I am a e-mail away &lt;b&gt;koolhead17@gmail.com &lt;/b&gt; incase of something urgent/interesting. :D&lt;/i&gt;&lt;br /&gt;&lt;br /&gt; I will be not be availabe on my e-mail or my mobile from apr 28 to may 15. I can reply to your mails and calls only when am back on the mainland :D</subtitle>
			<link rel="self" href="http://atuljha.com/rss.xml"/>
			<id>http://atuljha.com/rss.xml</id>
			<updated>2010-04-19T13:05:02+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">lalithsuresh</title>
		<link href="http://lalithsuresh.wordpress.com/2010/01/22/lalith-in-is-up/"/>
		<id>http://lalithsuresh.wordpress.com/?p=433</id>
		<updated>2010-01-22T13:46:37+00:00</updated>
		<content type="html">&lt;p&gt;With this, I shall be moving to &lt;a href=&quot;http://lalith.in&quot;&gt;lalith.in&lt;/a&gt;. Thanks to PDJSolutions for getting me the domain and managing the hosting! &lt;img src=&quot;http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif&quot; alt=&quot;:)&quot; class=&quot;wp-smiley&quot; /&gt; &lt;/p&gt;
&lt;br /&gt;  &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gocomments/lalithsuresh.wordpress.com/433/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/comments/lalithsuresh.wordpress.com/433/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godelicious/lalithsuresh.wordpress.com/433/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/delicious/lalithsuresh.wordpress.com/433/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gostumble/lalithsuresh.wordpress.com/433/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/stumble/lalithsuresh.wordpress.com/433/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godigg/lalithsuresh.wordpress.com/433/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/digg/lalithsuresh.wordpress.com/433/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/goreddit/lalithsuresh.wordpress.com/433/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/reddit/lalithsuresh.wordpress.com/433/&quot; /&gt;&lt;/a&gt; &lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://stats.wordpress.com/b.gif?host=lalithsuresh.wordpress.com&amp;amp;blog=4169371&amp;amp;post=433&amp;amp;subd=lalithsuresh&amp;amp;ref=&amp;amp;feed=1&quot; /&gt;</content>
		<author>
			<name>Lalith Suresh (nightstrike_)</name>
			<uri>http://lalithsuresh.wordpress.com</uri>
		</author>
		<source>
			<title type="html">LOL, ROTFL, WTF and my life</title>
			<subtitle type="html">Venture into my work, my thoughts and my world...</subtitle>
			<link rel="self" href="http://lalithsuresh.wordpress.com/feed/"/>
			<id>http://lalithsuresh.wordpress.com/feed/</id>
			<updated>2010-05-03T21:45:03+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">lalithsuresh</title>
		<link href="http://lalithsuresh.wordpress.com/2010/01/22/farewell/"/>
		<id>http://lalithsuresh.wordpress.com/?p=431</id>
		<updated>2010-01-22T03:45:26+00:00</updated>
		<content type="html">&lt;p&gt;I always feared this day would come, and it finally has. So with a heavy heart, I bid &lt;a href=&quot;http://blogs.sun.com/jag/entry/so_long_old_friend&quot;&gt;farewell to Sun Microsystems&lt;/a&gt;. Thanks to all those of you who made my one and a half years at Sun a wonderful experience. To wrap it up, all I&amp;#8217;ve got to say is, &amp;#8220;until we meet again!&amp;#8221;&lt;/p&gt;
&lt;br /&gt;  &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gocomments/lalithsuresh.wordpress.com/431/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/comments/lalithsuresh.wordpress.com/431/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godelicious/lalithsuresh.wordpress.com/431/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/delicious/lalithsuresh.wordpress.com/431/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gostumble/lalithsuresh.wordpress.com/431/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/stumble/lalithsuresh.wordpress.com/431/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godigg/lalithsuresh.wordpress.com/431/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/digg/lalithsuresh.wordpress.com/431/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/goreddit/lalithsuresh.wordpress.com/431/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/reddit/lalithsuresh.wordpress.com/431/&quot; /&gt;&lt;/a&gt; &lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://stats.wordpress.com/b.gif?host=lalithsuresh.wordpress.com&amp;amp;blog=4169371&amp;amp;post=431&amp;amp;subd=lalithsuresh&amp;amp;ref=&amp;amp;feed=1&quot; /&gt;</content>
		<author>
			<name>Lalith Suresh (nightstrike_)</name>
			<uri>http://lalithsuresh.wordpress.com</uri>
		</author>
		<source>
			<title type="html">LOL, ROTFL, WTF and my life</title>
			<subtitle type="html">Venture into my work, my thoughts and my world...</subtitle>
			<link rel="self" href="http://lalithsuresh.wordpress.com/feed/"/>
			<id>http://lalithsuresh.wordpress.com/feed/</id>
			<updated>2010-05-03T21:45:03+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Today I set you free…</title>
		<link href="http://kapilacharya.com/2010/01/today-i-set-you-free/"/>
		<id>http://kapilacharya.com/?p=20</id>
		<updated>2010-01-06T16:59:36+00:00</updated>
		<content type="html">&lt;p&gt;You are a bird&lt;br /&gt;
In the bounds of emotions&lt;br /&gt;
In the bounds of friendship&lt;br /&gt;
In the bounds of pain&lt;br /&gt;
In the bounds of love&lt;/p&gt;
&lt;p&gt;Today I set you free&lt;br /&gt;
Free of all bounds&lt;br /&gt;
Go out in the open sky&lt;br /&gt;
Fly free&lt;br /&gt;
Chirp like you never did&lt;/p&gt;
&lt;p&gt;And one day&lt;br /&gt;
If&lt;br /&gt;
You ever return to me&lt;br /&gt;
There will be no cage&lt;br /&gt;
That once was&lt;/p&gt;
&lt;p&gt;But just a smile&lt;br /&gt;
A set of lips to kiss your forehead&lt;br /&gt;
A set of arms to embrace you&lt;br /&gt;
A set of moist eyes&lt;br /&gt;
With old moments flowing out in form of tiny beads&lt;br /&gt;
A set of thirsty ears&lt;br /&gt;
Waiting for you to twitter.&lt;/p&gt;
&lt;p&gt;- Kapil Acharya&lt;/p&gt;</content>
		<author>
			<name>Kapil Acharya (kapzi)</name>
			<uri>http://kapilacharya.com</uri>
		</author>
		<source>
			<title type="html">A circle has no beginning</title>
			<subtitle type="html">Kapzi's Personal Blog</subtitle>
			<link rel="self" href="http://kapilacharya.com/feed/"/>
			<id>http://kapilacharya.com/feed/</id>
			<updated>2010-07-21T17:05:05+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">lalithsuresh</title>
		<link href="http://lalithsuresh.wordpress.com/2010/01/03/a-long-vacation-2010-and-solitaire/"/>
		<id>http://lalithsuresh.wordpress.com/?p=422</id>
		<updated>2010-01-03T08:35:52+00:00</updated>
		<content type="html">&lt;p&gt;My first post of the year! So here I am, whiling away the last day of my winter vacation at home. December &amp;#8217;09 has been rather fruitful, I learnt a lot about NS-3 and even became a contributor to the project. I also managed to make a good deal of progress with my work on Security Issues in Mobile Ad hoc Networks. &lt;img src=&quot;http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif&quot; alt=&quot;:)&quot; class=&quot;wp-smiley&quot; /&gt; &lt;/p&gt;
&lt;p&gt;Anyhow, the only problem with working from (my) home is the dial-up connection I&amp;#8217;m stuck with. My laptop doesn&amp;#8217;t even have a dial-up modem and hence, I&amp;#8217;m forced to use my trusty (maybe not) 8 year old Windows box, which has housed and nurtured generations of malware. There&amp;#8217;s this weird one that forces a click on a particular section of the screen, another one that blocks keyboard input for a while (and surely records/sends it somewhere) before allowing me to continue, and a million others. This system won&amp;#8217;t even boot from a USB which ruined my efforts to install Linux on it. And yes, I&amp;#8217;m too lazy to go out of home and buy a blank CD/DVD. Anyhow, the dial-up is so slow, I always have a Solitaire window open to keep my fingers busy while my browser struggles to load pages over the connection that gives me blazing speeds of around 1KB/sec. This obviously implies that I&amp;#8217;ve played Solitaire a LOT over the month, and this allowed me to make a few observations about it in the progress. Here goes:&lt;/p&gt;
&lt;p&gt;1) No matter how many times you hit F2 (New Deal) under a second, the deal won&amp;#8217;t change and you&amp;#8217;ll end up with the same decks of cards. This kind of implies that their new deal function (which would be using a randomise function) is using the current system time for a seed value.&lt;/p&gt;
&lt;p&gt;2) This observation was made possible thanks to all the malware who&amp;#8217;ve worked persistently to slow down my system. Upon opening a new card from the deck on the top left (after there&amp;#8217;s another card already open on the same deck), and then hitting undo, you can see (only on my machine of course, because mine&amp;#8217;s the only slow system on the planet) the entire set of cards upto the previous one flashing by, one after the other. So my guess is, all decks are being maintained as linked lists with a pointer to the card on top and the one just before it. When you opt to undo your action, the entire linked list is traversed (and shown on screen) upto the previous one with the help of the &amp;#8216;previous-card&amp;#8217; pointer. Guess they took advantage of processor speeds to hide it from the user under normal circumstances. &lt;img src=&quot;http://s.wordpress.com/wp-includes/images/smilies/icon_razz.gif&quot; alt=&quot;:P&quot; class=&quot;wp-smiley&quot; /&gt; &lt;/p&gt;
&lt;p&gt;I might be wrong (my guesses usually suck), so feel free to correct me. And do let me know if you&amp;#8217;ve made any observations as well. &lt;img src=&quot;http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif&quot; alt=&quot;:)&quot; class=&quot;wp-smiley&quot; /&gt; &lt;/p&gt;
&lt;p&gt;Happy New Year and uhm&amp;#8230; Happy Solitairing. &lt;img src=&quot;http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif&quot; alt=&quot;:)&quot; class=&quot;wp-smiley&quot; /&gt; &lt;/p&gt;
&lt;br /&gt;  &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gocomments/lalithsuresh.wordpress.com/422/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/comments/lalithsuresh.wordpress.com/422/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godelicious/lalithsuresh.wordpress.com/422/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/delicious/lalithsuresh.wordpress.com/422/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gostumble/lalithsuresh.wordpress.com/422/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/stumble/lalithsuresh.wordpress.com/422/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godigg/lalithsuresh.wordpress.com/422/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/digg/lalithsuresh.wordpress.com/422/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/goreddit/lalithsuresh.wordpress.com/422/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/reddit/lalithsuresh.wordpress.com/422/&quot; /&gt;&lt;/a&gt; &lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://stats.wordpress.com/b.gif?host=lalithsuresh.wordpress.com&amp;amp;blog=4169371&amp;amp;post=422&amp;amp;subd=lalithsuresh&amp;amp;ref=&amp;amp;feed=1&quot; /&gt;</content>
		<author>
			<name>Lalith Suresh (nightstrike_)</name>
			<uri>http://lalithsuresh.wordpress.com</uri>
		</author>
		<source>
			<title type="html">LOL, ROTFL, WTF and my life</title>
			<subtitle type="html">Venture into my work, my thoughts and my world...</subtitle>
			<link rel="self" href="http://lalithsuresh.wordpress.com/feed/"/>
			<id>http://lalithsuresh.wordpress.com/feed/</id>
			<updated>2010-05-03T21:45:03+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Christmas,Ride and Vendor Quotations</title>
		<link href="http://atuljha.com/content/christmasride-and-vendor-quotations"/>
		<id>http://atuljha.com/61 at http://atuljha.com</id>
		<updated>2009-12-24T18:40:55+00:00</updated>
		<content type="html">&lt;p&gt;To start with i will vent all my anger on the fscking harware vendors.Screw yourself arseholes&lt;img src=&quot;http://atuljha.com/sites/all/modules/fckeditor/fckeditor/editor/images/smiley/msn/devil_smile.gif&quot; alt=&quot;&quot; /&gt; and one more&lt;img src=&quot;http://atuljha.com/sites/all/modules/fckeditor/fckeditor/editor/images/smiley/msn/angry_smile.gif&quot; alt=&quot;&quot; /&gt;.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://atuljha.com/content/christmasride-and-vendor-quotations&quot; target=&quot;_blank&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</content>
		<author>
			<name>Atul Jha (koolhead17)</name>
			<uri>http://atuljha.com</uri>
		</author>
		<source>
			<title type="html">koolhead17 == atul jha</title>
			<subtitle type="html">&lt;i&gt; &lt;h1&gt;Change is good, So am working on it.&lt;/h1&gt;&lt;br /&gt; All new homepage will be coming up in few days.&lt;/i&gt;&lt;br /&gt;I am a e-mail away &lt;b&gt;koolhead17@gmail.com &lt;/b&gt; incase of something urgent/interesting. :D&lt;/i&gt;&lt;br /&gt;&lt;br /&gt; I will be not be availabe on my e-mail or my mobile from apr 28 to may 15. I can reply to your mails and calls only when am back on the mainland :D</subtitle>
			<link rel="self" href="http://atuljha.com/rss.xml"/>
			<id>http://atuljha.com/rss.xml</id>
			<updated>2010-04-19T13:05:02+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">The great indian arranged marriage!! part 1</title>
		<link href="http://acedip.in/blog/the-great-indian-arranged-marriage-part-1/"/>
		<id>http://acedip.in/blog/?p=146</id>
		<updated>2009-12-24T14:05:03+00:00</updated>
		<content type="html">&lt;p&gt;Well I&amp;#8217;m going a bit over board in calling it the great indian marriage, first of all, I&amp;#8217;m calling it a marriage because it will take some time to become a wedding yet. Anyway, it brings me to the real question, what is marriage? There was no concept of marriage in biblical times and certainly not until some thousand years back, The oldest marriage mentions could be dated to the mesopotamian civilization, which was by far, way too different in practice than what it is today. In my opinion it originated as a legal way to mate and have children and eventually to lead your family (because the concept of generations came later), gather food, protection and all the basic things one need everyday to live your life, Thats it, nothing dramatic about two persons bonding or falling in love so much that they dance around in the rain and finally mate under a shed, water dripping through their bodies, that sounds very apt for a typical tollywood movie (I&amp;#8217;d have said bollywood but bollywood seemed to have grown out of that generation to a more serious cinema these days ). So the kind of married life we have would make no sense at all to someone travelling through time machine from 4000 yrs back, he&amp;#8217;d probably die laughing at us that how we have managed to turn such a simple thing into something so complex, infact that would be his comments on our whole society structure which again makes no sense at all. He would probably go back and tell his friends about what he saw and they&amp;#8217;ll all have a nice laugh about it and probably even their so called wives would have a laugh too and eventually the whole some god forsaken town in the middle of no where would be laughing at us. Well this is where our society have come to, you marry, have fun for a little while, have kids, then fight a lot and die while still passing sarcastic remarks over one&amp;#8217;s eating habits, how cant they control there bodily fluids and gases anymore..blah blah and more blah.&lt;/p&gt;
&lt;p&gt;Well all said and done, but how does the marriage today happen, well, this is how its done in a conservative rajasthani rajput family. No matter what all female activists might say about women right and how women have come a long way today and yet again proved their mental to be more than just produce and make home, but still today a daughter&amp;#8217;s father starts worrying about his daughter&amp;#8217;s prospects for getting married, no matter how well she might be doing professionally or what her ambitions and aspirations be, she &amp;#8220;must&amp;#8221; marry early and to a good, successful and rich boy (best if he&amp;#8217;s the only son to his parents, and even better if either of his parents are dead, because then that would give much more freedom to their daughter after marriage, no matter how much all these facts bite one, but this is what happens in this hypocritical world). So now the next step, girl&amp;#8217;s 6&amp;#8243;X4&amp;#8243; picture along with her biodata (resume for being considered apt for your son) is sent to a boy&amp;#8217;s family with whom they have had a little chat and said that they are interested in their son and would like them to consider their girl for him. At times this does not so happen directly but through a no. of crisscrossed relatives in between who are commonly known to both parties interested in the deal we are talking about. So now the picture makes round to a lot many households, and through strict scrutiny of half aged,married women and older women too, its like an xray from which nothing can be hidden, no matter how hard has the photographer had tried the lights, the makeup, or a subtle smile, nothing can be hidden from these relentless women whose opinion is invaluable in making or breaking it. After some time now, the so called picture finally reaches its destination and goes into the hands our precious big boy. The boy may not have a good look at it and phone calls start pouring in from all the relatives who saw the picture first and want to know what does he think, and one can imagine what might go through his mind looking at all this, I&amp;#8217;m sure he&amp;#8217;d be screaming out. &amp;#8220;people!! gimme a break, stfu.lemme think&amp;#8221; and anyways even if he did that, I&amp;#8217;m also pretty sure some aunt would shut him up and prolly declare that he&amp;#8217;s agreed to it and the he&amp;#8217;s getting married on the next auspicious date declared by the pandit (now thats an another story whole together, how pundits make business in india and how the brahmins manipulated the people for their own interest, well lets not get too political here and leave it for some other occasion).&lt;/p&gt;
&lt;p&gt;So lets say for here that the boy has totally agreed to the marriage but the girl&amp;#8217;s family wants to  meet the boy. So now this is one of those when people like me should be locked up in rooms and not let near to the room where the meeting might be taking place, because its not one of those rooms where you would like to be, the atmosphere is funnier than watching jerry seinfeld doing a live act and what makes it difficult is holding your self from laughing at such stupid remarks and conversation.&lt;/p&gt;
&lt;p&gt;A shreek brought me back to the world and to eventually to the room where I was sitting, it turned out that the shreek came out from the very smiley mouth of very lovely and happy mother of the girl, and she was laughing at a joke (which I dint find remotely funny) made by the sister of the boy and if all goes well, would be sister in-law of the girl and mind you, girl is not even present here, infact, she&amp;#8217;s may not even know that her parents are here and is working hard at some multi-national corporate company in one of the biggest cities in india. Well also it becomes very confusing for my little head to concentrate on any the conversations going around here,and  if this is to happen at a G-8 meeting or a press conference, I&amp;#8217;m sure no matter how many journalists might be present there it will be utterly difficult for all of them to even listen to any of it, forget me being a part of this fool&amp;#8217;s paradise. But I get a relief we I look at the boy&amp;#8217;s face, no expression ever made in english language can express what he might be going through. Men in the room are asking him to listen to what they are talking and so do the women, but it all falls apart when any one of them asks his opinion on the matter, and we all drop to a dead silence and now his phone rings, and jolly good if he has the music from the &amp;#8220;kill bill&amp;#8221; and that too the &amp;#8220;hohhu hohhu&amp;#8221;, &amp;#8216;twisted nerve&amp;#8217; song and he smiles and leaves for a while, and since the conversation was brought to a halt, we need a fresh fire to start it again, so I give the fresh fire by asking the father of the girl about the economic integrity of the country and he sprung back again. Out of the talking about probably everything the world has and also girl&amp;#8217;s mother bragging about how wonderful and good their daughter is, she is so intelligent, how she doesnt like to watch movies (and i said &amp;#8220;wot&amp;#8221;) and how we sent her to an all girl&amp;#8217;s school and how she is not interested in men (and i held back my breath).&lt;/p&gt;
&lt;p&gt;The most important part of the whole get-together is the exchanging of all the common family contacts and people both of them know. One would ask do you know this guy and the other would say &amp;#8220;oh, yes i do&amp;#8221; and then go about in length how good he&amp;#8217;s done for himself and how much he has earned to much in such a short while and that he got married to recently and how they also know the family to which he has married and then the point of discussion would shift to that family and by the end of an hour or two they would probably cover half the rajput community and come back to the world we are sitting in. The strange part of all this is that how women in the room get drawn to the same discussion and join men and everyone is talking about the same. Someone who has not even spoken even once all this time even jumps into it, the only ones who are watching and not talking and looking at each other&amp;#8217;s faces are me and the boy. In all this hoopla hoo, I get lost again in my thoughts only to remind me back of my presence by some loud laugh or cracking of snack bowls. And thank goodness the meeting is coming to an end, what marks the end of the big social mind boggling heart pounding meet is the silent which lasts for a little longer than usual is the end of it.&lt;/p&gt;
&lt;p&gt;Note:- I do not intend to offend anyone, the events described maybe a little exaggerated.&lt;/p&gt;</content>
		<author>
			<name>Anirudh Singh Shekhawat (Acedip)</name>
			<uri>http://acedip.in/blog</uri>
		</author>
		<source>
			<title type="html">Acedip | Anirudh singh shekhawat</title>
			<subtitle type="html">Desultory thoughts of a wandering mind.</subtitle>
			<link rel="self" href="http://acedip.in/blog/feed/"/>
			<id>http://acedip.in/blog/feed/</id>
			<updated>2010-06-12T09:30:05+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">You’re already dead!</title>
		<link href="http://acedip.in/blog/youre-already-dead/"/>
		<id>http://acedip.in/blog/?p=143</id>
		<updated>2009-12-17T07:43:40+00:00</updated>
		<content type="html">&lt;p&gt;&amp;#8220;don&amp;#8217;t be afraid&lt;br /&gt;
it&amp;#8217;s only love&lt;br /&gt;
love is simple&lt;br /&gt;
don&amp;#8217;t be afraid&lt;br /&gt;
you&amp;#8217;re already dead&lt;br /&gt;
love is simple&amp;#8221; A very beautiful song by &lt;a href=&quot;http://www.akronfamily.com/&quot;&gt;Akron Family&lt;/a&gt; called &lt;a href=&quot;http://www.youtube.com/watch?v=7KR85gYuKwI&quot;&gt;love is simple&lt;/a&gt;. what is most beautiful about the song that it reminds of a lot of things, its like all the snapshots of those moments which I cherish or regret or sad go by in  a second. I had always wondered how will a dead person might feel, because when you are alive, you are a life form in your self, bursting with liveliness and either making people around you happy or sad by your actions. But once you are dead, how would that feel, how would you feel when you cant see the world like you did when you were alive from your own eyes, its like a real time role playing game of which you are an integrate part of. How you feel happiness, the sadness and all those things which make one happy. And once dead, there is nothing which can effect you, you cant enjoy the pleasure of a smoke in chilly windy night, you cant enjoy seeing the sun set in the horizon, and the nature around you.&lt;/p&gt;
&lt;p&gt;And I think death is easy, its more difficult to live, tough is to handle things every day, which give you so much pain that you feel this strong urge to end it, but you feel another strong will to go on with it, you somehow feel that you cant loose this battle against life. I also dont blame those people who take the easy way out and end all this, because suicide is a permanent solution to a temporary problem because you can never comprehend the pain a human being can take, there are only personal limits and the reference point. The hypocrite world says its a crime to end the life &amp;#8220;god&amp;#8221; has given you, I want to ask those people, if you care so much for that life then why do you let your actions add up to all that pain, do something to resolve the pain. And also first of all I think the right to take ones life should solely lie with that person whose life we are talking about, he has every right to do whatever he likes  himself, why do doctors fillup the consent form from the patient only, and the patient has to tell what he&amp;#8217;d like to be done with his body after he&amp;#8217;s dead, why dont we let the law-makers decide then too what should be done with the patient.&lt;/p&gt;
&lt;p&gt;Human brain is such a complex array of circuits, no other person can every know what might be going inside it. At times life takes such complex terns, you hardly believe this is happening to you, because you had never imagined yourself into this mess and now you are stuck inside it with no way to get out. you feel so helpless when there are changes in your life far beyond your control. You desperately want things to get normal but they dont, and you know that they wont, but still you want to believe that they should, because the changes which are coming are killing you inside out.  you dont want to imagine yourself waking up tomorrow and that change so visible and evident that you cant revert back, that fear of the worst hurts like anything. And you question yourself, what wrong did you do, why only you and there is no answer. But some people are so strong and I wonder how can they still be, they never let out how they feel inside. They come out with a lovely smile on their faces as if nothing is wrong, and go about talking about things which are really important for others, I think the only thing that makes them do this is their strong ideals, their strong back bone which makes them even stand up right for even the worst things. They will do anything to go by their standard, no matter how high they are and how much they might go through to swore by it but still they would do it. And this is what gives them the strength to take on the world by the stride and do what they do best, fight with it.&lt;/p&gt;
&lt;p&gt;There are so many things which can be said about the same matter and ofcourse with different view points but I guess some other time when I know exactly how these intricacies of life are taken care of. I myself finds my self from time to time tangled in such situations and behaviour of humans. But what more can one say about that, we are only human.&lt;/p&gt;</content>
		<author>
			<name>Anirudh Singh Shekhawat (Acedip)</name>
			<uri>http://acedip.in/blog</uri>
		</author>
		<source>
			<title type="html">Acedip | Anirudh singh shekhawat</title>
			<subtitle type="html">Desultory thoughts of a wandering mind.</subtitle>
			<link rel="self" href="http://acedip.in/blog/feed/"/>
			<id>http://acedip.in/blog/feed/</id>
			<updated>2010-06-12T09:30:05+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">lalithsuresh</title>
		<link href="http://lalithsuresh.wordpress.com/2009/12/13/ignorance-and-beyond/"/>
		<id>http://lalithsuresh.wordpress.com/?p=408</id>
		<updated>2009-12-13T15:04:59+00:00</updated>
		<content type="html">&lt;p&gt;I typed this entry on board a flight from Delhi to Coimbatore. I spent the first two hours of the flight fiddling with ns-3, and I&amp;#8217;m slowly getting a feel of it&amp;#8217;s code. Anyway, it&amp;#8217;s a beautiful view from aboard the plane, with a stripe of orange lissing the dark horizon of the clouds and blending into the darkness of the night. But that&amp;#8217;s not going to stop me from ranting away, so here goes. &lt;img src=&quot;http://s.wordpress.com/wp-includes/images/smilies/icon_razz.gif&quot; alt=&quot;:P&quot; class=&quot;wp-smiley&quot; /&gt; &lt;/p&gt;
&lt;p&gt;I happened to watch &amp;#8216;&lt;a href=&quot;http://www.zeitgeistmovie.com&quot;&gt;The Zeitgeist&lt;/a&gt;&amp;#8216; a few days ago and that prompted me to write this by the way. Yes, I am quite late to join the Zeitgeist bandwagon; I usually miss good releases by an entire era. Quite amazing I&amp;#8217;d say. With the kind of interest I have in religion (in spite of being an atheist), I was already familiar with most of Part I which was all centered around  religion. Religion is by far the most successful hoax ever and I wonder how it can ever solve the world&amp;#8217;s problems.  Oh wait, it&amp;#8217;s _creating_ problems. I pity the stereotype that Muslims of today have to put up with. While on the bus I&amp;#8217;d taken from Jaipur to Delhi yesterday, I happened to sit next to a middle aged man. I opened a conversation with him and we talked for a while. When I asked him his name, he replied, &amp;#8220;Ahmed&amp;#8221;, paused for a few seconds and then said, &amp;#8220;I&amp;#8217;m Muslim.&amp;#8221; I couldn&amp;#8217;t figure out how that piece of information was going to help me judge him in anyway, so I asked him if there was any specific reason why he was telling me that. To that, he replied, &amp;#8220;Because that&amp;#8217;s the way it is these days.&amp;#8221; Our conversation ended there.&lt;/p&gt;
&lt;p&gt;Ignorance kills, and it makes one vulnerable to deception. It fools people into buying products that&amp;#8217;ll never help them, into accepting beliefs that are baseless and into letting corrupt people govern them. If everyday Joe asked me to fix a problem on his computer, I could easily setup a Trojan in front of him and give him a stupid explanation to convince him that it&amp;#8217;s there for a good reason. Heck, ignorance helps the quacks and charlatans of all areas on a daily basis. Look at &lt;a href=&quot;http://attrition.org/errata/charlatan.html&quot;&gt;Ankit Fadia&lt;/a&gt; for instance. Anyone who&amp;#8217;s got as much as a grain&amp;#8217;s worth of knowledge about security knows better than to believe that Fadia has the skills required to be a &amp;#8216;security consultant&amp;#8217;. Yet, he rode the media all the way to popularity and fame, because, to your everyday noob, he&amp;#8217;s a prodigy and an &amp;#8216;ethical hacker&amp;#8217;. And regardless of whether or not you know what being a hacker is all about, please read &lt;a href=&quot;http://catb.org/~esr/faqs/hacker-howto.html&quot;&gt;this article&lt;/a&gt; by Eric S Raymond. I&amp;#8217;m pointing even those who &amp;#8216;know&amp;#8217; to that link because there are a lot of people I&amp;#8217;ve met who think they know what it means to be a hacker but are just as misinformed as the others.&lt;/p&gt;
&lt;p&gt;Need I even get started about religious rituals which are supposed to cure diseases and other problems? How about an AIDS vaccine people? Or how about you all get together and cast &amp;#8220;Heal the World Level 3&amp;#8243;? While you&amp;#8217;re at it, you could possibly follow it up with &amp;#8220;Fulfill all UN Millenium Objectives Level 100&amp;#8243; as well. If you can&amp;#8217;t it&amp;#8217;s ok, you can still help by trying out those really cool mass suicides. At least we&amp;#8217;ll end up with a better planet that way.&lt;/p&gt;
&lt;p&gt;Will the educational system ever evolve enough to overcome these brick walls? Maybe yes. Maybe not. Bah!&lt;/p&gt;
&lt;br /&gt;  &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gocomments/lalithsuresh.wordpress.com/408/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/comments/lalithsuresh.wordpress.com/408/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godelicious/lalithsuresh.wordpress.com/408/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/delicious/lalithsuresh.wordpress.com/408/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gostumble/lalithsuresh.wordpress.com/408/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/stumble/lalithsuresh.wordpress.com/408/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godigg/lalithsuresh.wordpress.com/408/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/digg/lalithsuresh.wordpress.com/408/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/goreddit/lalithsuresh.wordpress.com/408/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/reddit/lalithsuresh.wordpress.com/408/&quot; /&gt;&lt;/a&gt; &lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://stats.wordpress.com/b.gif?host=lalithsuresh.wordpress.com&amp;amp;blog=4169371&amp;amp;post=408&amp;amp;subd=lalithsuresh&amp;amp;ref=&amp;amp;feed=1&quot; /&gt;</content>
		<author>
			<name>Lalith Suresh (nightstrike_)</name>
			<uri>http://lalithsuresh.wordpress.com</uri>
		</author>
		<source>
			<title type="html">LOL, ROTFL, WTF and my life</title>
			<subtitle type="html">Venture into my work, my thoughts and my world...</subtitle>
			<link rel="self" href="http://lalithsuresh.wordpress.com/feed/"/>
			<id>http://lalithsuresh.wordpress.com/feed/</id>
			<updated>2010-05-03T21:45:03+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Jagriti</title>
		<link href="http://acedip.in/blog/jagriti/"/>
		<id>http://acedip.in/blog/?p=88</id>
		<updated>2009-12-09T05:20:41+00:00</updated>
		<content type="html">&lt;p&gt;Chill in the air, a foggy morning, dew drops sparkling on flower petals, asking for anything more from a morning would only be greed i my opinion. And that was the kind of morning when I started out from my home to awakening the mortals in my college, and the event was aptly named JAGRITI ( जाग्रति ), which means awakening in sanskrit, and that is exactly what I had intended to do.&lt;/p&gt;
&lt;p&gt;
&lt;div id=&quot;attachment_138&quot; class=&quot;wp-caption aligncenter&quot;&gt;&lt;img class=&quot;size-full wp-image-138 &quot; title=&quot;jag1-0&quot; src=&quot;http://acedip.in/blog/wp-content/uploads/2009/11/jag1-0.jpg&quot; alt=&quot;lab ready with fedora machines&quot; width=&quot;630&quot; height=&quot;472&quot; /&gt;&lt;p class=&quot;wp-caption-text&quot;&gt;lab ready with fedora machines&lt;/p&gt;&lt;/div&gt;
&lt;p&gt;And soon enough I was waiting for all lug-jaipur members to arrive and help me in the workshop, infact more than just helping me, speak at the workshop. We had intended to take the workshop for teachers but were also given the permission to take a workshop for students as well. so we have invited &lt;a href=&quot;http://www.lonetwin.com/&quot;&gt;steve&lt;/a&gt; to take teacher&amp;#8217;s workshop and &lt;a href=&quot;http://jaipandya.com/&quot;&gt;jai&lt;/a&gt;, &lt;a href=&quot;http://www.uditsharma.in&quot;&gt;udit&lt;/a&gt; and pranav to help us with students one, along with out college gang comprising of mukul, anuj and some juniors which to my surprise were very interested. And everyone seemed to have arrived at almost the right and steve started his session at the lab running over 30 fedora machines. And he soon started his session on linux basics, making them feel at home on fedora so that those teachers can in return go and do the same to their students, atleast that was is our plan, thankful to our comp science HOD he made it mandatory for all teachers to make their students work on open source technologies, which eventually brought us in.&lt;/p&gt;
&lt;div id=&quot;attachment_137&quot; class=&quot;wp-caption aligncenter&quot;&gt;&lt;img class=&quot;size-large wp-image-137 &quot; title=&quot;jag1-1&quot; src=&quot;http://acedip.in/blog/wp-content/uploads/2009/11/jag1-1-1024x768.jpg&quot; alt=&quot;jag1-1&quot; width=&quot;502&quot; height=&quot;377&quot; /&gt;&lt;p class=&quot;wp-caption-text&quot;&gt;steve talking to teachers and teaches listening intently&lt;/p&gt;&lt;/div&gt;
&lt;p&gt;So after leaving steve with teachers I went to see start the students session. And I was amazed at the seminar hall we were given, I had seen it for the first time in my college and it was awesome, with 2 screens and a seating capacity of over 300 students, and fully air conditioned, it surely felt so good to even get onto that stage and talk.&lt;/p&gt;
&lt;p&gt;So pranav started talking about a little introduction to foss and then I took a few more minutes asking for some queries and talking a little bit more about foss and in general why linux. And we soon went to jai to talk about web development. Which seemed like an interesting topic for students and they thoroughly enjoyed getting to know intricacies of web, which they were all new to.&lt;/p&gt;
&lt;p&gt;
&lt;div id=&quot;attachment_139&quot; class=&quot;wp-caption aligncenter&quot;&gt;&lt;img class=&quot;size-large wp-image-139 &quot; title=&quot;img_3049&quot; src=&quot;http://acedip.in/blog/wp-content/uploads/2009/12/img_3049-1024x682.jpg&quot; alt=&quot;A view of the students seminar&quot; width=&quot;717&quot; height=&quot;477&quot; /&gt;&lt;p class=&quot;wp-caption-text&quot;&gt;A view of the students seminar&lt;/p&gt;&lt;/div&gt;
&lt;p&gt;I could now leave the seminar hall to fellow hackers and see what is happening around and also talk to nandeep who had just arrived, and was being told the interesting things sarai is doing and there are some possibilities of sarai working with some colleges in jaipur to spread foss. After an hour of talk we moved onto the snacks, and there again, my college surprised me and swept me off my feet. Or it can be that, this is the first time I have organized/done something in my college that I came to know that my college can be a very wonderful host to its visitors. Steve had also come there on a break from his teachers workshop and the response was quite good, some of them were really interested to know what he was talking about. While we were having snacks students had already started moving out, partly because, audience always decreases after the first talk and only the interested ones are left, so its kind of good for the organisers. And udit sharma was sent to hold the crowd in place with his expected to be mesmerizing talk on drupal and advance web technologies (but it proved otherwise &lt;img src=&quot;http://acedip.in/blog/wp-includes/images/smilies/icon_biggrin.gif&quot; alt=&quot;:D&quot; class=&quot;wp-smiley&quot; /&gt;  ). Well so now we were only left with people who were interested in learning.It seemed they were so interested that some of the guys ended up on stage taking drupal setup from udit and udit soon got swamped by the crowd. So we had to step in between and take the control and move the house back in rest.&lt;/p&gt;
&lt;p&gt;&lt;img class=&quot;aligncenter size-large wp-image-140&quot; title=&quot;img_3069&quot; src=&quot;http://acedip.in/blog/wp-content/uploads/2009/12/img_3069-1024x682.jpg&quot; alt=&quot;img_3069&quot; width=&quot;717&quot; height=&quot;477&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Though we had planned for a BoF session, but it dint come out as one instead jai ended up going on stage and talking about stuff from mailing lists, IRC and we also showed them how to get there, community contribution etc etc. And more over I was amazed to see such a wonderful seminar hall in my college.&lt;/p&gt;
&lt;p&gt;The whole session was so good and interactive that all of us lost track of time and we had far exceeded our limits but the audience was still in place and wanted us to carry on, but after promising them that we will return soon with more interesting things we parted.&lt;/p&gt;
&lt;p&gt;To call it a day, we sat in college lawns to reflect on the day, Also discussed plans for the sarai workshop at MNIT on 14th and 15th, though its already done now and was a success too.&lt;/p&gt;
&lt;p&gt;So it seems like lug-jaipur is out again in the socially active world and a spree of workshops to welcome its coming back.Will soon write about the MNIT workshops and the first full-day out with lug members, doing loads of stuff. &lt;img src=&quot;http://acedip.in/blog/wp-includes/images/smilies/icon_smile.gif&quot; alt=&quot;:)&quot; class=&quot;wp-smiley&quot; /&gt; &lt;/p&gt;&lt;/p&gt;&lt;/p&gt;</content>
		<author>
			<name>Anirudh Singh Shekhawat (Acedip)</name>
			<uri>http://acedip.in/blog</uri>
		</author>
		<source>
			<title type="html">Acedip | Anirudh singh shekhawat</title>
			<subtitle type="html">Desultory thoughts of a wandering mind.</subtitle>
			<link rel="self" href="http://acedip.in/blog/feed/"/>
			<id>http://acedip.in/blog/feed/</id>
			<updated>2010-06-12T09:30:05+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Going to foss.in</title>
		<link href="http://acedip.in/blog/going-to-foss-in/"/>
		<id>http://acedip.in/blog/?p=108</id>
		<updated>2009-12-09T04:44:34+00:00</updated>
		<content type="html">&lt;p&gt;Bone chilling cold, a night full of aspirations, talk of the future to come, paths to light up, a great journey to embark on with a  group of friends,young at heart and destined to change the world around them. Well this is just a little wave of thoughts which fill your heart and&lt;br /&gt;
mind, partly because of the sense of travelling and being a vagabond overpowers your perfect little monotonous life and the other being to meet the fellow revolutionaries.&lt;br /&gt;
With all those feeling we reached jaipur station after an install fest which turned into an introductory talk on foss which jai very energetically handled and I was sitting behind and exploring the N810 which udit recently acquired to take his linux love to the masses, and trying to recover from the sleepless 36 hrs which not much later turned into 48hrs, all thanks to jai and his plan to take a train from jaipur to ajmer which apparently turned out to be very late and so waiting for it could eventually mean to miss our train from ajmer to bangalore.&lt;/p&gt;
&lt;div class=&quot;wp-caption alignnone&quot;&gt;&lt;img title=&quot;img-6&quot; src=&quot;http://acedip.in/blog/wp-content/uploads/2009/12/img-6-1024x683.jpg&quot; alt=&quot;img-6&quot; width=&quot;614&quot; height=&quot;410&quot; /&gt;&lt;p class=&quot;wp-caption-text&quot;&gt;Our seat in the bogy 57,59,61 (by jai) &lt;/p&gt;&lt;/div&gt;
&lt;p&gt;Anyways all said and done, I now write this sitting in the comforts of an AC compartment of Indian Railways and on the first day of our journey which actually takes almost 42hrs, but time losses its significance looking at the fact that we&amp;#8217;d be crossing half of the country, from western part of india to the southern, crossing four states and an opportunity to look at India more closely.&lt;/p&gt;
&lt;div class=&quot;wp-caption alignnone&quot;&gt;&lt;img title=&quot;img-1&quot; src=&quot;http://acedip.in/blog/wp-content/uploads/2009/12/img-11-1024x683.jpg&quot; alt=&quot;img-11&quot; width=&quot;717&quot; height=&quot;478&quot; /&gt;&lt;p class=&quot;wp-caption-text&quot;&gt;mirror trains by jai&lt;/p&gt;&lt;/div&gt;
&lt;p&gt;For some facts, languages in India changes every 100 KM, though the change would depend on the location but still there are sure enough noticeable changes which actually fills your heart with a sense of the unkown, going through your own country and wondering at what exactly peolpe are trying to say gives a deep sense of belonging and the urge to get to know fellow country men. From changes to lagnuage to clothing to food to even playing cards, which was the most fun part of day 1 of the 2 day train journey. We had the company of two girls and two other boys who were going to pune and on top of that they were all engineering graduates which took the toll to 7 engineers in our bogy, we became friends instatnly and were chatting and eating Indian Railways grub tog, until the moment came at round dusk that a little boy selling playing cards came around, reclusive to goods he was selling but looked like the train man, one who not only travels but live in it, anyways we bought them not knowing how would it effect our journey.&lt;/p&gt;
&lt;div class=&quot;wp-caption alignnone&quot;&gt;&lt;img title=&quot;img-2&quot; src=&quot;http://acedip.in/blog/wp-content/uploads/2009/12/img-2-1024x683.jpg&quot; alt=&quot;img-2&quot; width=&quot;717&quot; height=&quot;478&quot; /&gt;&lt;p class=&quot;wp-caption-text&quot;&gt;Remains of the day&amp;amp;night well spent by jai&lt;/p&gt;&lt;/div&gt;
&lt;p&gt;It was 1 AM, with sleep in some eyes, some still wide awake to de-board the train at their respective stops, some still trying to get a hang of the whole thing that just happened there, and some utterly happy and some sublime after being called a many great things, this was now the end of our journey together and also the end of the last game we played. The people whom we met were Ankit, Khushbo, Sunita and Viral with whom I spent a lot of time at the bogy door looking out in the open, at the cloudless skies and the moonlight night whose beauty couldn&amp;#8217;t be subdued by the noise of chaging tracks, rolling over bridges, and the gaps in the fish plates, they all seem to add to the little moment of freshness from the bogy filled of people from all walks and parts of india, where some husbands were still clueless about why on earth are they going to meet this distant relative, in whom they have no interest in meeting or some wives were disgrunteled with the train food and the washrooms and telling other women how they just missed the flight they were intended to take and how much gold she owns and blah. While sunita had to get down at valsad and the rest of our new friends were going to pune, they had 3 more hours to sleep and then a morning of office and their damn bosses waiting for them, so we slept after a day full of life. At around 4AM train arrived at pune station and it was time for our fellow travelers to get down, though there was still an important task for Viral to do before he could go home, which was to get something for me from outside the station, which we had earlier used together, and now it was pay back time becuase the train halt was 10min and he had to run and get it, and to my utter surprise, while I was asleep he came, woke me up and handed it over to me and said goodbye before I could say anything to him, he was gone, and I lay there awake for a few more minutes trying to figure what had actually happened, I met a stranger and just after a few hours he dint feel like an staranger anymore. And I slept with a smile on my face, though I could also hear some sarcasm for me and praise for viral &lt;img src=&quot;http://acedip.in/blog/wp-includes/images/smilies/icon_smile.gif&quot; alt=&quot;:)&quot; class=&quot;wp-smiley&quot; /&gt; &lt;/p&gt;
&lt;p&gt;well rest of the journey went quite smoothly and boring, since we had nothing else to do than to try out different snacks and salads which used to come our way in the train and listen to some music once in a while and sleep. But the anticipation to attend foss.in for the first time was growing.&lt;/p&gt;
&lt;p&gt;And the rest of them were clicked by me from jai&amp;#8217;s camera when he was not around and with a little help from aniket with holding my laptop (mainly in front of his face) &lt;img src=&quot;http://acedip.in/blog/wp-includes/images/smilies/icon_smile.gif&quot; alt=&quot;:)&quot; class=&quot;wp-smiley&quot; /&gt; &lt;/p&gt;
&lt;p&gt;
&lt;p&gt;&lt;img class=&quot;aligncenter size-large wp-image-124&quot; title=&quot;img-4&quot; src=&quot;http://acedip.in/blog/wp-content/uploads/2009/12/img-4-1024x683.jpg&quot; alt=&quot;img-4&quot; width=&quot;573&quot; height=&quot;382&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img class=&quot;aligncenter size-large wp-image-123&quot; title=&quot;img-5&quot; src=&quot;http://acedip.in/blog/wp-content/uploads/2009/12/img-5-1024x683.jpg&quot; alt=&quot;img-5&quot; width=&quot;717&quot; height=&quot;478&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img class=&quot;aligncenter size-large wp-image-122&quot; title=&quot;img-3&quot; src=&quot;http://acedip.in/blog/wp-content/uploads/2009/12/img-3-1024x683.jpg&quot; alt=&quot;img-3&quot; width=&quot;717&quot; height=&quot;478&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;/p&gt;</content>
		<author>
			<name>Anirudh Singh Shekhawat (Acedip)</name>
			<uri>http://acedip.in/blog</uri>
		</author>
		<source>
			<title type="html">Acedip | Anirudh singh shekhawat</title>
			<subtitle type="html">Desultory thoughts of a wandering mind.</subtitle>
			<link rel="self" href="http://acedip.in/blog/feed/"/>
			<id>http://acedip.in/blog/feed/</id>
			<updated>2010-06-12T09:30:05+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Hangover,Code and Lots of Music</title>
		<link href="http://atuljha.com/content/hangovercode-and-lots-music"/>
		<id>http://atuljha.com/58 at http://atuljha.com</id>
		<updated>2009-12-06T23:12:42+00:00</updated>
		<content type="html">&lt;p&gt;Morning World!!&lt;/p&gt;
&lt;p&gt;So many things happened last week.I&amp;nbsp;finally got a guy who can clean/wash my cloths&lt;img alt=&quot;&quot; src=&quot;http://www.atuljha.com/sites/all/modules/fckeditor/fckeditor/editor/images/smiley/msn/tounge_smile.gif&quot; /&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;My guitar is with me and now i am hunting 4 a teacher.&lt;img alt=&quot;&quot; src=&quot;http://www.atuljha.com/sites/all/modules/fckeditor/fckeditor/editor/images/smiley/msn/lightbulb.gif&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://atuljha.com/content/hangovercode-and-lots-music&quot; target=&quot;_blank&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</content>
		<author>
			<name>Atul Jha (koolhead17)</name>
			<uri>http://atuljha.com</uri>
		</author>
		<source>
			<title type="html">koolhead17 == atul jha</title>
			<subtitle type="html">&lt;i&gt; &lt;h1&gt;Change is good, So am working on it.&lt;/h1&gt;&lt;br /&gt; All new homepage will be coming up in few days.&lt;/i&gt;&lt;br /&gt;I am a e-mail away &lt;b&gt;koolhead17@gmail.com &lt;/b&gt; incase of something urgent/interesting. :D&lt;/i&gt;&lt;br /&gt;&lt;br /&gt; I will be not be availabe on my e-mail or my mobile from apr 28 to may 15. I can reply to your mails and calls only when am back on the mainland :D</subtitle>
			<link rel="self" href="http://atuljha.com/rss.xml"/>
			<id>http://atuljha.com/rss.xml</id>
			<updated>2010-04-19T13:05:02+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">lalithsuresh</title>
		<link href="http://lalithsuresh.wordpress.com/2009/12/04/gross/"/>
		<id>http://lalithsuresh.wordpress.com/?p=403</id>
		<updated>2009-12-04T04:41:05+00:00</updated>
		<content type="html">&lt;p&gt;* Disclaimer: Even though I&amp;#8217;ll try to tone things down, this article might end up disgusting most of you, to the point that you might want to turn yourself inside out in the process. Any harm caused is the reader&amp;#8217;s fault and not mine. You have been warned. *&lt;/p&gt;
&lt;p&gt;The MNIT hostels have always had a reputation for not being really clean; reasons being bad mess food, a poor maintenance cycle, and mostly, plain old sick people.&lt;/p&gt;
&lt;p&gt;So having lived here in these hostels for my fourth year running, you can say I&amp;#8217;ve been inured by the &amp;#8216;exposure&amp;#8217; gained. The most noteworthy part of these hostels involve the bathrooms themselves, the conditions of which I&amp;#8217;d like to enlighten you all with. Every trip to one of these common bathrooms is a new experience, as the occupants of these hostels are never out of ideas to churn your guts.&lt;/p&gt;
&lt;p&gt;In any case, I&amp;#8217;ll be drawing out a list of things you _don&amp;#8217;t_ want to see when you walk into one of these bathrooms. So here goes:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;A rat the size of a kitten running towards the latrine, and disappearing down the toilet.&lt;/li&gt;
&lt;li&gt;A snake disappearing down the toilet. No kidding.&lt;/li&gt;
&lt;li&gt;The bathroom drains being blocked (because someone thought he&amp;#8217;d stuff his empty can of shampoo down the hole), and the entire room being flooded with water upto ankle level. Note that the water&amp;#8217;s connected to the toilets, the bathing area, the wash basin area and the urinal section.&lt;/li&gt;
&lt;li&gt;Someone walking bare feet through the above mentioned flooded room.&lt;/li&gt;
&lt;li&gt;The toilet with a hell lot of shit left untouched. (Abides well with Murphy&amp;#8217;s law, as it happens only when you&amp;#8217;ve got to take a crap, and very badly that too).&lt;/li&gt;
&lt;li&gt;Same situation as above, but you notice two different sets of shit. (Guess why?)&lt;/li&gt;
&lt;li&gt;Plastic bottles lying around inside the toilets. This might be a little hard to figure out for people who&amp;#8217;re on the cleaner side of life, so I&amp;#8217;ll tell you. The said people use those instead of mugs (they share a bottle which they leave in the latrine itself).&lt;/li&gt;
&lt;li&gt;Now it starts getting weird: A packet of chips lying inside the toilet. Cigarette buds too.&lt;/li&gt;
&lt;li&gt;The next one usually happens the night after every exam: the wash basin clogged and filled to the brim with puke. You know. Good ol&amp;#8217; booze?&lt;/li&gt;
&lt;li&gt;A variant of the above involves puke all around the toilet and absolutely none inside it. Talk about horrible aim.&lt;/li&gt;
&lt;li&gt;A guy putting his hands down the toilet to get his key which fell through it. Just kidding. &lt;img src=&quot;http://s.wordpress.com/wp-includes/images/smilies/icon_razz.gif&quot; alt=&quot;:P&quot; class=&quot;wp-smiley&quot; /&gt; &lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Anyways, call me sick for even bothering to post this. Yeah whatever.&lt;/p&gt;
&lt;br /&gt;  &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gocomments/lalithsuresh.wordpress.com/403/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/comments/lalithsuresh.wordpress.com/403/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godelicious/lalithsuresh.wordpress.com/403/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/delicious/lalithsuresh.wordpress.com/403/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gostumble/lalithsuresh.wordpress.com/403/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/stumble/lalithsuresh.wordpress.com/403/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godigg/lalithsuresh.wordpress.com/403/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/digg/lalithsuresh.wordpress.com/403/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/goreddit/lalithsuresh.wordpress.com/403/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/reddit/lalithsuresh.wordpress.com/403/&quot; /&gt;&lt;/a&gt; &lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://stats.wordpress.com/b.gif?host=lalithsuresh.wordpress.com&amp;amp;blog=4169371&amp;amp;post=403&amp;amp;subd=lalithsuresh&amp;amp;ref=&amp;amp;feed=1&quot; /&gt;</content>
		<author>
			<name>Lalith Suresh (nightstrike_)</name>
			<uri>http://lalithsuresh.wordpress.com</uri>
		</author>
		<source>
			<title type="html">LOL, ROTFL, WTF and my life</title>
			<subtitle type="html">Venture into my work, my thoughts and my world...</subtitle>
			<link rel="self" href="http://lalithsuresh.wordpress.com/feed/"/>
			<id>http://lalithsuresh.wordpress.com/feed/</id>
			<updated>2010-05-03T21:45:03+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Screenshot</title>
		<link href="http://lalithsuresh.wordpress.com/2009/11/30/i-just-love-my-desktop/"/>
		<id>http://lalithsuresh.wordpress.com/?p=393</id>
		<updated>2009-11-30T04:54:15+00:00</updated>
		<content type="html">&lt;p&gt;I _love_ eye candy. &lt;img src=&quot;http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif&quot; alt=&quot;:)&quot; class=&quot;wp-smiley&quot; /&gt; &lt;/p&gt;
&lt;p&gt;I know a lot of people would disagree, claiming that it doesn&amp;#8217;t offer any increase in productivity for a developer and only uses up resources, but what the heck! I&amp;#8217;ve got 4 Gigs of RAM to burn, and even when I&amp;#8217;m running two OpenSolaris VMs in my Ubuntu, my Compiz doesn&amp;#8217;t chug! This in spite of the fact that I&amp;#8217;m using an Intel based shared memory graphics card. &lt;img src=&quot;http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif&quot; alt=&quot;:)&quot; class=&quot;wp-smiley&quot; /&gt; &lt;/p&gt;
&lt;p&gt;Anyhow, I recently installed Terminator which is a really slick x-term emulator that offers you a single terminal window which you can split into multiple ones (either horizontally or vertically). I&amp;#8217;m used to leaving Alt+T as my key binding to start a new terminal, but the problem is, when you set this binding from the System-&amp;gt;Preferences-&amp;gt;Keyboard Shortcuts menu, it is set to launch gnome-terminal instead of your default x-terminal-emulator. Now since I was in one of those lazy moods where I didn&amp;#8217;t feel like finding out the right config file (among the millions out there) to tweak, I decided to go for the not-so-graceful way of solving the issue:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;$: sudo mv /usr/bin/gnome-terminal /usr/bin/gnome-terminal-old&lt;/p&gt;
&lt;p&gt;$: sudo ln -s /usr/bin/terminator /usr/bin/gnome-terminal&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Done! Here&amp;#8217;s my Desktop with terminator running (that&amp;#8217;s cairo-dock on the left by the way):&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://lalithsuresh.files.wordpress.com/2009/11/screenshot1.png&quot;&gt;&lt;img class=&quot;aligncenter size-medium wp-image-395&quot; title=&quot;Screenshot&quot; src=&quot;http://lalithsuresh.files.wordpress.com/2009/11/screenshot1.png?w=300&amp;#038;h=187&quot; alt=&quot;&quot; width=&quot;300&quot; height=&quot;187&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Peace! &lt;img src=&quot;http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif&quot; alt=&quot;:)&quot; class=&quot;wp-smiley&quot; /&gt; &lt;/p&gt;
&lt;br /&gt;  &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gocomments/lalithsuresh.wordpress.com/393/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/comments/lalithsuresh.wordpress.com/393/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godelicious/lalithsuresh.wordpress.com/393/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/delicious/lalithsuresh.wordpress.com/393/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gostumble/lalithsuresh.wordpress.com/393/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/stumble/lalithsuresh.wordpress.com/393/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godigg/lalithsuresh.wordpress.com/393/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/digg/lalithsuresh.wordpress.com/393/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/goreddit/lalithsuresh.wordpress.com/393/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/reddit/lalithsuresh.wordpress.com/393/&quot; /&gt;&lt;/a&gt; &lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://stats.wordpress.com/b.gif?host=lalithsuresh.wordpress.com&amp;amp;blog=4169371&amp;amp;post=393&amp;amp;subd=lalithsuresh&amp;amp;ref=&amp;amp;feed=1&quot; /&gt;</content>
		<author>
			<name>Lalith Suresh (nightstrike_)</name>
			<uri>http://lalithsuresh.wordpress.com</uri>
		</author>
		<source>
			<title type="html">LOL, ROTFL, WTF and my life</title>
			<subtitle type="html">Venture into my work, my thoughts and my world...</subtitle>
			<link rel="self" href="http://lalithsuresh.wordpress.com/feed/"/>
			<id>http://lalithsuresh.wordpress.com/feed/</id>
			<updated>2010-05-03T21:45:03+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">ragsagar</title>
		<link href="http://ragsagar.wordpress.com/2009/11/26/linked-list-implementation-in-c/"/>
		<id>http://ragsagar.wordpress.com/?p=152</id>
		<updated>2009-11-26T13:16:09+00:00</updated>
		<content type="html">&lt;p&gt;Just thought of sharing the code i written to learn linked list implementation the day before my data structures model practical exam. &lt;/p&gt;
&lt;pre class=&quot;brush: python;&quot;&gt;
/*
 *      linkedlist.c
 *
 *      Copyright 2009 Rag Sagar.V &amp;lt;ragsagar@gmail.com&amp;gt;
 *
 *      This program is free software; you can redistribute it and/or modify
 *      it under the terms of the GNU General Public License as published by
 *      the Free Software Foundation; either version 2 of the License, or
 *      (at your option) any later version.
 *
 *      This program is distributed in the hope that it will be useful,
 *      but WITHOUT ANY WARRANTY; without even the implied warranty of
 *      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *      GNU General Public License for more details.
 *
 *      You should have received a copy of the GNU General Public License
 *      along with this program; if not, write to the Free Software
 *      Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
 *      MA 02110-1301, USA.
 */

#include &amp;lt;stdio.h&amp;gt;
#include &amp;lt;stdlib.h&amp;gt;

typedef struct list
{
	int data;
	struct list *next;
}LIST;
LIST *ptr,*temp,*start=NULL;
void insert_after(int ,int );
void remove_item(int );
void display(void);
int count=0;
int main()
{
	int item,opt,dat;
	system(&amp;quot;clear&amp;quot;);
	ptr=NULL;
	/* printf(&amp;quot;%d&amp;quot;,sizeof(LIST)); */
	do
	{
		printf(&amp;quot;\n########## MENU ##########\n&amp;quot;);
		printf(&amp;quot;1.Insert\n2.Remove\n3.Display\n4.Exit\n&amp;quot;);
		printf(&amp;quot;Enter your option : &amp;quot;);
		scanf(&amp;quot;%d&amp;quot;,&amp;amp;opt);
	 	switch(opt)
	 	{
	 		case 1:
	 		printf(&amp;quot;Enter the data to insert &amp;quot;);
	 		scanf(&amp;quot;%d&amp;quot;,&amp;amp;item);
	 		if(count==0)
	 		{
	 			ptr = (LIST *)malloc(sizeof(LIST));
	 			ptr-&amp;gt;next = NULL;
	 			ptr-&amp;gt;data = item;
	 			start = ptr;
			}
			else
			{
				printf(&amp;quot;Enter the item after which you have to insert new element : &amp;quot;);
				scanf(&amp;quot;%d&amp;quot;,&amp;amp;dat);
				insert_after(dat,item);
			}
			count++;
				break;
	 		case 2:
	 		if(count==0)
	 		{
	 			printf(&amp;quot;\nList is empty\n&amp;quot;); break;
			}
	 		printf(&amp;quot;Enter the item to remove : &amp;quot;);
	 		scanf(&amp;quot;%d&amp;quot;,&amp;amp;item);
	 		remove_item(item);
	 		count--;
	 		break;
	 		case 3:
	 		if(count==0)
	 		{
	 			printf(&amp;quot;\nList is empty\n&amp;quot;);
	 			break;
	 		}
	 		else
	 		{
	 			printf(&amp;quot;List elements are \n&amp;quot;); display();
			}
			break;
	 		case 4: break;
		}
	}while(opt!=4);
	return 0;
}
void insert_after(int data, int item)
{
	LIST *tmp;
	temp=(LIST *)malloc(sizeof(LIST));
	temp-&amp;gt;data=item;
	ptr=start;

	while(ptr!=NULL)
	{
		if(ptr-&amp;gt;data==data)
		{
			tmp=ptr-&amp;gt;next;
			ptr-&amp;gt;next=temp;
			temp-&amp;gt;next=tmp;
			break;
		}
	ptr=ptr-&amp;gt;next;
	}

}	

void remove_item(int item)
{
	ptr=start;
	if(ptr-&amp;gt;data == item)
	{
		start = ptr-&amp;gt;next;
		free(ptr);
	}
	while(ptr-&amp;gt;next!=NULL)
	{
		if((ptr-&amp;gt;next)-&amp;gt;data==item)
		{
			temp=ptr-&amp;gt;next;
			ptr-&amp;gt;next=(ptr-&amp;gt;next)-&amp;gt;next;
			free(temp);
			break;
		}
		ptr=ptr-&amp;gt;next;
	}
}

void display()
{
	ptr = start;
	while(ptr!=NULL)
	{
		printf(&amp;quot;%d -&amp;gt; &amp;quot;,ptr-&amp;gt;data);
		ptr=ptr-&amp;gt;next;
	}
}			
&lt;/pre&gt;
&lt;br /&gt;  &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gocomments/ragsagar.wordpress.com/152/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/comments/ragsagar.wordpress.com/152/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godelicious/ragsagar.wordpress.com/152/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/delicious/ragsagar.wordpress.com/152/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gostumble/ragsagar.wordpress.com/152/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/stumble/ragsagar.wordpress.com/152/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godigg/ragsagar.wordpress.com/152/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/digg/ragsagar.wordpress.com/152/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/goreddit/ragsagar.wordpress.com/152/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/reddit/ragsagar.wordpress.com/152/&quot; /&gt;&lt;/a&gt; &lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://stats.wordpress.com/b.gif?host=ragsagar.wordpress.com&amp;amp;blog=4629970&amp;amp;post=152&amp;amp;subd=ragsagar&amp;amp;ref=&amp;amp;feed=1&quot; /&gt;</content>
		<author>
			<name>Rag Sagar (ragsagar)</name>
			<uri>http://ragsagar.wordpress.com</uri>
		</author>
		<source>
			<title type="html">r4g54g4r's h4ckl0g</title>
			<subtitle type="html">an0th3r h4ck3r's w3blog</subtitle>
			<link rel="self" href="http://ragsagar.wordpress.com/feed/"/>
			<id>http://ragsagar.wordpress.com/feed/</id>
			<updated>2010-05-03T22:05:04+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">IBM and the great indian debacle</title>
		<link href="http://acedip.in/blog/ibm-tgmc-and-the-great-indian-debacle/"/>
		<id>http://acedip.in/blog/?p=98</id>
		<updated>2009-11-22T12:13:15+00:00</updated>
		<content type="html">&lt;p&gt;Everyone feared IBM in the good old days, when guys in black suits and tie would either make you go out of business or buy you off the hook. IBM guys were considered evil big brothers, who were ruthless and sung company songs. So anyways IBM seemed to have changed quite a lot in recent years and we all know its open support towards free and open source mentality, and anyways I am here to talk about what is it doing right now which actually violates that very philosophy.&lt;/p&gt;
&lt;p&gt;There is a very popular competition which IBM runs in india called &lt;a href=&quot;http://tgmc.in&quot;&gt;TGMC (The great mind challenge)&lt;/a&gt; for students. Well that is all good but the tricky part comes here. IBM only accepts projects made using its technology i.e. the tools which only IBM provides to the educational institute you are in and yes, they dont give these tools to individuals, they can only be acquired once your institute is in the program and it so happens that IBM after sending its big boys to your institute and, your college will soon will make it compulsory for everyone in the final year to make their major projects for IBM, and my college is one of them and we are stuck with making our major projects in TGMC if we want or not.&lt;/p&gt;
&lt;p&gt;The tools to be used are : Rational Rose/RSA&lt;br /&gt;
RAD/Eclipse/WSAD/ WebSphere Portal&lt;br /&gt;
WAS/WAS CE&lt;br /&gt;
DB2 Express – ‘C’ or DB2 UDB&lt;/p&gt;
&lt;p&gt;and as it seems that you cant do this project without IBM&amp;#8217;s help. But what is more important are the Terms and Conditions, what it has imposed on all student developers working on it, here is an interesting one :-&lt;/p&gt;
&lt;p&gt;&lt;span&gt; &lt;/span&gt;&lt;span dir=&quot;ltr&quot;&gt;&amp;#8220;By submitting entries, &lt;strong&gt;entrant grants IBM&lt;/strong&gt; and their agents of the program &lt;strong&gt;the right to publish, use, adapt, sell, edit and/or modify such entry in any way, in commerce and in any and all media worldwide, including but not limited to the Internet, without limitation and without compensation to the entrants.&lt;/strong&gt; Entrant also grants IBM worldwide irrevocable, nonexclusive and royalty-free right and license to use, have used, copy, reproduce, transfer, modify and/or display any information contained in their entry in whole or part and in any form without compensation.&amp;#8221; for a complete set of &lt;a href=&quot;https://tgmc.in/terms_conditions.php?id=8&quot;&gt;Terms and Conditions&lt;/a&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span dir=&quot;ltr&quot;&gt;Woah!! So that means you dont own your work, it just does not belong to you. I wonder what is this giant teaching young students on this country. And what is this policy where, on one hand its promoting open source and on the other its doing this.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span dir=&quot;ltr&quot;&gt;And this is not limited to my college alone, I know a lot many college in jaipur, rajasthan, india which have fallen for this and have made it mandatory for their students to work on it.&lt;br /&gt;
&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span dir=&quot;ltr&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/p&gt;</content>
		<author>
			<name>Anirudh Singh Shekhawat (Acedip)</name>
			<uri>http://acedip.in/blog</uri>
		</author>
		<source>
			<title type="html">Acedip | Anirudh singh shekhawat</title>
			<subtitle type="html">Desultory thoughts of a wandering mind.</subtitle>
			<link rel="self" href="http://acedip.in/blog/feed/"/>
			<id>http://acedip.in/blog/feed/</id>
			<updated>2010-06-12T09:30:05+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Bike/shillong and some sweets</title>
		<link href="http://atuljha.com/content/bikeshillong-and-some-sweets"/>
		<id>http://atuljha.com/54 at http://atuljha.com</id>
		<updated>2009-11-22T09:17:52+00:00</updated>
		<content type="html">&lt;p&gt;Well I know i been too lazy to write blog and as a result of that once in a blue moon i post things here.&lt;/p&gt;
&lt;p&gt;Neways this month been exciting so far.I&amp;nbsp;visited Shilong and Guwahati.It was great experiance meeting students/faculty and government employees.&lt;/p&gt;
&lt;p&gt;I&amp;nbsp;really liked the way they were all GO GO towards Free and Open SOurce Software.I just visited police bazaar in shillong and made trip to Cherapunji.Shillong is a heaven in all respect.I loved the place and people there excluding boiled food which am nt at all used too.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://atuljha.com/content/bikeshillong-and-some-sweets&quot; target=&quot;_blank&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</content>
		<author>
			<name>Atul Jha (koolhead17)</name>
			<uri>http://atuljha.com</uri>
		</author>
		<source>
			<title type="html">koolhead17 == atul jha</title>
			<subtitle type="html">&lt;i&gt; &lt;h1&gt;Change is good, So am working on it.&lt;/h1&gt;&lt;br /&gt; All new homepage will be coming up in few days.&lt;/i&gt;&lt;br /&gt;I am a e-mail away &lt;b&gt;koolhead17@gmail.com &lt;/b&gt; incase of something urgent/interesting. :D&lt;/i&gt;&lt;br /&gt;&lt;br /&gt; I will be not be availabe on my e-mail or my mobile from apr 28 to may 15. I can reply to your mails and calls only when am back on the mainland :D</subtitle>
			<link rel="self" href="http://atuljha.com/rss.xml"/>
			<id>http://atuljha.com/rss.xml</id>
			<updated>2010-04-19T13:05:02+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">fedora 12 and my machines</title>
		<link href="http://acedip.in/blog/fedora-12-and-my-machines/"/>
		<id>http://acedip.in/blog/?p=90</id>
		<updated>2009-11-21T16:36:29+00:00</updated>
		<content type="html">&lt;p&gt;So finally the wait is over now, and we have a brand new release of our lovely fedora. Though it took me a few days to download but it was done today morning and I had planned to upgrade my machines in the evening. One of my machines was already running fedora 11 and the other one could never actually see the face of fedora due to &lt;a href=&quot;https://bugzilla.redhat.com/show_bug.cgi?id=485618&quot;&gt;this bug&lt;/a&gt; (ATI device drivers) but has seen faces of all other linux flavors. But I had high hopes from constantine since there has been considerable work done in the field of ATI video drives.&lt;/p&gt;
&lt;p&gt;Machine one (laptop):- Well this was easy and had more chances of success as it already was running fedora 11 and had no issues at all. So I put in the fedora 12 DVD and upgraded fedora 11 to fedora 12, it was running the default i.e. gnome, but my main working installation runs kde so after gnome&amp;#8217;s upgrade I upgraded the kde one too. Though the upgrade process is quite long and time consuming but the upgrade was worth the wait.&lt;/p&gt;
&lt;p&gt;&lt;img title=&quot;IMG_1566&quot; src=&quot;http://acedip.in/blog/wp-content/uploads/2009/11/IMG_1566-1024x768.jpg&quot; alt=&quot;IMG_1566&quot; width=&quot;430&quot; height=&quot;323&quot; /&gt;&lt;/p&gt;
&lt;p&gt;The login screen is so beautiful.&lt;/p&gt;
&lt;p&gt;&lt;img title=&quot;naruka90&quot; src=&quot;http://acedip.in/blog/wp-content/uploads/2009/11/naruka901-1024x575.png&quot; alt=&quot;naruka90&quot; width=&quot;717&quot; height=&quot;403&quot; /&gt;&lt;/p&gt;
&lt;p&gt;And so is the plasma desktop, this is why I love kde, it gives you immense functionality to work.&lt;/p&gt;
&lt;p&gt;&lt;img title=&quot;digikam&quot; src=&quot;http://acedip.in/blog/wp-content/uploads/2009/11/digikam-1024x575.png&quot; alt=&quot;digikam&quot; width=&quot;717&quot; height=&quot;403&quot; /&gt;&lt;/p&gt;
&lt;p&gt;And I have found this application called &amp;#8220;digiKam&amp;#8221; which I have totally fallen in love with, those I could not install the plugin which lets you export pictures to flickr and facebook as one of the dependencies of that plugin does not even exist on the &lt;a href=&quot;http://extragear.kde.org/apps/kipi/#releases&quot;&gt;site&lt;/a&gt; , the libkexif-0.2.5.tar.bz2 does not even exist on the download link. fail!!&lt;/p&gt;
&lt;p&gt;Machine two (desktop):- Now this is a weird one, and I feel cheated because this machine which has an ATI board and everything else on the chipset by ATI was sold in the market as an intel product as a 3rd party product, but I was stupid enough to understand any of that to not to buy it, so anyways, now I&amp;#8217;m stuck with it, and thanks to closed ATI drivers I could never install fedora on it, I&amp;#8217;ve been trying fc6 but never, well finally filed a bug and after some work by some people on it, its pending, mainly because of my non-interest, but would now like ot revoke it back and hopefully fix it by f13, though, there have been some improvements and will update the bug report ASAP. So finally I couldn&amp;#8217;t install f12 on this machine.&lt;/p&gt;
&lt;p&gt;&lt;img class=&quot;aligncenter size-large wp-image-95&quot; title=&quot;IMG_1562&quot; src=&quot;http://acedip.in/blog/wp-content/uploads/2009/11/IMG_1562-1024x768.jpg&quot; alt=&quot;IMG_1562&quot; width=&quot;614&quot; height=&quot;461&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Well even after not a normal boot, I could install fedora on my desktop which is a new milestone in the bug, because I could never even run the install media properly, so this is a very joyful image. My desktop with a kernel option and my laptop being upgraded to f12.yuppy!!&lt;/p&gt;
&lt;p&gt;Well, apart from this, there is a f12 install fest lined up in my college on 25th Nov and also another one on 28th in another college in jaipur, seems like &lt;a href=&quot;http://lug.in&quot;&gt;lug-jaipur&lt;/a&gt; is up for an active week Will report on it soon.&lt;/p&gt;</content>
		<author>
			<name>Anirudh Singh Shekhawat (Acedip)</name>
			<uri>http://acedip.in/blog</uri>
		</author>
		<source>
			<title type="html">Acedip | Anirudh singh shekhawat</title>
			<subtitle type="html">Desultory thoughts of a wandering mind.</subtitle>
			<link rel="self" href="http://acedip.in/blog/feed/"/>
			<id>http://acedip.in/blog/feed/</id>
			<updated>2010-06-12T09:30:05+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">lalithsuresh</title>
		<link href="http://lalithsuresh.wordpress.com/2009/11/08/sigh/"/>
		<id>http://lalithsuresh.wordpress.com/?p=379</id>
		<updated>2009-11-08T16:29:48+00:00</updated>
		<content type="html">&lt;p&gt;I was in the process of getting transcripts issued for a senior of mine, so after getting all the necessary photocopies made, I made my way into the Dean of Student Affairs&amp;#8217; Office, which MNITians lovingly (not!) refer to as &amp;#8216;dosa&amp;#8217;. The folks in that office are well known for playing ball with you. While that would be fun under normal circumstances, it isn&amp;#8217;t quite that way when &amp;#8216;you&amp;#8217; are the ball as is the case here. No one there really has a clue of what he/she has to be doing, so if you ask one person, &amp;#8220;Sir, I want &amp;lt;insert requirement here&amp;gt;&amp;#8221;, he&amp;#8217;ll calmly point towards some chair behind some other desk. I say chair here because that&amp;#8217;s what you see; there&amp;#8217;s usually no one occupying it. I have a feeling that that&amp;#8217;s part of their plan. Leave an empty chair behind a desk and when you don&amp;#8217;t know what the student&amp;#8217;s asking you or you&amp;#8217;re not interested or simply because the sky&amp;#8217;s blue, just point towards the empty chair. That&amp;#8217;s like the &amp;#8216;default&amp;#8217; case in a select-case block. Only thing is, the actual cases are useless code, written poorly and no input will ever reach those branches of code. The game ends when the ball leaves the office in a spite of frustration, after visiting all the desks.&lt;/p&gt;
&lt;p&gt;Anyhow, I got rather lucky that day and my request got a HIT in the first try. Since I was getting eight sets of transcripts, each with nine sheets, the guy proceeds to write the following calculation for the amount I was to pay on the request letter:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;9 x 100           = 900&lt;/p&gt;
&lt;p&gt;8 x 9 = 63 * 2 = &lt;span&gt;126&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt; &lt;/strong&gt;&lt;span&gt;&lt;strong&gt;Total = 1026&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Guess I don&amp;#8217;t even need to explain this.&lt;/p&gt;
&lt;br /&gt;  &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gocomments/lalithsuresh.wordpress.com/379/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/comments/lalithsuresh.wordpress.com/379/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godelicious/lalithsuresh.wordpress.com/379/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/delicious/lalithsuresh.wordpress.com/379/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gostumble/lalithsuresh.wordpress.com/379/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/stumble/lalithsuresh.wordpress.com/379/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godigg/lalithsuresh.wordpress.com/379/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/digg/lalithsuresh.wordpress.com/379/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/goreddit/lalithsuresh.wordpress.com/379/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/reddit/lalithsuresh.wordpress.com/379/&quot; /&gt;&lt;/a&gt; &lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://stats.wordpress.com/b.gif?host=lalithsuresh.wordpress.com&amp;amp;blog=4169371&amp;amp;post=379&amp;amp;subd=lalithsuresh&amp;amp;ref=&amp;amp;feed=1&quot; /&gt;</content>
		<author>
			<name>Lalith Suresh (nightstrike_)</name>
			<uri>http://lalithsuresh.wordpress.com</uri>
		</author>
		<source>
			<title type="html">LOL, ROTFL, WTF and my life</title>
			<subtitle type="html">Venture into my work, my thoughts and my world...</subtitle>
			<link rel="self" href="http://lalithsuresh.wordpress.com/feed/"/>
			<id>http://lalithsuresh.wordpress.com/feed/</id>
			<updated>2010-05-03T21:45:03+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">beer/rum,ashish &amp;amp; old delhi !!</title>
		<link href="http://atuljha.com/content/beerrumashish-old-delhi"/>
		<id>http://atuljha.com/52 at http://atuljha.com</id>
		<updated>2009-11-06T02:04:41+00:00</updated>
		<content type="html">&lt;p&gt;&lt;img src=&quot;http://atuljha.com/sites/all/modules/fckeditor/fckeditor/editor/images/smiley/msn/wink_smile.gif&quot; alt=&quot;&quot; /&gt; Neither am dead nor is my homepage, its just i am not finding time to slap my post here.&lt;/p&gt;
&lt;p&gt;&amp;quot;hello world&amp;quot; all again on a wonderful Friday morning.i woke before all my alarm can ring today. &lt;/p&gt;
&lt;p&gt;It was nice last evening with ashish and we kept drinking for few hours and cheering Indian team to win which never happens whenever u expect them to.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://atuljha.com/content/beerrumashish-old-delhi&quot; target=&quot;_blank&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</content>
		<author>
			<name>Atul Jha (koolhead17)</name>
			<uri>http://atuljha.com</uri>
		</author>
		<source>
			<title type="html">koolhead17 == atul jha</title>
			<subtitle type="html">&lt;i&gt; &lt;h1&gt;Change is good, So am working on it.&lt;/h1&gt;&lt;br /&gt; All new homepage will be coming up in few days.&lt;/i&gt;&lt;br /&gt;I am a e-mail away &lt;b&gt;koolhead17@gmail.com &lt;/b&gt; incase of something urgent/interesting. :D&lt;/i&gt;&lt;br /&gt;&lt;br /&gt; I will be not be availabe on my e-mail or my mobile from apr 28 to may 15. I can reply to your mails and calls only when am back on the mainland :D</subtitle>
			<link rel="self" href="http://atuljha.com/rss.xml"/>
			<id>http://atuljha.com/rss.xml</id>
			<updated>2010-04-19T13:05:02+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">dscn0486 by uditsharma03.</title>
		<link href="http://lalithsuresh.wordpress.com/2009/10/30/gyan-a-foss-workshop-mnit/"/>
		<id>http://lalithsuresh.wordpress.com/?p=372</id>
		<updated>2009-10-30T18:15:19+00:00</updated>
		<content type="html">&lt;p&gt;&lt;img class=&quot;reflect aligncenter&quot; src=&quot;http://farm3.static.flickr.com/2720/4058069234_24f6d1c00a.jpg&quot; alt=&quot;dscn0486 by uditsharma03.&quot; width=&quot;266&quot; height=&quot;199&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Neuron &amp;#8217;09, a technical fest, was held between 23rd and 24th of October, 2009 in my institute and I must say, those guys managed to pull it off pretty well! A once in a blue moon situation, most of the events violated the &amp;#8216;Indian Standard Time&amp;#8217; rule by actually beginning and ending on time! When&amp;#8217;s the last time you saw that happen here? Anyways, as always, we from the MNIT Open Source User Mesh (MOSUM) decided to conduct a little FOSS workshop during the three day programme. The 24th of October was the auspicious date as per the alignment of the planets (yeah right). So just like we did with all our other workshops that happened during our tech fests, we decided to bring in speakers from outside. &lt;a href=&quot;http://lonetwin.blogspot.com/&quot;&gt;Steven Fernandez&lt;/a&gt; (who works for Druvaa, and is also a former Red Hat employee) talked about the FOSS ecosystem, how it works and how one can be a part of it. &lt;a href=&quot;http://jaipandya.com/&quot;&gt;Jai Pandya&lt;/a&gt; (JECRC, Jaipur) followed with a beginner oriented talk on WordPress and how to use it setup a website in under 5 minutes. Finally, I took over with a not-so-beginner-oriented talk on parallel programming using OpenMP (#pragma anyone?). Furthermore, the turnout of 120 was far more than any of us expected! Wonder if the city of Jaipur is really awakening. Let&amp;#8217;s just hope that we see new faces turning up for our &lt;a href=&quot;http://www.lugj.in&quot;&gt;LUG-Jaipur&lt;/a&gt; meets from here on. &lt;img src=&quot;http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif&quot; alt=&quot;:)&quot; class=&quot;wp-smiley&quot; /&gt; &lt;/p&gt;
&lt;br /&gt;  &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gocomments/lalithsuresh.wordpress.com/372/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/comments/lalithsuresh.wordpress.com/372/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godelicious/lalithsuresh.wordpress.com/372/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/delicious/lalithsuresh.wordpress.com/372/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gostumble/lalithsuresh.wordpress.com/372/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/stumble/lalithsuresh.wordpress.com/372/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godigg/lalithsuresh.wordpress.com/372/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/digg/lalithsuresh.wordpress.com/372/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/goreddit/lalithsuresh.wordpress.com/372/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/reddit/lalithsuresh.wordpress.com/372/&quot; /&gt;&lt;/a&gt; &lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://stats.wordpress.com/b.gif?host=lalithsuresh.wordpress.com&amp;amp;blog=4169371&amp;amp;post=372&amp;amp;subd=lalithsuresh&amp;amp;ref=&amp;amp;feed=1&quot; /&gt;</content>
		<author>
			<name>Lalith Suresh (nightstrike_)</name>
			<uri>http://lalithsuresh.wordpress.com</uri>
		</author>
		<source>
			<title type="html">LOL, ROTFL, WTF and my life</title>
			<subtitle type="html">Venture into my work, my thoughts and my world...</subtitle>
			<link rel="self" href="http://lalithsuresh.wordpress.com/feed/"/>
			<id>http://lalithsuresh.wordpress.com/feed/</id>
			<updated>2010-05-03T21:45:03+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Emacs,Python and some R.</title>
		<link href="http://atuljha.com/content/emacspython-and-some-r"/>
		<id>http://atuljha.com/51 at http://atuljha.com</id>
		<updated>2009-10-21T19:57:08+00:00</updated>
		<content type="html">&lt;p&gt;I&amp;nbsp;been lazy all this while&amp;nbsp; as i had viral apart from that my internet was not working for over week.&lt;/p&gt;
&lt;p&gt;Life is getting more in &amp;quot;eat,drink,code&amp;quot; &lt;img src=&quot;http://atuljha.com/sites/all/modules/fckeditor/fckeditor/editor/images/smiley/msn/tounge_smile.gif&quot; alt=&quot;&quot; /&gt;.&lt;/p&gt;
&lt;p&gt;Was extremly happy connecting to irc via emacs now i have some more cheers using it&lt;img src=&quot;http://atuljha.com/sites/all/modules/fckeditor/fckeditor/editor/images/smiley/msn/wink_smile.gif&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://atuljha.com/content/emacspython-and-some-r&quot; target=&quot;_blank&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</content>
		<author>
			<name>Atul Jha (koolhead17)</name>
			<uri>http://atuljha.com</uri>
		</author>
		<source>
			<title type="html">koolhead17 == atul jha</title>
			<subtitle type="html">&lt;i&gt; &lt;h1&gt;Change is good, So am working on it.&lt;/h1&gt;&lt;br /&gt; All new homepage will be coming up in few days.&lt;/i&gt;&lt;br /&gt;I am a e-mail away &lt;b&gt;koolhead17@gmail.com &lt;/b&gt; incase of something urgent/interesting. :D&lt;/i&gt;&lt;br /&gt;&lt;br /&gt; I will be not be availabe on my e-mail or my mobile from apr 28 to may 15. I can reply to your mails and calls only when am back on the mainland :D</subtitle>
			<link rel="self" href="http://atuljha.com/rss.xml"/>
			<id>http://atuljha.com/rss.xml</id>
			<updated>2010-04-19T13:05:02+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">lalithsuresh</title>
		<link href="http://lalithsuresh.wordpress.com/2009/10/11/in-a-daze/"/>
		<id>http://lalithsuresh.wordpress.com/?p=366</id>
		<updated>2009-10-11T11:35:23+00:00</updated>
		<content type="html">&lt;p&gt;The past one week has been quite interesting. Things that never crossed my mind, seem to have happened, and no amount of pinching myself seems to change things, which certainly proves that all this is real. In one part of the world, Barack Obama has won the Nobel Peace prize. While this seems to have generated quite a furore, the media looks like they&amp;#8217;re enjoying every bit of it. Check out these &lt;a href=&quot;http://blog.cagle.com/news/2009/10/09/live-blog-cartoonists-respond-to-obamas-nobel-prize-win/&quot;&gt;cartoons&lt;/a&gt; to get an idea of why people think he shouldn&amp;#8217;t have won the award. Mahatma Gandhi was nominated five times for the same award without winning it, yet, people like Jimmy Carter, Al Gore and Yasser Arafa found a way through. Sigh. Anyways, to all those of you who think he didn&amp;#8217;t deserve this, at least be happy that it wasn&amp;#8217;t given off to his predecessor. That thought kind of works for me. &lt;img src=&quot;http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif&quot; alt=&quot;:)&quot; class=&quot;wp-smiley&quot; /&gt; &lt;/p&gt;
&lt;p&gt;Diametrically across the planet, in a hostel room numbered 4/24, of a university named MNIT-Jaipur, something strange has happened as well. In what seems like a bizarre case of insanity, I am actually _slogging_ for a change. No, this is not another one of those mid term exams (which should be aptly renamed to something like take-a-break-from-whatever-you&amp;#8217;re-doing exams; makes more sense that way), nor does it have anything to do with assignment submissions either. Neither of those take up much of my time anyway (final year stereotype I&amp;#8217;d say). What seems to have got me bogged down, is an exam, which I&amp;#8217;m bound to write if I wish to fulfill a destiny I&amp;#8217;ve chosen for myself. I&amp;#8217;m talking about the Graduate Record Examination (GRE). By the way, this is supposed to be gee-ar-ee and not gree (which rhymes with glee). There&amp;#8217;s a reason why I&amp;#8217;ve mentioned this here, because there are people in this institute who&amp;#8217;re known to say stuff like, &amp;#8220;I&amp;#8217;m going to write gree, toofil and iltus&amp;#8221; (referring to GRE, TOEFL and IELTS), and they are _not_ trying to be funny. So if one of you guys stumble upon this, please do get it right from here on. Anyways, so here I am going through word list after word list, passage after passage and silly math problems that make you so over confident, you end up getting them wrong. Man I wouldn&amp;#8217;t wish this upon my worst enemy, or wait, maybe I would.&lt;/p&gt;
&lt;p&gt;The best part about the whole idea behind the GRE is that it isn&amp;#8217;t the sole factor that determines your admission to a foreign university. Your academic profiles and recommendations matter the most so yes, if you&amp;#8217;re one of those guys who people look at and say OMG-I-WISH-I-HAD-A-PROFILE-LIKE-HIS, then relax, an average GRE score will do as well. &lt;img src=&quot;http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif&quot; alt=&quot;:)&quot; class=&quot;wp-smiley&quot; /&gt; &lt;/p&gt;
&lt;p&gt;I&amp;#8217;ve gotten into a good deal with my conscience, and we&amp;#8217;ve both decided to give the where&amp;#8217;ll-I-be-after-I-graduate thoughts a one way ticket to /dev/null. To all you non techies, you can say those thoughts were sent to hell. &lt;img src=&quot;http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif&quot; alt=&quot;:)&quot; class=&quot;wp-smiley&quot; /&gt;   The amount of attributes that affect the answer to that question is overwhelming, all the way from the &lt;em&gt;N&lt;/em&gt; masters programmes you could apply to, to the companies you could work for and finally to the roadside shops you could open. It&amp;#8217;s options galore!  For me, the question still remains unanswered but yes, there seem to be little sprouts of options coming up, although, they&amp;#8217;re far from bearing fruit. The day it _does_, I&amp;#8217;m treating myself to a drink, maybe more. &lt;img src=&quot;http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif&quot; alt=&quot;:)&quot; class=&quot;wp-smiley&quot; /&gt; &lt;/p&gt;
&lt;p&gt;I&amp;#8217;ll be glad after this phase is over, until then, I&amp;#8217;m getting back to my word lists..&lt;em&gt;. duress, dutiful, dwindle, dynamic, dyspeptic&amp;#8230;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;Wow, I&amp;#8217;m excited already.&lt;/p&gt;
&lt;br /&gt;  &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gocomments/lalithsuresh.wordpress.com/366/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/comments/lalithsuresh.wordpress.com/366/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godelicious/lalithsuresh.wordpress.com/366/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/delicious/lalithsuresh.wordpress.com/366/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gostumble/lalithsuresh.wordpress.com/366/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/stumble/lalithsuresh.wordpress.com/366/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godigg/lalithsuresh.wordpress.com/366/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/digg/lalithsuresh.wordpress.com/366/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/goreddit/lalithsuresh.wordpress.com/366/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/reddit/lalithsuresh.wordpress.com/366/&quot; /&gt;&lt;/a&gt; &lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://stats.wordpress.com/b.gif?host=lalithsuresh.wordpress.com&amp;amp;blog=4169371&amp;amp;post=366&amp;amp;subd=lalithsuresh&amp;amp;ref=&amp;amp;feed=1&quot; /&gt;</content>
		<author>
			<name>Lalith Suresh (nightstrike_)</name>
			<uri>http://lalithsuresh.wordpress.com</uri>
		</author>
		<source>
			<title type="html">LOL, ROTFL, WTF and my life</title>
			<subtitle type="html">Venture into my work, my thoughts and my world...</subtitle>
			<link rel="self" href="http://lalithsuresh.wordpress.com/feed/"/>
			<id>http://lalithsuresh.wordpress.com/feed/</id>
			<updated>2010-05-03T21:45:03+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Installing Ushahidi_web on ubuntu.</title>
		<link href="http://atuljha.com/content/installing-ushahidiweb-ubuntu"/>
		<id>http://atuljha.com/50 at http://atuljha.com</id>
		<updated>2009-10-07T20:16:46+00:00</updated>
		<content type="html">&lt;p&gt;Well finally after some time a Tech blog.&lt;img src=&quot;http://atuljha.com/sites/all/modules/fckeditor/fckeditor/editor/images/smiley/msn/wink_smile.gif&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;UShahidi is a cool Web tool that has been deployed/used all across Africa to report crime related activities.you can find more on &lt;a href=&quot;http://www.ushahidi.com&quot; title=&quot;www.ushahidi.com&quot;&gt;www.ushahidi.com&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;So what i did is tried installing it on my ubuntu box.&lt;/p&gt;
&lt;p&gt;Some pre-requirements :--&lt;/p&gt;
&lt;p&gt;1.apache with mod_rewrite enabled&lt;/p&gt;
&lt;p&gt;2.mysql&lt;/p&gt;
&lt;p&gt;3.PHP version &amp;gt;= 5.2.3 (with below mentioned extenstions)&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://atuljha.com/content/installing-ushahidiweb-ubuntu&quot; target=&quot;_blank&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</content>
		<author>
			<name>Atul Jha (koolhead17)</name>
			<uri>http://atuljha.com</uri>
		</author>
		<source>
			<title type="html">koolhead17 == atul jha</title>
			<subtitle type="html">&lt;i&gt; &lt;h1&gt;Change is good, So am working on it.&lt;/h1&gt;&lt;br /&gt; All new homepage will be coming up in few days.&lt;/i&gt;&lt;br /&gt;I am a e-mail away &lt;b&gt;koolhead17@gmail.com &lt;/b&gt; incase of something urgent/interesting. :D&lt;/i&gt;&lt;br /&gt;&lt;br /&gt; I will be not be availabe on my e-mail or my mobile from apr 28 to may 15. I can reply to your mails and calls only when am back on the mainland :D</subtitle>
			<link rel="self" href="http://atuljha.com/rss.xml"/>
			<id>http://atuljha.com/rss.xml</id>
			<updated>2010-04-19T13:05:02+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Njoying my Ride.</title>
		<link href="http://atuljha.com/content/njoying-my-ride"/>
		<id>http://atuljha.com/49 at http://atuljha.com</id>
		<updated>2009-10-03T19:19:55+00:00</updated>
		<content type="html">&lt;p&gt;Well its been over 1 month since i been riding my simple &amp;quot;Hero City Bike&amp;quot; from office to home.I&amp;nbsp;am enjoying it.I&amp;nbsp;need to fix few things and remove its back carrier and both mudguards in order to make it little lighter.&lt;br /&gt;
I&amp;nbsp;have to admit that my love for Firefox is not over yet.I&amp;nbsp;am planning to buy Firefox next month and will keep this bike as well.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://atuljha.com/content/njoying-my-ride&quot; target=&quot;_blank&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</content>
		<author>
			<name>Atul Jha (koolhead17)</name>
			<uri>http://atuljha.com</uri>
		</author>
		<source>
			<title type="html">koolhead17 == atul jha</title>
			<subtitle type="html">&lt;i&gt; &lt;h1&gt;Change is good, So am working on it.&lt;/h1&gt;&lt;br /&gt; All new homepage will be coming up in few days.&lt;/i&gt;&lt;br /&gt;I am a e-mail away &lt;b&gt;koolhead17@gmail.com &lt;/b&gt; incase of something urgent/interesting. :D&lt;/i&gt;&lt;br /&gt;&lt;br /&gt; I will be not be availabe on my e-mail or my mobile from apr 28 to may 15. I can reply to your mails and calls only when am back on the mainland :D</subtitle>
			<link rel="self" href="http://atuljha.com/rss.xml"/>
			<id>http://atuljha.com/rss.xml</id>
			<updated>2010-04-19T13:05:02+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">infixterminal1</title>
		<link href="http://ragsagar.wordpress.com/2009/09/22/infix-to-postfix-conversion-in-python/"/>
		<id>http://ragsagar.wordpress.com/?p=141</id>
		<updated>2009-09-22T17:04:29+00:00</updated>
		<content type="html">&lt;h3&gt;&lt;strong&gt;About Infix and Postfix&lt;/strong&gt;&lt;/h3&gt;
&lt;p&gt;In an expression if the operators are placed between the operands, it is known as infix notation ( eg A+B) . On the other hand if the operators are placed after the operands then the expression is in postfix notation .( eg AB+)&lt;/p&gt;
&lt;h4&gt;&lt;strong&gt;Infix Notation                            Postfix Notation&lt;/strong&gt;&lt;/h4&gt;
&lt;p&gt;&lt;em&gt;(A-C)*B                                                   AC-B*&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;A+(B*C)                                                  ABC*+&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;(A+B)/(C-D)                                            AB+CD-/&lt;/em&gt;&lt;/p&gt;
&lt;h3&gt;&lt;strong&gt;Code&lt;/strong&gt;&lt;/h3&gt;
&lt;pre class=&quot;brush: python;&quot;&gt;
#!/usr/bin/python
#http://ragsagar.wordpress.com

postfix = []
temp = []
operator = -10
operand = -20
leftparentheses = -30
rightparentheses = -40
empty = -50

def precedence(s):
	if s is '(':
		return 0
	elif s is '+' or '-':
		return 1
	elif s is '*' or '/' or '%':
		return 2
	else:
		return 99 

def typeof(s):
	if s is '(':
		return leftparentheses
	elif s is ')':
		return rightparentheses
	elif s is '+' or s is '-' or s is '*' or s is '%' or s is '/':
		return operator
	elif s is ' ':
		return empty
	else :
		return operand							

infix = raw_input(&amp;quot;Enter the infix notation : &amp;quot;)
for i in infix :
	type = typeof(i)
	if type is leftparentheses :
		temp.append(i)
	elif type is rightparentheses :
		next = temp.pop()
		while next is not '(':
			postfix.append(next)
			next = temp.pop()
	elif type is operand:
		postfix.append(i)
	elif type is operator:
		p = precedence(i)
		while len(temp) is not 0 and p &amp;lt;= precedence(temp[-1]) :
			postfix.append(temp.pop())
		temp.append(i)
	elif type is empty:
		continue 

while len(temp) &amp;gt; 0 :
	postfix.append(temp.pop())

print &amp;quot;It's postfix notation is &amp;quot;,''.join(postfix)		
&lt;/pre&gt;
&lt;h3&gt;&lt;strong&gt;Code Explanation&lt;/strong&gt;&lt;/h3&gt;
&lt;p&gt;Above code converts infix notation in variable &lt;strong&gt;infix&lt;/strong&gt; into postfix notation and stores in &lt;strong&gt;postfix&lt;/strong&gt; list. This algorithm makes use of list &lt;strong&gt;temp &lt;/strong&gt;to hold operators and left parantheses in the infix notation. The &lt;strong&gt;postfix&lt;/strong&gt; list will be constructed from left to right using operands from &lt;strong&gt;infix&lt;/strong&gt; and operators which are removed from &lt;strong&gt;temp&lt;/strong&gt;.&lt;/p&gt;
&lt;div id=&quot;attachment_149&quot; class=&quot;wp-caption alignnone&quot;&gt;&lt;a href=&quot;http://ragsagar.files.wordpress.com/2009/09/infixterminal1.png&quot;&gt;&lt;img src=&quot;http://ragsagar.files.wordpress.com/2009/09/infixterminal1.png?w=500&amp;#038;h=358&quot; alt=&quot;output&quot; title=&quot;infixterminal1&quot; width=&quot;500&quot; height=&quot;358&quot; class=&quot;size-full wp-image-149&quot; /&gt;&lt;/a&gt;&lt;p class=&quot;wp-caption-text&quot;&gt;output&lt;/p&gt;&lt;/div&gt;
&lt;br /&gt;  &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gocomments/ragsagar.wordpress.com/141/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/comments/ragsagar.wordpress.com/141/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godelicious/ragsagar.wordpress.com/141/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/delicious/ragsagar.wordpress.com/141/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gostumble/ragsagar.wordpress.com/141/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/stumble/ragsagar.wordpress.com/141/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godigg/ragsagar.wordpress.com/141/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/digg/ragsagar.wordpress.com/141/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/goreddit/ragsagar.wordpress.com/141/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/reddit/ragsagar.wordpress.com/141/&quot; /&gt;&lt;/a&gt; &lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://stats.wordpress.com/b.gif?host=ragsagar.wordpress.com&amp;amp;blog=4629970&amp;amp;post=141&amp;amp;subd=ragsagar&amp;amp;ref=&amp;amp;feed=1&quot; /&gt;</content>
		<author>
			<name>Rag Sagar (ragsagar)</name>
			<uri>http://ragsagar.wordpress.com</uri>
		</author>
		<source>
			<title type="html">r4g54g4r's h4ckl0g</title>
			<subtitle type="html">an0th3r h4ck3r's w3blog</subtitle>
			<link rel="self" href="http://ragsagar.wordpress.com/feed/"/>
			<id>http://ragsagar.wordpress.com/feed/</id>
			<updated>2010-05-03T22:05:04+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Back to blogging..</title>
		<link href="http://atuljha.com/content/back-blogging"/>
		<id>http://atuljha.com/48 at http://atuljha.com</id>
		<updated>2009-09-20T08:01:07+00:00</updated>
		<content type="html">&lt;p&gt;Well i have been out of my homepage for almost month or two.&lt;/p&gt;
&lt;p&gt;I&amp;nbsp;forgot to mention i joined new job and thankfully its walkable from my house.I&amp;nbsp;am loving the way i been exploring soo many new things here.I&amp;nbsp;would say am doing a proper multitasking job from sytem admin to programmer to a web developer and at times as IT guy fixing whats wrong in my LAN cable.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://atuljha.com/content/back-blogging&quot; target=&quot;_blank&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</content>
		<author>
			<name>Atul Jha (koolhead17)</name>
			<uri>http://atuljha.com</uri>
		</author>
		<source>
			<title type="html">koolhead17 == atul jha</title>
			<subtitle type="html">&lt;i&gt; &lt;h1&gt;Change is good, So am working on it.&lt;/h1&gt;&lt;br /&gt; All new homepage will be coming up in few days.&lt;/i&gt;&lt;br /&gt;I am a e-mail away &lt;b&gt;koolhead17@gmail.com &lt;/b&gt; incase of something urgent/interesting. :D&lt;/i&gt;&lt;br /&gt;&lt;br /&gt; I will be not be availabe on my e-mail or my mobile from apr 28 to may 15. I can reply to your mails and calls only when am back on the mainland :D</subtitle>
			<link rel="self" href="http://atuljha.com/rss.xml"/>
			<id>http://atuljha.com/rss.xml</id>
			<updated>2010-04-19T13:05:02+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">lalithsuresh</title>
		<link href="http://lalithsuresh.wordpress.com/2009/09/19/software-freedom-week-mnit-jaipur/"/>
		<id>http://lalithsuresh.wordpress.com/?p=351</id>
		<updated>2009-09-19T14:17:22+00:00</updated>
		<content type="html">&lt;p&gt;This is yet another one of those long-time-no-post-buster posts. I&amp;#8217;ve been quite bogged down by work as always, with exams not exactly helping either. The past one week flew by with the Software Freedom Week celebrations we had here in MNIT. While I still wish we&amp;#8217;d done something like last year, where we had 5 seminars, 2 labs and a trip to BITS-Pilani to top it off, this year, SFW was held on a slightly duller note but the intention remained the same: get the juniors involved in the world of FOSS!&lt;/p&gt;
&lt;p&gt;Unlike last year, where everyone had to put up with me through 4 out of the 5 talks, I took a backseat this year as I let my juniors showcase their work and areas of interests. On day 1, the 15th of the month, Harsh and Nitin from 3rd year kicked off with a very good presentation on developing Rich Internet Applications (RIAs) using JavaFX. I took over day 2, with a talk I&amp;#8217;ve always wanted to give, titled &amp;#8220;Virtualisation: The why, the what and the how&amp;#8221;. The toughest part as far as the topic was concerned was to strip it down well enough and keep it light enough for a crowd of 2nd and 1st years who didn&amp;#8217;t have a solid computer science background. So my talk was pretty much confined to the different kinds of Server Virtualisation and a little bit of Storage Virtualisation all of which was depicted in a newbie friendly way using pictures alone. &lt;img src=&quot;http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif&quot; alt=&quot;:)&quot; class=&quot;wp-smiley&quot; /&gt;  Day 3 was launched with an introduction to SunSPOTs by Ankit and Sarguru, who gave the juniors a very good overview about the capabilities of one of the coolest gadgets ever! The demos that followed also took the students by surprise (mainly the sample demos that are freely available). Day 4 was again a talk by Harsh on PHP and other aspects of web development, especially the usage of Content Management Systems. Finally, Day 5, that is today, was the finale with me giving a talk on Parallel Programming concepts. While I had a feeling that this would go over their heads, I was quite surprised to see almost everyone scoring well on the quiz that followed the talk! I talked about the switch to the multi-core era, about &lt;a href=&quot;http://www.gotw.ca/publications/concurrency-ddj.htm&quot;&gt;the free lunch being over&lt;/a&gt;, what threads are, multi-threading, the devil in the form of race conditions and how to go about parallel programming with OpenMP. &lt;img src=&quot;http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif&quot; alt=&quot;:)&quot; class=&quot;wp-smiley&quot; /&gt; &lt;/p&gt;
&lt;p&gt;Perk bars were handed out freely to students who were active during the presentations and headphones were given away as prizes to the quiz winners. &lt;img src=&quot;http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif&quot; alt=&quot;:)&quot; class=&quot;wp-smiley&quot; /&gt; &lt;/p&gt;
&lt;p&gt;Being my last SFW session here in MNIT, I just can&amp;#8217;t help but wonder how it&amp;#8217;ll be like in my absense, next year on. Maybe the flame&amp;#8217;s been instilled into my juniors, maybe it&amp;#8217;s not. Bah&amp;#8230; who cares! &lt;img src=&quot;http://s.wordpress.com/wp-includes/images/smilies/icon_razz.gif&quot; alt=&quot;:P&quot; class=&quot;wp-smiley&quot; /&gt; &lt;/p&gt;
&lt;br /&gt;  &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gocomments/lalithsuresh.wordpress.com/351/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/comments/lalithsuresh.wordpress.com/351/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godelicious/lalithsuresh.wordpress.com/351/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/delicious/lalithsuresh.wordpress.com/351/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gostumble/lalithsuresh.wordpress.com/351/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/stumble/lalithsuresh.wordpress.com/351/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godigg/lalithsuresh.wordpress.com/351/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/digg/lalithsuresh.wordpress.com/351/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/goreddit/lalithsuresh.wordpress.com/351/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/reddit/lalithsuresh.wordpress.com/351/&quot; /&gt;&lt;/a&gt; &lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://stats.wordpress.com/b.gif?host=lalithsuresh.wordpress.com&amp;amp;blog=4169371&amp;amp;post=351&amp;amp;subd=lalithsuresh&amp;amp;ref=&amp;amp;feed=1&quot; /&gt;</content>
		<author>
			<name>Lalith Suresh (nightstrike_)</name>
			<uri>http://lalithsuresh.wordpress.com</uri>
		</author>
		<source>
			<title type="html">LOL, ROTFL, WTF and my life</title>
			<subtitle type="html">Venture into my work, my thoughts and my world...</subtitle>
			<link rel="self" href="http://lalithsuresh.wordpress.com/feed/"/>
			<id>http://lalithsuresh.wordpress.com/feed/</id>
			<updated>2010-05-03T21:45:03+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Jagriti in my college</title>
		<link href="http://acedip.in/blog/jagriti-in-my-college/"/>
		<id>http://acedip.in/blog/?p=75</id>
		<updated>2009-09-12T10:45:37+00:00</updated>
		<content type="html">&lt;p&gt;# JAGRITI&lt;br /&gt;
well all this started a few months ago when i saw fedora 9 in many computer labs in my college and i was pretty astonished and awed at the very sight of it, there was this feeling that i have an another option to work at other than windows(which is non existent anyways) which is very difficult to putout in words and i could see a new beginning and a fresh air was all around which only spoke of freedom..well many days passed and i was waiting for some news to come on its own from the college front about the new gained freedom in its machines but nothing happened a few more months passed.&lt;br /&gt;
This campaign was called Jagriti, as it looked as an apt name for it since, its an awakening from the darkness which has for so long prevailed that, is not confused by light by all the mortals who don&amp;#8217;t have a mind of their own &lt;img src=&quot;http://acedip.in/blog/wp-includes/images/smilies/icon_biggrin.gif&quot; alt=&quot;:D&quot; class=&quot;wp-smiley&quot; /&gt;&lt;br /&gt;
And at last i thought it was time to take an initiative to start the freedom movement afresh where it had lots its steam. So now it was the time. This is exactly what i have started along with another&lt;a href=&quot;http://lugj.in&quot;&gt; lugj &lt;/a&gt;member mukul gupta, also &lt;a href=&quot;http://studentdevelopers.ning.com/group/skitosum&quot;&gt;skit-osum&lt;/a&gt; leader of my college, which also is an enthralling community of over 500 members which also makes it one of the seven such communities the world over. The project is well supported by our IT-Head of the department who is willing to do anything for it, he is even willing to change the whole infrastructure of few labs who have computers from the times of Adam, and would get some new sleek machines and you can imagine the joy of installing fedora 11 on them.&lt;/p&gt;
&lt;p&gt;&lt;img class=&quot;aligncenter size-full wp-image-82&quot; title=&quot;Screenshot&quot; src=&quot;http://acedip.in/blog/wp-content/uploads/2009/09/Screenshot1.png&quot; alt=&quot;Screenshot&quot; width=&quot;701&quot; height=&quot;724&quot; /&gt;&lt;/p&gt;
&lt;p&gt;
&lt;p&gt;That is just a notice which had to be circulated around the college to inform all the teachers and students what is going around. According to it, all the programming work will be done on linux and we are to assist the concerned teachers to implement it in their respective labs. This becomes so necessary pertaining to the wide spread use of turbo C which sensible people all around the world have even forgotten about but for some god knows what reason it happens to be the most popular IDE in india for c/c++. Though when we were planning our shift to fedora a guy also suggested to use another IDE for windows instead and i remember giving him some strange sort of looks and he knew what was coming and he shut up, but later i also explained him a few things and made that strange thought to go away. Everything seems to have been falling into place and we are about to start with our labs from monday, assisting teachers to write their c/c++ code on fedora.&lt;br /&gt;
The project is witnessing a mild start but the whole picture will get clear by end of the next week and how have we performed in the coming week, and there-after we would be too glad to involve lugj and the indian foss community and take the initiative to a whole new level.&lt;br /&gt;
keeping fingers crossed &lt;img src=&quot;http://acedip.in/blog/wp-includes/images/smilies/icon_biggrin.gif&quot; alt=&quot;:D&quot; class=&quot;wp-smiley&quot; /&gt; &lt;/p&gt;&lt;/p&gt;</content>
		<author>
			<name>Anirudh Singh Shekhawat (Acedip)</name>
			<uri>http://acedip.in/blog</uri>
		</author>
		<source>
			<title type="html">Acedip | Anirudh singh shekhawat</title>
			<subtitle type="html">Desultory thoughts of a wandering mind.</subtitle>
			<link rel="self" href="http://acedip.in/blog/feed/"/>
			<id>http://acedip.in/blog/feed/</id>
			<updated>2010-06-12T09:30:05+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">That old song!!</title>
		<link href="http://acedip.in/blog/that-old-song/"/>
		<id>http://acedip.in/blog/?p=66</id>
		<updated>2009-09-01T09:36:49+00:00</updated>
		<content type="html">&lt;p&gt;Wating under the starry night,&lt;br /&gt;
thro&amp;#8217; fieldth of grass and hay,&lt;br /&gt;
singing that solitary song,&lt;br /&gt;
which long ago a reaper sang.&lt;/p&gt;
&lt;p&gt;The first presage of winter is following,&lt;br /&gt;
starth are moving faster than i can walk,&lt;br /&gt;
I am running from the solitude but can not,&lt;br /&gt;
helpless rooted I stare from the midearth,&lt;br /&gt;
thro&amp;#8217; the starth where i can reach not.&lt;/p&gt;
&lt;p&gt;The old song is following from the meadowth,&lt;br /&gt;
across the earth, thro&amp;#8217; the shadowth,&lt;br /&gt;
who eclipsed come from the back,&lt;br /&gt;
on the track,&lt;br /&gt;
on which i sit.&lt;/p&gt;
&lt;p&gt;Gone are the months of may,&lt;br /&gt;
when we, in arms lay.&lt;br /&gt;
in the fields of grass and hay,&lt;br /&gt;
where my soule still stays&lt;br /&gt;
starth did shine but did not move fast&lt;br /&gt;
to watch us&amp;#8211;at last.&lt;/p&gt;
&lt;p&gt;long gone are the dayth of love&lt;br /&gt;
when that old song was sung by none,&lt;br /&gt;
but all the starth, all the meadowth,&lt;br /&gt;
drown in the solitary tone.&lt;/p&gt;
&lt;p&gt;My hearte bleeds for thy love,&lt;br /&gt;
No, the aching said,&lt;br /&gt;
thine love was lost long ago,&lt;br /&gt;
in the vast tar and tor.&lt;/p&gt;
&lt;p&gt;still the helpless ignored the solitude,&lt;br /&gt;
and went astray with thine lost love,&lt;br /&gt;
now, awake thy poore soule,&lt;br /&gt;
run, save thy soule, not get lost any more,&lt;br /&gt;
in the vast tar and tor&amp;#8230;&lt;/p&gt;
&lt;p&gt;Anisingh (signed)&lt;/p&gt;
&lt;p&gt;#Found it buried somewhere in my book shelves.. Dated May 2004&lt;/p&gt;</content>
		<author>
			<name>Anirudh Singh Shekhawat (Acedip)</name>
			<uri>http://acedip.in/blog</uri>
		</author>
		<source>
			<title type="html">Acedip | Anirudh singh shekhawat</title>
			<subtitle type="html">Desultory thoughts of a wandering mind.</subtitle>
			<link rel="self" href="http://acedip.in/blog/feed/"/>
			<id>http://acedip.in/blog/feed/</id>
			<updated>2010-06-12T09:30:05+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">ragsagar</title>
		<link href="http://ragsagar.wordpress.com/2009/09/01/how-to-make-irc-bot-in-python-my-first-post-in-tuxopia/"/>
		<id>http://ragsagar.wordpress.com/?p=136</id>
		<updated>2009-09-01T06:58:29+00:00</updated>
		<content type="html">&lt;p&gt;My first post in &lt;a href=&quot;http://tuxopia.net&quot;&gt;tuxopia&lt;/a&gt; is a how-to for writing basic IRC bot in python.Thought of sharing the link &lt;a href=&quot;http://www.tuxopia.net/making_an_IRC_bot_in_python&quot;&gt;here &lt;/a&gt; &lt;img src=&quot;http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif&quot; alt=&quot;:-)&quot; class=&quot;wp-smiley&quot; /&gt; &lt;/p&gt;
&lt;br /&gt;  &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gocomments/ragsagar.wordpress.com/136/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/comments/ragsagar.wordpress.com/136/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godelicious/ragsagar.wordpress.com/136/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/delicious/ragsagar.wordpress.com/136/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gostumble/ragsagar.wordpress.com/136/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/stumble/ragsagar.wordpress.com/136/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godigg/ragsagar.wordpress.com/136/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/digg/ragsagar.wordpress.com/136/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/goreddit/ragsagar.wordpress.com/136/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/reddit/ragsagar.wordpress.com/136/&quot; /&gt;&lt;/a&gt; &lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://stats.wordpress.com/b.gif?host=ragsagar.wordpress.com&amp;amp;blog=4629970&amp;amp;post=136&amp;amp;subd=ragsagar&amp;amp;ref=&amp;amp;feed=1&quot; /&gt;</content>
		<author>
			<name>Rag Sagar (ragsagar)</name>
			<uri>http://ragsagar.wordpress.com</uri>
		</author>
		<source>
			<title type="html">r4g54g4r's h4ckl0g</title>
			<subtitle type="html">an0th3r h4ck3r's w3blog</subtitle>
			<link rel="self" href="http://ragsagar.wordpress.com/feed/"/>
			<id>http://ragsagar.wordpress.com/feed/</id>
			<updated>2010-05-03T22:05:04+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">facebook addiction (from fedora)</title>
		<link href="http://acedip.in/blog/facebook-addiction-from-fedora/"/>
		<id>http://acedip.in/blog/?p=55</id>
		<updated>2009-08-31T18:31:30+00:00</updated>
		<content type="html">&lt;p&gt;Like all the best things that ever happen to a man, this too came to me while idling and listening to good old kishore da&amp;#8217;s unforgetful melodies and browsing (though not all men browse, internet is young you see :/ ) and suddenly came across something which will never let you disconnect from facebook which most of you are already glued to like in-separable half siblings.&lt;/p&gt;
&lt;p&gt;For all you pidign users there is a &lt;a href=&quot;http://code.google.com/p/pidgin-facebookchat/wiki/How_To_Install&quot;&gt;plugin&lt;/a&gt; for pidgin which will let you sign in to your facebook account and sing-in to the facebook chat, and noone would ever know i f you are even really on facebook. Your list of friends will appear just as like any other IM account and under the facebook tag. All thanks to efforts of Eion robb who created the thing in may 2008.&lt;/p&gt;
&lt;p&gt;Note: the plugin is available for window and other platforms too, you just need to be a piding user to do this &lt;img src=&quot;http://acedip.in/blog/wp-includes/images/smilies/icon_smile.gif&quot; alt=&quot;:)&quot; class=&quot;wp-smiley&quot; /&gt; &lt;/p&gt;
&lt;p&gt;Well that is not always alright when you have to install from source and that is exactly the thing with the main project site, but when scrolling down to comments you I came across a link which has rpm for fedora &lt;a href=&quot;http://koji.fedoraproject.org/koji/packageinfo?packageID=6859&quot;&gt;here&lt;/a&gt; and which has been very nicely maintained since fedora 8&lt;/p&gt;
&lt;p&gt;so simply firiing&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;[Acedip~ #]wget &lt;/code&gt;http://kojipkgs.fedoraproject.org/packages/purple-facebookchat/1.60/1.fc11/i586/purple-facebookchat-1.60-1.fc11.i586.rpm
[Acedip~ #]rpm -ivh purple-facebookchat-1.60-1.fc11.i586.rpm
error: Failed dependencies:
 libjson-glib-1.0.so.0 is needed by purple-facebookchat-1.60-1.fc11.i586&lt;/pre&gt;
&lt;p&gt;oop, what is that!! well seemed like we have to get it, so after a few clicks i got it&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;[Acedip~ #]wget &lt;/code&gt;ftp://194.199.20.114/linux/fedora/releases/11/Everything/i386/os/Packages/json-glib-0.6.2-3.fc11.i586.rpm
[Acedip~ #]# rpm -ivh json-glib-0.6.2-3.fc11.i586.rpm
Preparing...                ########################################### [100%]
 1:json-glib              ########################################### [100%]
[Acedip~ #]rpm -ivh purple-facebookchat-1.60-1.fc11.i586.rpm
Preparing...                ########################################### [100%]
 1:purple-facebookchat    ########################################### [100%]&lt;/pre&gt;
&lt;p&gt;n the picture, you can also set your facebook status and also get all updates form facebook.&lt;/p&gt;
&lt;p&gt;&lt;img class=&quot;aligncenter size-full wp-image-56&quot; title=&quot;Screenshot&quot; src=&quot;http://acedip.in/blog/wp-content/uploads/2009/08/Screenshot.png&quot; alt=&quot;Screenshot&quot; width=&quot;373&quot; height=&quot;704&quot; /&gt;&lt;/p&gt;
&lt;p&gt;And that is it, done with the install part, now what you gotta do is simply.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a name=&quot;Account_Setup&quot;&gt;Download and install plugin for your specific platform as below &lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a name=&quot;Account_Setup&quot;&gt;Restart Pidgin (or go to Tools-&amp;gt;Plugins) to redetect plugins &lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a name=&quot;Account_Setup&quot;&gt;&lt;strong&gt;Add a new account&lt;/strong&gt; to Pidgin (Accounts-&amp;gt;Manage Accounts-&amp;gt;Add) &lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a name=&quot;Account_Setup&quot;&gt;Choose &amp;#8220;Facebook&amp;#8221; from the dropdown list &lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a name=&quot;Account_Setup&quot;&gt;Use your Facebook email address in the username field &lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a name=&quot;Account_Setup&quot;&gt;Start chatting &lt;img src=&quot;http://acedip.in/blog/wp-includes/images/smilies/icon_smile.gif&quot; alt=&quot;:)&quot; class=&quot;wp-smiley&quot; /&gt; &lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a name=&quot;Account_Setup&quot;&gt;you can also update your facebook status from here, no need to even login to facebook, until and unless you want to try out those freaky quizzes and application which maybe even god may find difficult to comprehend.&lt;br /&gt;
&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;well this was a short guide to get the plugin work on fedora, a complete documentation of all platforms is available on the main package site.&lt;/p&gt;</content>
		<author>
			<name>Anirudh Singh Shekhawat (Acedip)</name>
			<uri>http://acedip.in/blog</uri>
		</author>
		<source>
			<title type="html">Acedip | Anirudh singh shekhawat</title>
			<subtitle type="html">Desultory thoughts of a wandering mind.</subtitle>
			<link rel="self" href="http://acedip.in/blog/feed/"/>
			<id>http://acedip.in/blog/feed/</id>
			<updated>2010-06-12T09:30:05+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">A new beginning</title>
		<link href="http://acedip.in/blog/a-new-beginning/"/>
		<id>http://acedip.in/blog/?p=40</id>
		<updated>2009-08-29T07:14:48+00:00</updated>
		<content type="html">&lt;p&gt;Finally I sit gazing at my new laptop. I dont think no one has ever spend so much time in getting a new machine, it took me over 4 months to get this one, no!, I&amp;#8217;m no weirdo but the situation and more over ones which I liked had larger issues with fedora and once you cant get what you want, you wait, so I waited and here I am finally relieved.&lt;/p&gt;
&lt;p&gt;&lt;img class=&quot;alignnone size-medium wp-image-47&quot; title=&quot;DSC00193&quot; src=&quot;http://acedip.in/blog/wp-content/uploads/2009/08/DSC00193-300x225.jpg&quot; alt=&quot;DSC00193&quot; width=&quot;300&quot; height=&quot;225&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Installation of fedora 11 was quite quick keeping in mind almost all the packages I&amp;#8217;d selected to install amounting uptp 1400 of them, and then the system booted, It felt really great on seeing the fedora screen once more in my life (after a short stint with ubuntu because of hardware issues). I choose not to send my hardware profile to smolt until later time and had to do it late with&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;[Acedip@localhost ~]#smoltSendProfile&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;and here is my machines hardware &lt;a href=&quot;http://smolt.fedoraproject.org/show?uuid=pub_53b7466f-2229-460f-bfd9-9585eeb0afb5&quot;&gt;profile&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;img class=&quot;aligncenter size-medium wp-image-51&quot; title=&quot;DSC00194&quot; src=&quot;http://acedip.in/blog/wp-content/uploads/2009/08/DSC001943-281x300.jpg&quot; alt=&quot;DSC00194&quot; width=&quot;281&quot; height=&quot;300&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Everything seems fine till now, but I sensed some troubles coming my way as soon as I saw that Broadcom Corporation in my network chips, and there I was struggling over a few late night hours to get my wireless working. I was pretty determined to have it my way and finally after brooding over a couple of web pages and some help from #fedora got the wireless working with &lt;a title=&quot;this&quot; href=&quot;http://fedoramobile.org/fc-wireless/broadcom-linux-sta-driver&quot; target=&quot;_blank&quot;&gt;this&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Well while fixing it i noticed that the above link would largely satisfy all broadcom wireless needs but this one really helped in knowing about broadcom chips &lt;a title=&quot;here&quot; href=&quot;http://fedoramobile.org/fc-wireless/broadcom-linux-sta-driver&quot;&gt;here&lt;/a&gt; but this can only satisfy your hungry mind and not actually help you with the issue and I also got to know that there is  an IRC channel for broadcom BCMxxxx users at freenode: #bcm-users, though its always better to do your homework before you go to that channel.&lt;/p&gt;
&lt;p&gt;Though I still have some minor issues like battery tray icon often doesnt give right readings, but it has to be fixed ASAP, and the default brightness controller keys does not work properly either.&lt;/p&gt;
&lt;p&gt;&lt;img class=&quot;aligncenter size-medium wp-image-52&quot; title=&quot;DSC00199&quot; src=&quot;http://acedip.in/blog/wp-content/uploads/2009/08/DSC00199-300x225.jpg&quot; alt=&quot;DSC00199&quot; width=&quot;300&quot; height=&quot;225&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Well the pictures are fine looking at the output from sony ericsson k530i.&lt;/p&gt;
&lt;p&gt;The sound of the machine is pretty awesome with two speaker built in the screen. Later I installed &lt;a title=&quot;gnash&quot; href=&quot;http://www.gnu.org/software/gnash&quot;&gt;Gnash&lt;/a&gt; for playing flash, &lt;a href=&quot;http://comix.sourceforge.net/&quot;&gt;comix&lt;/a&gt; for viewing pictures in archives and as the name signifies to view comics, and did other usual stuff to get my machine up to date with all non-free codecs etc. and when I checked for update I was again astonished to see 900Mbs of yum update, woof!!&lt;/p&gt;</content>
		<author>
			<name>Anirudh Singh Shekhawat (Acedip)</name>
			<uri>http://acedip.in/blog</uri>
		</author>
		<source>
			<title type="html">Acedip | Anirudh singh shekhawat</title>
			<subtitle type="html">Desultory thoughts of a wandering mind.</subtitle>
			<link rel="self" href="http://acedip.in/blog/feed/"/>
			<id>http://acedip.in/blog/feed/</id>
			<updated>2010-06-12T09:30:05+00:00</updated>
		</source>
	</entry>

</feed>
