Skip to main content

As today sucks, so will tomorrow


My life in the past couple of months has been so hectic that I might be the having a breakdown, atleast I’m hoping for one to relieve me from all this. First there’s the regular classes for which I have to spend the entire day in college doing absolutely nothing, for the weekdays without an exception. The classes are a total waste of time and the staffs are not even considerate towards our feelings and they just torture us into apathy. Then there’s the useless class for TCS placed students, the classes are worthless as it is and what’s more? They make us sit through almost every class demanding 100% attendance and again the professors have no clue as to how to go about guiding the students to ease the process of shifting from “campus to corporate”. They just use their old methods and drive us crazy with petty things like writing record notebooks rather than concentrating on the actual programming concepts and the different approach that the TCS guys prescribe.
Finally after all this hypocritical bullshit is over, I’ve a good time tending to guys who have problems in their projects, helping as much as possible for me. Then my week gets really great when the weekend comes, no I don’t spend my weekends in Malibu but I at-least have a pro-active session for the TCS-ION internship. I really dig the corporate style towards giving solutions and it’s really helping solve my issues and doubts regarding my survival in such a environment. I just hate crowds and never was good with people at once. But as it turns out I too can work in such an environment among peers and bosses. All I have to do is to shine and the glitter will come and stick with.

I’m really looking forward to be in a city, in a civilized place, where drivers empathize with other drivers and follow road rules. Where people are polite until you get to know them (the acquaintances are never that long-standing). Where people will do anything get what you’re saying when you’re taking about Taylor swift’s new album or the new movie starring George Clooney. Where I could actually watch a English or a English 3-d movie in English and actual 3D in the theatres. Well, I am concerned about active life-style filled with traffic jams, pollution (smoke, noise and otherwise) and the long travels for just about anything and never getting to any place at correct time for the first few months because I cannot account for traffic jams, train/bus timings and the number of people boarding it. What I’m really worried about is the fact that I will not be able to save a penny in a city like Chennai with my puny sum as a salary. I dunno how I’m gonna manage. But I sure am hoping to get out and get going…

Ciao,
Alan Neo.

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