Skip to main content

50 Most Romantic Things To Do With Your Girl Friend

We all know how to tret our girl friends, but do we really follow these thing. Read and jus think about your girl friend, whether we really did that or not. When you did that last time with your girl friend.
  • The sunset together.
  • Whispers to each other.
  • Cook for each other.
  • Walk in the rain.
  • Hold hands.
  • Buy small gifts for each other.
  • Gift Roses.
  • Find out their favorite cologne/perfume and wear every time you're together.
  • Go for a long walk down the beach at midnight.
  • Write poetry for each other.
  • Hugs are the universal medicine.
  • Say I love you, only when you mean it and make sure they know you mean it.
  • Give random gifts of flowers/candy/poetry etc.
  • Tell her that she's the only girl you ever want. Don't lie!
  • Spend every second possible together.
  • Look into each other's eyes.
  • Very lightly push up her chin, look into her eyes, tell her you love her, and kiss her lightly.
  • When in public, only flirt w/ each other.
  • Put love notes in their pockets when they aren't looking.
  • Buy her a ring.
  • Sing to each other.
  • Always hold her around her hips/sides.
  • Take her to dinner and do the dinner for two-deal
  • Spaghetti? (Ever see Lady and the Tramp?)
  • Hold her hand, stare into her eyes, kiss her hand and then put it over your heart.
  • Dance together.
  • I love the way a girl looks right after she's fallen asleep with her head in my lap.
  • Do cute things like write I love you in a note so that they have to look in a mirror to read it.
  • Make excuses to call them every 5 minutes
  • Even if you are really busy doing something, go out of your way to call and say I love you.
  • Call from your vacation spot to tell them you were thinking about them.
  • Remember your dreams and tell her about them.
  • Tell each other your most sacred secrets/fears.
  • Be Prince Charming to her parents.
  • Brush her hair out of her face for her.
  • Hang out with his/her friends.
  • Go to church/pray/ worship together.
  • Take her to see a romantic movie and remember the parts she liked.
  • Learn from each other and don't make the same mistake twice.
  • Describe the joy you feel just to be with him/her.
  • Make sacrifices for each other.
  • Really love each other, or don't stay together.
  • Let there never be a second during any given day that you aren't thinking about them, and make sure they know it.
  • Love yourself before you love anyone else.
  • Learn to say sweet things in foreign languages.
  • Dedicate songs to them on the radio.
  • Fall asleep on the phone with each other.
  • Stand up for them when someone talks trash.
  • Never forget the kiss goodnight and always remember to say,"Sweet dreams."
All girls need such affection from you. 

Comments

Popular posts from this blog

Listener refused the connection due to NetExcepti​on

I was testing some piece of code for calculation of new date on the basis of a given pattern and the specified date. I wrote a method to automate the test cases to generates those patterns and calculate the new date for each date of the specified date of the range of years. Since there were around 1 million pattern test cases are possible, so I want to insert this data in database for any future reference. After creating a pattern I was inserting data of the pattern and the calculation date along with the calculated date. It was working fine. I was prepare to hit the start button now, after testing different patterns individually. I hit the run button and it started its executions, but in the middle, I got this error. java.sql.SQLException: Listener refused the connection with the following error:ORA-12516, TNS:listener could not find available handler with matching protocol stack       at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:4...

Index Fast Full Scan

Index Fast Full Scan is one of the index access methods supported by Oracle. Index Fast Full Scan is otherwise called as Fast Full Index Scan also. Index Fast Full Scan can be imposed by Oracle Optimizer only in the certain scenario. The scenario where this index would be invoked is, Whenever the Oracle SQL optimizer detects that the query is serviceable without touching table rows, Oracle invokes this fast full index scan and quickly reads every block of the index without touching the table itself provided that query doesn’t contain any ORDER BY clause. The definition for this scan is more or less similar to the index full scan but the only difference is that former  will be invoked when ORDER BY clause is not mentioned in the query. It differs from the index full scan in another way where output won’t be in the sorted order since ORDER BY clause is not mentioned. If Oracle detects the query is serviceable without touching the table rows, it means, all the columns mentioned i...

B*TREE non-unique index

In continuation with the last chapter , B*Tree with unique index, here are some thoughts on B*Tree with non unique index. DEFINITION: B*TREE non-unique index is one of the index types that is supported by oracle. If this index is imposed on a column, then all the non-null values don’t need to be unique. It means this index allows NULL value to be stored in the column of the table and all the non-NULL values can be same as well as different too. But all the index values in the index table would be unique. This is achieved by grouping all the ROWIDs of a single index value in a single index record. It means if 3 table records are there for a single value in a column on which this non-unique index is created, then in the index table, you will find only one index record but all these 3 ROWIDS would be mapped. This non-unique index can be created on a single column or more than one column. More than one non-unique index can be created for the same data table. HOW TO VERIFY: How to verif...