Skip to main content

Yahoo Answers Galore !!

Few questions from Yahoo Answers! Which got me thinking and I thought about sharing my replies to you guys as well.

1. Are concepts such as patriotism and citizenship reasons why people in the world are so divided?

Patriotism is something inherent to humans; they like the place the live in and fight for it. They talk highly about it, They do all things of stuff to show patriotism, But It’s actually a fictious thing,

Just like countries, states and several other physical borders of the world, They exist because of the difference in the people across the border.

Countries are formed because of differences and countries are not the cause for the differences.

You have similar habits of food, shelter and behavior then most probably you would learn somehow to communicate with people like you, so 'people like you' would have a common language and a common taste for food, climate and other local appearances. They ultimately form a tribe and if large enough form a kingdom and it continues till it is a country.

Like wise thousand other people find their own 'People like them' community and form separate tribes and countries and they defend their country, which implies their belongings, women, children, the place you love, the place you grew up, all the people you like and all the 'people like you'. This is patriotism. This is a primitive feeling but with deep roots.

In today’s' cosmopolitan cities, patriotism is, but a tool to intimidate and insult people from other countries. It has lost its meaning and the very purpose of feeling 'belonged to a particular place'. Patriotism today is a joke but still it has some meaning who work and fight for their countries and its betterment.

2. Would you kill baby Hitler if the situation is that he is destined to grow up to be the monster he was?

(You can't answer "I'll raise him differently" .

So, think about it..take everything into consideration. It would have prevented horrible events like the holocaust but what if it wasn't for Hitler,say,your parents never met? )

My Answer:

No, can't do... can't kill a child no matter what he turns out to be. Even if you're from the future and want to change something, definitely killing won't solve problems. Even Hitler did that. He didn't solve any problems that he thought was endangering Germany at that time; he was a patriot, and a true one at that. But he was fooling enough to believe in Genocide of the Jews.

Killing doesn't solve any problems it'll always bring more, If Hitler was killed at an early stage there were lot of people who supported and believed in the holocaust, those would certainly carry on the Nazi regime without hitler, with a different name, different leader, same world war. Nothing changes except the name of the people who did that. Bad things would always happen.

Comments

Popular posts from this blog

Recently executed queries in SQL Server

To find out what all queries were executed recently in a sql server database, use the following queries Specific database: SELECT deqs.last_execution_time AS [Time], dest.text AS [Query], dest.* FROM sys.dm_exec_query_stats AS deqs CROSS APPLY sys.dm_exec_sql_text(deqs.sql_handle) AS dest WHERE dest.dbid = DB_ID(' msdb ') ORDER BY deqs.last_execution_time DESC   All Databases: SELECT deqs.last_execution_time AS [Time], dest.text AS [Query] FROM sys.dm_exec_query_stats AS deqs CROSS APPLY sys.dm_exec_sql_text(deqs.sql_handle) AS dest ORDER BY deqs.last_execution_time DESC  

Mundasupatti - a fun movie

I saw a movie the other day called Mundasupatti, I’m sure you’ve heard of it if you’re in Tamil Nadu. It was funny, they took a simple superstition which is around and made a fun movie out of it. It was a period film, exploring the 70’s of rural India. I was instantly reminded of swades, a great hindi film which again explores the development gap between cities and villages, it goes a bit further to compare development as seen by an Indian NASA engineer and his old house-hold nanny’s village.  While Swades was a serious film about self empowerment and braking society’s rules about casteism and encouraging education, Mundasupatti is just a funny movie about how stupid, people are.  The movie revolves around a village after which the film is named, the people in the village believe that taking a photograph causes people to get sick and die. The movie did a faithful representation of the rural India, with its proud people and crazy traditions which make no sense. People...

Apache Nutch-Solr Integration

Apache Nutch-Solr Integration   As of this writing, I am using Solr 4.8.0 and Nutch 1.8.0 binaries for the integration. Will catch up to later versions as and when my project requires. We can cover installation and operation of Solr and Nutch separately and then talk about the integration. the version of Nutch that I am using is very closely built with Solr and the integration is very simple. For simplicity sake, Ill stick to Linux environment for both as Nutch does not operate in windows natively. Getting Solr to work 1. All you need to for Solr to work are the binaries. you can get them from their  official page  (version 4.8.0) 2. Extract the  solr-4.8.0.zip  in some location. for this tutorial, lets assume that its in  /home/test/Research/solr 4.8.0/ 3. Open terminal, navigate to  /home/test/Research/solr-4.8.0/example/  and execute the following command to start solr server java -jar start.jar  4...