Skip to main content

Once upon a time

What am I doing? 

There are only four things to do on my to-do list. I looked at my phone. It was worn-out not due to age but due to bad usage. The four things listed in my phone were jeans, belt, shoes and toothpaste. Well, Which place would have all this in a single location? I don't really like to roam and am too lazy for it. I chose to go to a hypermarket which was the nearest and went to it. I had just emptied my pocket completely out of any loose cash. 


As I drove into the parking lot, I realised that I don't even have enough cash to cover the parking charges, tough luck. I'd promised that lady that I'd get change while coming out, only to realise a moment later that I would use my card in the store and would still end up with no cash.. That'll put me in a tough spot. 


Anyways I put it out of my mind and started shopping for the things I need. As I started browsing, my shopping cart just seemed to fill up on its own, it was as if it had a mind of its own, it was unnerving. Then I browsed the sections to return half the stuff that I had picked it earlier, it was exhausting. Finally I was done and I moved to the counter and got out of the shop after some last minute changes to my shopping cart. 


Once I was out I had the no money for parking, one problem that I have to deal with, so I carried the whole package with me to the nearest ATM which was not that near by the way, and drew cash. Then I was running home, on my motorcycle of course!

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