Skip to main content

Messing with your heads in facebook


I saw this post in facebook quoting the prices of petrol in different countries and our country’s as well. They went on to say that the price’s highest controlling factor was various taxes that were imposed on it and the government is feeding off it.


I’m sharing the same post below.







I said to myself what ever happened to responsible sharing, I mean you can’t be that dumb and believe that petrol prices are that low??!! Or can you…?


I went to the trouble of making this small post, I collected information; I have the links to share them and prove that the prices are not as quoted. They never were and I would not go on to blame a government without proof or necessary.


Bangladesh

81.00 BDT            =             52.0077 INR 
Pakistan

106.72 PKR          =             60.6099 INR
Cuba:

1.73 USD              =             84.7527 INR
The currency I could get was in USD as it was a US news report. Interesting fact is that the average Cuban monthly salary is USD 20




Burma

126.80 MMK = 969.11 INR




Afganistan

92.00 AFN            =             93.2757 INR




I wouldn’t know how the government could reduce petrol costs, I wouldn’t blame anyone till I know who is affecting the prices.



There is a thirukural which I could quote and so little of you could understand, but I am still quoting it.





எப்பொருள் யார்யார்வாய்க் கேட்பினும் அப்பொருள்
மெய்ப்பொருள் காண்ப தறிவு.





Which means:




Whenever you hear something from anyone, understanding the true meaning and the truth of it is called being smart.




More abstract and actual translation would be:


Knowledge is truth of things to find In every case of every kind.






Grow up People, stop spamming sites and post actual information or post deliberate jokes. Don't mess with the people who would actually believe the false information you post, who happen to be the majority.

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