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

Hash Natural Join

To perform hash join, Oracle follows these steps: 1.      Oracle chooses the smallest of two tables as the hash table (otherwise called as driving table). Oracle built the hash table in RAM after applying the hash function on the joining column(s) of the driving table. 2.      Oracle chooses the other [big] table as the probe table (otherwise called as driven table or probing table). It traverse through all the records of this probe table, applies the same hash function on the joining column(s) [column(s) used to join these two tables] and will hit the corresponding entry in the hash table. 3.      Oracle returns the output if a record from driving table is already present in the same hash key, else no record will be returned. It may look like Nested loop join & Hash join have the same architecture since both these have the concept of driving & driven tables but they have entirely different design if you closely look a...

External Table

External Table is the another type of table which is supported by Oracle apart from IOT and Cluster table. External tables allow Oracle to query data that is stored outside the database in flat files. The ORACLE_LOADER (an in-built driver provided by Oracle itself) can be used to access any data stored in any format that can be loaded by invoking SQL*Loader (an in-built utility provided by Oracle itself to load the data from the flat file into the data table). External tables enable us to read flat-files (stored on the O/S) using SQL. They have been introduced in Oracle 9i as an alternative to SQL*Loader. External tables are essentially stored SQL*Loader control files, but because they are defined as tables, we can access our flat-file data using all available read-only SQL and PL/SQL operations. We can also read flat-files in parallel and join files to other files or tables, views and so on. In this example, the data file (emp.txt) is placed in the location, “C:\test”. Then you ...

Bitmap index

Bitmap index is one of the index types that is supported by oracle. Unlike B*tree index, this is very compressed index. It means if I create a bitmap index on a column, then the generated index table will be smaller when compared the index table which is generated by the binary index on the same column. The reason is, in bitmap index, ROWIDs won’t be stored in the index table, instead index values will be mapped against bitmaps. Bitmap is nothing but it stores either of this values, 1(Match) or 0(No Match). For each distinct values in the column, a separate index record will be created. Unlike b*tree index, bitmap index can accept NULL and it creates separate index entry for this. Bitmap index will work better if number of distinct values are relatively less when compared to the total number of records. Why is it referred as “relatively less”? this index will work fine if table of 1,000,000,000 records contains 5000 distinct values and if table of 1,000 records contains 5 distinct va...