Skip to main content

Try these...

One of the touching songs that I’ve heard. The lyrics are just awesome. Don’t take my word for it, hear it yourself!!

Shape of my heart – Backstreet Boys – Black and Blue

Hmm, yeah, yeah
Baby, - please try - to forgive me
Stay here, - don't put out – the - glow
Hole me now, don't bother - if every minute it makes me weaker
You can - save me from the man that I've - become - Oh Yeah

Chorus:
Lookin' back on the things I've done
I was tryin' to be someone
I played my part, kept you in the dark
Now let me show you the shape of my heart

Sadness is beautiful, loneliness - that's tragical
So help me I can't win this war, oh no
Touch me now don't bother if every second it makes me weaker
You can save me from the man I've become

:Chorus:

I'm here with my confession
Got nothing to hide no more
I don't know where to start
But to show you the shape of my heart...

I'm lookin' back on the things I've done
I never wanna play the same old part
I'll keep you in the dark
Now let me show you the shape of my heart

Also try this in the same album; I’m sure (If you’re into Blues) you’ll certainly like this too.

More than That:

I can see that you’ve been crying
You can’t hide it with a lie
What’s the use in you denying
That what you have is wrong
I heard him promise you forever
But forever’s come and gone
Baby, he would say whatever
It takes to keep you blind
To the truth between the lines, oh!

CHORUS

I will love you more than that
I won’t say the words
Then take them back
Don’t give loneliness a chance
Baby listen to me when I say
I will love you more than that

Baby, you deserve much better
What’s the use in holding on
Don’t you see it’s now or never
‘Cause I just can’t be friends
Baby knowing in the end, that..

CHORUS - repeat

There’s not a day that passes by
I don’t wonder why we haven’t tried
It’s not too late to change your mind
So take my hand, don’t say goodbye
CHORUS - repeat

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