Skip to main content

8 Things you'll understand only if you have a girlfriend

8 Things you'll understand only if you have a girlfriend

Girlfriend-Boyfriend
Boyfriend-Girlfriend--These words are common nowadays and points to a relationship between a boy and a girl.Sometimes it is love and sometimes it is infatuation.But whatever it is, there are some points which will be understood only by those who have a girlfriend.Lets check the list and see if happens to everyone or not...



  1. Get used to Arguments
    The most often thing in a relationship is an unsignificant argument.Sometimes we even forget what we were quarreling over.And mostly times the reason behind the arguement is the XY partner.And when boys get the position in their hand then suddenly argument topic gets changed without any signal.So the outcome of this point is get used to these arguments.

  2. Learn to say SORRY
    So if you can't do anything regarding the arguements then just learn to say sorry otherwise there will be a situation when you can neither swallow the piece nor spit it out.Your XX partner will not talk to you and if you tried to ignore her temper then she'll remember it back to you.So learn to say sorry een if it is not your fault.

  3. Can't hide whatsapp last seen
    This is a miserable scenario when you chat with your friends on whatsapp and when your XX partner gets to know about your last seen she'll accuse you of talking to another girl and then you'll have to provide her evidences of your innocence.And if you tried to hide your last seen then you are totally gone..

  4. Have to share all of your passwords
    Here is another security issue.You have to share your facebook password with your XX partner so that she can peek through your account.And you can't do anything about it because if you do so then you'll be claimed as 'chor ki daadhi me tinka'

  5. Have to boast off about your partner
    This is terrible.When your friends ask you about your XX partner about her doubting nature then you have to say "NO..no..She's is different from other girls."Lol...

  6. Can't adore other girls
    You have to admit it.Even if you don't have indecent feelings for other girls, even if you are one-girl man still you can't adore other girls in front of your partner.There will a bang on and you'll be finished(for sometime only)

  7. Have to spend all your savings
    Well it doesn't apply to every couple but its often that you'll have to spend all your savings on your partner to make your meeting a memorable one.

  8. No time for friends
    It is said that being in love is a full-time job.If you are online on social media then you'll have to send message to your girl, And also you'll have minimal time for your female friends and less time for your bros.You won't even be able to justify your priorities.




Don't know what to conclude about the points.Just let it go as it is going and keep your girl happy because she is the only one after your family who is worth more important.Have fun....

Comments

Popular posts from this blog

Image Search Engine Using Python

Images provide a lot more information than audio or text. Image processing is the prime field of research for robotics as well as search engines. In this article we will explore the concept of finding similarity between digital images using python. Then we will use our program to find top 10 search results inside a dataset of images for a given picture. It won't be as good as google's search engine because of the technique we will be using to find similarity between images. But what we are going to make will be pretty cool. So lets start. Setting up the Environment Our Algorithm How the code looks Lets build the GUI Additional Techniques Setting up the Environment The code we are going to write requires a few tools which we need to install first. I will try to be as precise as i can and if you get stuck into installing some tool then you can drop a comment below and i will help you sort out the problem. So here are the tools and the steps to install

Understanding Python Decorators

If you have ever wondered what those @something mean above a python function or method then you are going to have your answers now. This @something line of code is actually called a decorator. I have red from various articles about them but some of them were not able to clarify the concept of a decorator and what we can achieve with them. So in this post we'll learn a lot about python decorators. Here is a list of topics we'll be covering. What is python decorator Understanding the concept Multiple decorators on same function class method decorator Where can we use decorators What is python decorator A python decorator is nothing but a function which accepts your given function as a parameter and returns a replacement function. So its like something this def decorator(your_func): def replacement(your_func_args): #do some other work return replacement @decorator your_func(your_func_args): #your_func code Now when your_func gets called then

Cordova viewport problem solved

Include the viewport settings in Cordova If you are facing the auto zooming problem of cordova then go read on the full article. Cordova actually ignores the viewport meta tag which causes the pixel density problem. So we need to tell cordova that viewport tag is equally important as other tags. To do this, we need to add some code to a file which is specify in the article. Corodva messes with pixels If you are using the latest cordova version or creating the cordova app for latest android versions then you may have faced the zoom malfunctioning.I also faced it when creating an app. Many of you may have already searched the web and found the answer of changing the meta tag attributes to get it working. But adding target-densitydpi=medium-dpi does not solve the problem for latest android versions. It may work for gingerbread but not for kitkat and others. So the final solution which i found was one of the stackexchange answer but rarely found. So i am gonna two things here, i