<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Sameek Banerjee</title>
	<atom:link href="http://sameek.com/feed" rel="self" type="application/rss+xml" />
	<link>http://sameek.com</link>
	<description>--``You can use a little negativity!''--</description>
	<lastBuildDate>Fri, 12 Aug 2011 08:03:46 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.3</generator>
		<item>
		<title>Halfway across the world.</title>
		<link>http://sameek.com/2011/07/24/halfway-across-the-world.html</link>
		<comments>http://sameek.com/2011/07/24/halfway-across-the-world.html#comments</comments>
		<pubDate>Sat, 23 Jul 2011 21:14:21 +0000</pubDate>
		<dc:creator>Sameek</dc:creator>
				<category><![CDATA[My Thoughts]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[San Francisco]]></category>

		<guid isPermaLink="false">http://sameek.com/?p=116</guid>
		<description><![CDATA[After a long time I have some time to update my blog. I am currently in San Francisco. And arriving here just before the weekend have the next 2 days to myself. I like this place so far. SO I will keep updating this post with my experiences here. So far I am not really [...]]]></description>
			<content:encoded><![CDATA[<p>After a long time I have some time to update my blog. I am currently in San Francisco. And arriving here just before the weekend have the next 2 days to myself. I like this place so far. SO I will keep updating this post with my experiences here.</p>
<p>So far I am not really impressed by the shopping mall or other modern places. What I really like is the natural beauty of this place. It is absolutely stunning and unspoiled. I will update more later.</p>
<p>Went to Half-moon bay and drove down highway one to santa-cruz. the beaches were awesome. more to come.</p>
]]></content:encoded>
			<wfw:commentRss>http://sameek.com/2011/07/24/halfway-across-the-world.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Simple TRIE implementation</title>
		<link>http://sameek.com/2011/02/08/simple-trie-implementation.html</link>
		<comments>http://sameek.com/2011/02/08/simple-trie-implementation.html#comments</comments>
		<pubDate>Tue, 08 Feb 2011 04:50:53 +0000</pubDate>
		<dc:creator>Sameek</dc:creator>
				<category><![CDATA[Tech Stuff]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[c++]]></category>
		<category><![CDATA[data-structures]]></category>
		<category><![CDATA[implementation]]></category>
		<category><![CDATA[TRIE]]></category>

		<guid isPermaLink="false">http://sameek.com/?p=92</guid>
		<description><![CDATA[Its been a long time since my last post. But I finally have some free time at least till march begins. Here is a simple implementation of the TRIE Data structure. Its not the compressed TRIE, but the real simple one (using arrays instead of lists). I have done some very simple tests on it. [...]]]></description>
			<content:encoded><![CDATA[<p>Its been a long time since my last post. But I finally have some free time at least till march begins. Here is a simple implementation of the TRIE Data structure. Its not the compressed TRIE, but the real simple one (using arrays instead of lists). I have done some very simple tests on it. I am more curious to know what is the memory charge for this implementation on a really large DB of words maybe 3,00,000 or so. My next target will be to implement a compressed version of it and see the difference.</p>
<p>Meanwhile feel free to use this copy.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
</pre></td><td class="code"><pre class="cpp" style="font-family:monospace;">/*
 * Trie.h
 *
 *  Created on: Feb 8, 2011
 *      Author: sameekbanerjee
 */
&nbsp;
#ifndef TRIE_H_
#define TRIE_H_
&nbsp;
struct trienode
{
	char value;
	trienode* children[26];
	bool end;
	trienode();
	trienode(char value_);
	virtual ~trienode();
};
/*
 * Really inefficient Implementation of Trie
 * But easy to use and understand
 */
class Trie
{
public:
	Trie();
	virtual ~Trie();
	void addword(const char* word);
	bool search(const char* word);
private:
	bool validate(const char* word);
	trienode root;
};
&nbsp;
#endif /* TRIE_H_ */</pre></td></tr></table></div>

<p>The implementation follows:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
</pre></td><td class="code"><pre class="cpp" style="font-family:monospace;">/*
 * Trie.cpp
 *
 *  Created on: Feb 8, 2011
 *      Author: sameekbanerjee
 */
&nbsp;
#include &quot;Trie.h&quot;
#include &lt;cstdlib&gt;
#include &lt;cstdio&gt;
#include &lt;cstring&gt;
#include &lt;cctype&gt;
#include &lt;cassert&gt;
const unsigned int MAXLEN = 12;
/*
 * Implementation of trienode
 */
trienode::~trienode()
{
	for(int i=0; i&lt;26;i++)
		delete children[i];
}
&nbsp;
trienode::trienode():value(0),end(false)
{
	std::memset(children,0,sizeof(trienode*) * 26);
}
&nbsp;
trienode::trienode(char value_):value(value_),end(false)
{
	std::memset(children,0,sizeof(trienode*) * 26);
}
&nbsp;
/*
 * Implementation of TRIE
 */
Trie::Trie()
{
}
&nbsp;
Trie::~Trie()
{
}
/*
 * Takes a word and adds it to the dictionary
 */
void Trie::addword(const char *word)
{
	if(!validate(word))
		return;
	const char *p=word;
	trienode *current=&amp;root;
	while(*p)
	{
		char c=tolower(*p);
		unsigned int pos=c-'a';
		assert(pos&lt;26);
		if(current-&gt;children[pos]==0)
		{
			current-&gt;children[pos]=new trienode(c);
		}
		current=current-&gt;children[pos];
		p++;
	}
	current-&gt;end=true;
}
/*
 * Take a word and searches in the dictionary
 * Returns true if it exists false otherwise
 */
bool Trie::search(const char *word)
{
	if(!validate(word))
		return false;
	bool flag=true;
	const char *p=word;
	trienode *current=&amp;root;
	while(*p)
	{
		char c=tolower(*p);
		unsigned int pos=c-'a';
		assert (pos&lt;26);
		if(current-&gt;children[pos]==0)
		{
			flag = false;
			break;
		}
		current=current-&gt;children[pos];
		p++;
	}
	if(flag)
	{
		if(current-&gt;end)
			return true;
	}
	return false;
}
&nbsp;
bool Trie::validate(const char *word)
{
	if(strlen(word)&gt;MAXLEN)
	{
		std::fprintf(stderr,&quot;Maximum length of Word exceeds %d\n&quot;,MAXLEN);
		return false;
	}
	const char *p=word;
	while(*p)
	{
		if(!isalpha(*p))
		{
			std::fprintf(stderr,&quot;Words should only contain alphabets\n&quot;);
			return false;
		}
		p++;
	}
	return true;
}</pre></td></tr></table></div>

<p>Or Download the project here. <a href="http://sameek.com/wp-content/uploads/2011/02/TRIE.zip">TRIE<br />
</a></p>
<p>A word of caution: This is only tested on GNU C++ compiler for mac. This should compile on all other GNU versions, but may require minor changes if you try to compile it on Visual studio. </p>
<p>Also I tried the new <a href="http://wordpress.org/extend/plugins/wp-syntax/" target="_blank">wp-syntax</a> plug-in. It is supposed to be cool but I don&#8217;t see any syntax highlighting, only line numbers. It may be clashing with my theme. I have to dig in to it.</p>
]]></content:encoded>
			<wfw:commentRss>http://sameek.com/2011/02/08/simple-trie-implementation.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Huffman Coding</title>
		<link>http://sameek.com/2010/08/21/huffman-coding.html</link>
		<comments>http://sameek.com/2010/08/21/huffman-coding.html#comments</comments>
		<pubDate>Fri, 20 Aug 2010 19:20:04 +0000</pubDate>
		<dc:creator>Sameek</dc:creator>
				<category><![CDATA[Tech Stuff]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[algorithms]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[data-structures]]></category>
		<category><![CDATA[huffman]]></category>

		<guid isPermaLink="false">http://sameek.com/?p=85</guid>
		<description><![CDATA[Just got into coding in DS and Algorithms again. Here is my implementation of the huffman coding in C++. Pretty simple stuff if you make use of STL extensively. There are no comments and the classes are not properly written. If you want to learn more about Huffman Coding, visit here. Download source code from [...]]]></description>
			<content:encoded><![CDATA[<p>Just got into coding in DS and Algorithms again. Here is my implementation of the huffman coding in C++. Pretty simple stuff if you make use of STL extensively. There are no comments and the classes are not properly written. If you want to learn more about Huffman Coding, visit <a href="http://en.wikipedia.org/wiki/Huffman_coding" target="_blank">here</a>.</p>
<p>Download source code from here <a href="http://sameek.com/wp-content/uploads/2010/08/huffman.tar.gz">huffman.tar.gz</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://sameek.com/2010/08/21/huffman-coding.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Overdose of IPL!</title>
		<link>http://sameek.com/2010/04/04/overdose-of-ipl.html</link>
		<comments>http://sameek.com/2010/04/04/overdose-of-ipl.html#comments</comments>
		<pubDate>Sat, 03 Apr 2010 23:15:18 +0000</pubDate>
		<dc:creator>Sameek</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sameek.com/?p=73</guid>
		<description><![CDATA[I just wanted to pitch a crazy idea. I am SICK or IPL. But I hate myself even more because in-spite of my predicament, I am still watching it. Here are are a few things i hate about it. The list may not contain a round number: Strategic timeout: I mean seriously. I will have [...]]]></description>
			<content:encoded><![CDATA[<p>I just wanted to pitch a crazy idea. I am SICK or IPL. But I hate myself even more because in-spite of my predicament, I am still watching it. Here are are a few things i hate about it. The list may not contain a round number:</p>
<ol>
<li>Strategic timeout: I mean seriously. I will have a little less problem with it if it was renamed &#8220;time to bombard you with commercials while we rake in the moolah&#8221;</li>
<li>The between over advertisements: Another reason for my high BP.</li>
<li>The lame commentators: With all the money, can&#8217;t you guyz hire some decent commentators. Danny Morrison! Seriously? I thought Sidhu was the limit.</li>
<li>The mongoose Bat: That&#8217;s not a bat. I don&#8217;t care what the rule book says. I remember when I was a kid, we used to watch Mahabharat. I still remember the scene when Bheem and Duryodhan were fighting with Mongoose bats.</li>
<li>The pathetic fielding: I have seen better fielding in gully cricket.</li>
<li>The Cheer-leaders: I mean, i really don&#8217;t have a problem with it. But I would like some Indian faces in them. The foreign beauties[using the term liberally]&#8230;Not working for me.</li>
<li>The blue colored uniforms: 5 out of 8 teams wearing blue uniforms. Are we as a nation becoming color-blind?</li>
<li>Sania Mirza hooking up with Shoaib Malik. I know this has nothing to do with IPL. But the news came out during the IPL and it is seriously pissing me off.</li>
<li>The smirk on Mr. Modi&#8217;s face.</li>
<li>The fact that from next year, we will have 2 more teams. That means. Its going to suck even more.</li>
</ol>
<p>Huh! That actually turned out to be a round number. Some personal trivia, People always say that I am a very negative person. And One way to improve myself will be find out positive things about things i don&#8217;t like. So in an uncharacteristic way, I am actually going to try some self improvement. Well since I have bad-mouthed the IPL so much, I am going to find some good things about this year&#8217;s IPL. So here it goes.</p>
<ol>
<li>Good entertainment: Gives something to look forward to in my otherwise boring and non-existential life.</li>
<li>Preity Jumping up and down: I have made that my new screen-saver. I think Kings XI are being distracted because of that. I am not complaining.</li>
<li>A little less of SRK: I thought that was never possible.</li>
<li>KKR is not last anymore. Haha. Miracles are possible.</li>
<li>Sachin in awesome form.</li>
</ol>
<p>I guess that&#8217;s it. Self-Improvement takes time. At least I am trying. Until next time.</p>
]]></content:encoded>
			<wfw:commentRss>http://sameek.com/2010/04/04/overdose-of-ipl.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Number 1 in tests!</title>
		<link>http://sameek.com/2009/12/08/number-1-in-tests.html</link>
		<comments>http://sameek.com/2009/12/08/number-1-in-tests.html#comments</comments>
		<pubDate>Tue, 08 Dec 2009 08:41:56 +0000</pubDate>
		<dc:creator>Sameek</dc:creator>
				<category><![CDATA[Cricket]]></category>
		<category><![CDATA[Sports]]></category>
		<category><![CDATA[BCCI]]></category>
		<category><![CDATA[Dhoni]]></category>
		<category><![CDATA[Dravid]]></category>
		<category><![CDATA[Gambhir]]></category>
		<category><![CDATA[Greg Chappell]]></category>
		<category><![CDATA[Laxman]]></category>
		<category><![CDATA[Sachin Tendulkar]]></category>
		<category><![CDATA[Sehwag]]></category>
		<category><![CDATA[Test Cricket]]></category>
		<category><![CDATA[Yuvraaj]]></category>
		<category><![CDATA[Zaheer Khan]]></category>

		<guid isPermaLink="false">http://sameek.com/?p=60</guid>
		<description><![CDATA[Sorry for the long delay. India has finally made the top spot in ICC test rankings. Yippie!! This feat IMHO isn&#8217;t just a fluke. India has been playing great cricket for last few years. The fielding has improved and the players are more professional. I think the ground work started when Ganguly took over the [...]]]></description>
			<content:encoded><![CDATA[<p>Sorry for the long delay. India has finally made the top spot in ICC test rankings. Yippie!! This feat IMHO isn&#8217;t just a fluke. India has been playing great cricket for last few years. The fielding has improved and the players are more professional. I think the ground work started when Ganguly took over the captaincy. And this would have been achieved a lot sooner but for Greg Chappell. Anyhow, we are finally there.</p>
<p>The thing that worries me is the bowling. All the fast bowlers we have except for Zaheer Khan are utterly inconsistent. They bowl wonderfully one day and the next day, they do everything wrong. I think Venkatesh Prasad should be brought back as bowling coach. Its also good that Ishant Sharma has been dropped. Hopefully he will come back into the team as a much better bowler.</p>
<p>As regards to batting, as long as we have Sehwag, Gambhir, Yuvraaj and Dhoni, we needn&#8217;t worry too much. But I guess the selectors will have to scratch their heads when Sachin, Dravid and Laxman retires.</p>
<p>Digressing from the subject though, I hope to write a lot more posts on topics like India, Bengal, Atheism, religion, Communism etc. stay Tuned for more&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://sameek.com/2009/12/08/number-1-in-tests.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>In Kolkata!!</title>
		<link>http://sameek.com/2009/09/23/in-kolkata.html</link>
		<comments>http://sameek.com/2009/09/23/in-kolkata.html#comments</comments>
		<pubDate>Wed, 23 Sep 2009 14:53:57 +0000</pubDate>
		<dc:creator>Sameek</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sameek.com/?p=56</guid>
		<description><![CDATA[Its been a few days since I reached here. And boy, It feels so good. Sometimes its difficult to believe that I missed the heat, humidity, insane crowds, bad roads and incessant rain but its true. As a true calcuttan, I am proud to say that I missed Kolkata more than I realised. Even though [...]]]></description>
			<content:encoded><![CDATA[<p>Its been a few days since I reached here. And boy, It feels so good. Sometimes its difficult to believe that I missed the heat, humidity, insane crowds, bad roads and incessant rain but its true. As a true calcuttan, I am proud to say that I missed Kolkata more than I realised. Even though I was over the last year had my share of dissapointments with the city of joy [Ironic]. I am willing to overlook all these things as Kolkata will always welcome me with open arms no matter what. Whenever I talk to people about Kolkata, they always try to bring out the flaws. And even though I want them to go away, I have to be true and admit that Kolkata will not be kolkata if all the things with which it annoys everyone goes away. But enough negativity. All people are excited about Pujo. So am I. Wishing everone a SHUBHO SHARODIYA!</p>
<p>And for all the people inclined to read a little more, <a href="http://www.dmanewsdesk.com/Vir_Sanghvi-2-1-172.html">here</a> is something interesting.</p>
]]></content:encoded>
			<wfw:commentRss>http://sameek.com/2009/09/23/in-kolkata.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kaminey! Really Slick!</title>
		<link>http://sameek.com/2009/08/17/kaminey-really-slick.html</link>
		<comments>http://sameek.com/2009/08/17/kaminey-really-slick.html#comments</comments>
		<pubDate>Sun, 16 Aug 2009 21:19:05 +0000</pubDate>
		<dc:creator>Sameek</dc:creator>
				<category><![CDATA[Entertainment]]></category>
		<category><![CDATA[Movies]]></category>

		<guid isPermaLink="false">http://sameek.com/?p=52</guid>
		<description><![CDATA[Today I watched KAMINEY. My first impression was&#8230;&#8221;Wow! This is pretty original.&#8221; The story was pretty good. The acting was good. But i guess shahid kapoor can emulate a little less of SRK. Priyanka was good as usual. The anti-social elements were portrayed in a near hollywood style. My favorite part would be the abundant [...]]]></description>
			<content:encoded><![CDATA[<p>Today I watched KAMINEY. My first impression was&#8230;&#8221;Wow! This is pretty original.&#8221; The story was pretty good. The acting was good. But i guess shahid kapoor can emulate a little less of SRK. Priyanka was good as usual. The anti-social elements were portrayed in a near hollywood style. My favorite part would be the abundant use of regional languages. Especially bengali. No babumoshai and such crap. Real contemporary dialogues. I guess same goes true fot the Marathi as well. The only complains I have is the excessive use of gun-violence which at some points seemed unnecessary and the running time. The film would have been better if it would have been wrapped in 100 minutes. All in all, a good movie. A step in the right direction. And a pretty big one at that.</p>
]]></content:encoded>
			<wfw:commentRss>http://sameek.com/2009/08/17/kaminey-really-slick.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>wifi &#8211; its bad for ya!</title>
		<link>http://sameek.com/2009/05/15/wifi-its-bad-for-ya.html</link>
		<comments>http://sameek.com/2009/05/15/wifi-its-bad-for-ya.html#comments</comments>
		<pubDate>Fri, 15 May 2009 06:53:54 +0000</pubDate>
		<dc:creator>Sameek</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[edimax]]></category>
		<category><![CDATA[home network]]></category>
		<category><![CDATA[wifi]]></category>

		<guid isPermaLink="false">http://sameek.com/?p=46</guid>
		<description><![CDATA[Readers be warned. This is not an article about the health hazards of wifi. No, I dont know or care about the lasting effects of long term exposure to 2.4 GHz readio waves. So why am i writing this entry? Well I almost became institutionalized because of it. Let me start from the beginning. Last [...]]]></description>
			<content:encoded><![CDATA[<p>Readers be warned. This is not an article about the health hazards of wifi. No, I dont know or care about the lasting effects of long term exposure to 2.4 GHz readio waves. So why am i writing this entry? Well I almost became institutionalized because of it. Let me start from the beginning.</p>
<p>Last week I bought a wifi router (<a href="http://www.edimax.com" target="_blank">EDIMAX</a>). it was cheaper than the <a href="http://www.dlink.com/">D-Link</a> one so i thought what the hell&#8230;everybody is getting D-Link. Plus the one i bought was white in color and will match my motif. What a gay thing to do!I will soon regret it.</p>
<p>I came home. Connected it and within 10 mins had setup my home network. Yippie! Everything thing was working fine. Videos from <a href="http://www.youtube.com" target="_blank">youtube </a>was streaming properly. Downloaded a file about 17 Mb, which took normal time. Then started browsing. I noticed that it was taking a long time to render the pages. Especially those pages which are heavy on the pics. Like the one on the menus etc. Why was this happening? Tried tweaking the settings. changed channel. nothing worked. This kept tormenting me for a week. Like something inside my brain trying to gnaw the inside of my skull. I couldn&#8217;t take it anymore. I tried everything. The only option that was left was&#8230;.that&#8217;s right&#8230;a &#8220;<a href="http://en.wikipedia.org/wiki/Firmware" target="_blank">Firmware Upgrade</a>&#8220;. However I had put it off since now a days there are a lot of power cuts happening in my area and if the power goes off while the firmware upgrade is happening, I am in deep deep trouble. But now desperation had set in. I was 2 minutes away from taking a stick and pummeling the damn thing.</p>
<p>So I said my prayers&#8230;.first time in 6 months. And upgraded it in the middle of the night. Viola! It worked. And everything was back to normal in little world of <a href="http://sameek.com" target="_self">Sameek</a>. And everybody lived happily ever after.</p>
<p>THE END&#8230;Or is it?</p>
]]></content:encoded>
			<wfw:commentRss>http://sameek.com/2009/05/15/wifi-its-bad-for-ya.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The Straight Dope!</title>
		<link>http://sameek.com/2009/04/24/the-straight-dope.html</link>
		<comments>http://sameek.com/2009/04/24/the-straight-dope.html#comments</comments>
		<pubDate>Fri, 24 Apr 2009 05:27:27 +0000</pubDate>
		<dc:creator>Sameek</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sameek.com/?p=43</guid>
		<description><![CDATA[Found a great site. The Straight Dope. Its great and addictive. Can&#8217;t believe some of the posts.]]></description>
			<content:encoded><![CDATA[<p>Found a great site. <a href="http://www.straightdope.com/" target="_blank">The Straight Dope</a>. Its great and addictive. Can&#8217;t believe some of the posts.</p>
]]></content:encoded>
			<wfw:commentRss>http://sameek.com/2009/04/24/the-straight-dope.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#8220;Babumoshai&#8221; and Regional Bias!!!</title>
		<link>http://sameek.com/2009/04/17/babumoshai-and-regional-bias.html</link>
		<comments>http://sameek.com/2009/04/17/babumoshai-and-regional-bias.html#comments</comments>
		<pubDate>Fri, 17 Apr 2009 05:54:21 +0000</pubDate>
		<dc:creator>Sameek</dc:creator>
				<category><![CDATA[Entertainment]]></category>
		<category><![CDATA[Movies]]></category>
		<category><![CDATA[My Thoughts]]></category>

		<guid isPermaLink="false">http://sameek.com/?p=41</guid>
		<description><![CDATA[I recently realised that I hate the picture &#8220;Anand&#8221; (the one with Rajesh Khanna and Amitabh Bachchan). Why Sameek? It was a great picture and  one of the landmark films of India. Well, I don&#8217;t care. The hell with stupid &#8220;Anand&#8221;! Ever since that film, people from all around India cant seem to remember any [...]]]></description>
			<content:encoded><![CDATA[<p>I recently realised that I hate the picture &#8220;Anand&#8221; (the one with Rajesh Khanna and Amitabh Bachchan). Why Sameek? It was a great picture and  one of the landmark films of India. Well, I don&#8217;t care. The hell with stupid &#8220;Anand&#8221;! Ever since that film, people from all around India cant seem to remember any Bengali&#8217;s name! So always call them &#8220;BABUMOSHAI&#8221;. And it is really pissing me off. I have a name morons! It just goes to show the subtle regional bias that people possess. Ow..U are a bengali?? How can you guyz vote for those Commies? Like I ever did that? Its annoying. Stop it. &#8220;Haha! Lets make fun of the Bengali&#8221;, &#8220;Hey babumoshai! Did you have any rosogollas?&#8221; Maa Kaali ki kasam, next time I hear something like that I will kick that person in the nutsack. I won&#8217;t take any more crap from you all. So Beat it!!</p>
]]></content:encoded>
			<wfw:commentRss>http://sameek.com/2009/04/17/babumoshai-and-regional-bias.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

