Skip to main content

What am i doing ????

       I spent the first three days of my holidays as recklessly as possible. However I didn’t go out and play, I stayed inside and read a novel, surfed the net, and also poked other guys who had exams after mine. It was sweet. I was planning on learning Java, doing some chores and gear up for the third year of college. Well, till now everything was going according to plan except that they went slower than I thought. I was under the predicament that I could finish this particular book in 6 hours, but it took a zeal of 19 hours which when spitted spanned three days and took most of my chore time, my all other time. All I did was read the goddamn novel and voila I was three days older than I was before.

       Later, when I had finished the novel, I started searching for core components for my design for a robot with interactive speech recognition system which also controls the movement. It was a difficult idea, Involving, Processing of commands, speech recognition software with custom commands and possibly to learn (That is dynamic updating of the database of commands thro storing of new commands), main-metallic frame which has to be custom casted, motors, batteries for running the motors, LCD monochrome display and controller, Speakers, Microphone, a dome coverage for holding face components such as the LCD, speakers and the microphone. Optionally an IR sensor and processor could be used for proper alignment If the robot were to move too much too often.

      The above said stuff would cost me two semester fee together. When in a group the code gets diluted and difficult to ascertain and debug. Since an informal group of unorganized, amateur programmers will be doing the programming, it’ll be difficult to optimize and run the code and also to verify the code we would need to build an simulator which would be possible if NASA is in the neighborhood and impossible otherwise. With all these worries I decided that it won’t work out as a college project besides it has been done before and heck I don’t want to ruin my holiday like some gewy geek. So I ditched the whole idea and went to  a movie. I regretted that later. The movie took what little spirit I got in me. So there I am ruining my impossible-to-ruin holiday and I’m not proud of it 

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