Skip to main content

எங்கோ படித்தது, மிகவும் பிடித்தது:

எங்கோ படித்தது, மிகவும் பிடித்தது:


1. Regular naps prevent old age... especially if you take them while driving.

2. Having one child makes you a parent; having two makes you a referee.

3. Marriage is a relationship in which one person is always right and the other is the husband!
4. They said we should all pay our tax with a smile. I tried- but they wanted cash.

5. A child's greatest period of growth is the month after you've purchased new school uniforms..

6. Don't feel bad. A lot of people have no talent.

7. Don't marry the person you want to live with, marry the one you cannot live without... but whatever you do, you'll regret it later.

8. You can't buy love. . But you pay heavily for it.

9. True friends stab you in the front.

10. Forgiveness is giving up my right to hate you for hurting me.

11. Bad officials are elected by good citizens who do not vote.

12. Laziness is nothing more than the habit of resting before you get tired.

13. My wife and I always compromise. I admit I'm wrong and she agrees with me.

14. Those who can't laugh at themselves leave the job to others.

15. Ladies first. Pretty ladies sooner.

16. It doesn't matter how often a married man changes his job, he still ends up with the same boss.

17.. They call our language the mother tongue because the father seldom gets to speak.

18. Saving is the best thing. Especially when your parents have done it for you.

19. Wise men talk because they have something to say; fools talk because they have to say something.

20. Real friends are the ones who survive transitions between address books...

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