Skip to main content

Commuting Hazards in Chennai


Hi guys, its been a while since i blogged, may be my exams took a toll on my ‘extra-activites’ and I’ve grown to forget the urge to blog in the g that has been made by the dreadful academics. (Yup, College sucks!!!)
Pickin Pockets
Well, commuting hazards as such include, lots of mis-givings by the people involved and some intentional criminals too, the reason for me being interested in commuting hazards as of now is because of the recent loss that incurred to me. let me just put it this way, my mobile phone got pick-pocketed during a bus travel. (I know it sucks!!!)

Well losing a mobile phone can happen anywhere, any place no one can predict or safeguard to an extent, but safety measures are of course being taken.

Stuff-lifting in buses and stealing valuables in buses and trains are most common, the most untraceable of all places in Tamilnadu is Chennai, most of you would agree, that a city of such commuting magnitude tends to have these glitches and you can't complain and get your phone back.
The Accidents
Other major commuting hazard being accidents are most dangerous, I witnessed two road accidents apart from my so-called accident, so give or take this is a bad day for three people including me, and hundreds of others whose problems i'm not aware of. Starting from a few scratches to a skull crack can be as common as a pick-pocket these days. The only pick-pocketing had happened to me but i saw three accidents today on the road, so i should probably say its more common than the pick-pocketing.
The dreaded step on the foot
The rarest of commuting hazard being getting stepped on your foot, it can range from merely irritating to horrendously excruciating. Its also the most reasons for a hustle in a public transport and it can be taken from being silly to being a excellent diversion for a pick-pocket.

This is just a gist of what is happening in the traveling space of Chennai metro, hope you guys, whether you live in Chennai or just traveling through it, never have to encounter these incidents either in first person or in third person's view.

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