Skip to main content

Happy New Year 2010

Copy this onto notepad, press ctrl + H, press 6 in find box and underscore(_) in replace box and click replace all.

666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666
666996666699669966999999996699666669966666669966666699669999999966996666996666666666666696666666666666666666666
666996666699669966999999996699666669966666666996666996669999999966996666996666666666666999666666666666666666666
666996666699669966996666666699666669966666666699669966669966669966996666996666666666669969966666666666666666666
666996696699669966999999996699999999966666666669999666669966669966996666996666666666699666996666666666666666666
666996999699669966999999996699999999966666666666996666669966669966996666996666666666999999999666666666666666666
666999969999669966666666996699666669966666666666996666669966669966996666996666666669999999999966666666666666666
666999666999669966999999996699666669966666666666996666669999999966996666996666666699666666666996666666666666666
666996666699669966999999996699666669966666666666996666669999999966999999996666666996666666666699666666666666666
666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666
666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666
666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666
669966666996666666669666666666999999996699999999669966666699666666669966666996699999999669966666996666666666666
669966666996666666699966666666999999996699999999666996666996666666669996666996699999999669966666996666666666666
669966666996666666996996666666996666996699666699666699669966666666669999666996699666666669966666996666666666666
669999999996666669966699666666999999996699999999666669999666666666669969966996699999999669966966996666666666666
669999999996666699999999966666999999996699999999666666996666666666669966996996699999999669969996996666666666666
669966666996666999999999996666999666666699666666666666996666666666669966699996699666666669999699996666666666666
669966666996669966666666699666996666666699666666666666996666666666669966669996699999999669996669996666666666666
669966666996699666666666669966996666666699666666666666996666666666669966666996699999999669966666996666666666666
666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666
666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666
666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666
666996666669966999999996666666669666666666999999996666666699999996699999999666999666699999999666666666666666666
666699666699666999999996666666699966666666999999996666666699999999699666699666699666699666699666666666666666666
666669966996666996666666666666996996666666996666996666666666666699699966699666699666699966699666666666666666666
666666999966666999999996666669966699666666999999996666666666666996699696699666699666699696699666666666666666666
666666699666666999999996666699999999966666999999996666666666669966699669699666699666699669699666666666666666666
666666699666666996666666666999999999996666996996666666666666996666699666999666699666699666999666666666666666666
666666699666666999999996669966666666699666996699666666666699999999699666699666699666699666699666666666666666666
666666699666666999999996699666666666669966996666996666666699999999699999999666999966699999999666666666666666666
666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666









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