Skip to main content

Naruto - I Hate You.......!!!!

This is the second time I tell ya, me hating the leading character of a story yet so in love with the story itself. The first was harry potter of harry potter series, where I hated his guts to the extremes yet I loved the literature, should I say magic so much that I cursed all the way through it. Now again I fell in love with the anime/manga naruto and I hate so much the lead character naruto uzumaki, I hate his guts, he’s repetitive, uses same tricks and makes all his opponents underestimate him by a great deal.


“Datte bayo”, “I’ll become Hokage one day”, “Sasuke, I hate you!”, “Sasuke, why?” this is all naruto says for most of his screen time. Oh sorry I forgot “Ichirakku’s ramen” which by far is the most digestable part of what he says.


Sasuke on the other hand is a fool and a clean slate, he begins and ends with being an avenger, but changes his mind so quickly, he’s drawn towards care and affection then when the affection and bonds reach a certain level, he ditches them and becomes a loner freak who is either controlled by orochimaru or Madara Uchiha.


Sakura is the poor girl, the only sane person with lots of love and reason in the leading three, which makes it interesting. Sakura is cool in her own way, she loves sasuke so much, depends on naruto, then decides not to, but ends up being tormented by the ghosts of both naruto’s promises and sasuke’s heart-break-behaviour.


So much for bitching about things, now for the cool part. Kakashi Hatake.

From Kakashi



He’s by far the strongest shinobi by his mind, he can be killed easily but he can’t be beaten. His appearance remains mystic and so cool with his mask, the sharingan, the scar across his eye, the make-out tactics and he survives with a great deal of respect, talk about missing the Hokage post by  second. Kakashi is super-cool and we expect his face soon, even though many fans have come up with their own imaginationsJ

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...