Skip to main content

Why premerital romance is wrong

It said in all religions that man and women should not get
close(intimate or have affairs) before marriage. If there is any rule
has been made specially in religion, there must be some very strong
reasons abt that .Let me tell you why having affair is wrong,

  • most of us believes that first love is true love, if u fall in
    love with your marriage partner after marriage, than u already got ur
    true love.
  • Love is most precious thing save it. Don't vest it here and there.
  • Most of people's heart is broken in love. Their life get
    derailed, they become hopeless, some go the wrong and some even end
    their life. After marriage this chance is very low.
  • If you already know ur marriage partner before marriage than there is very little surprises left abt each other after marriage.
  • people in affairs thinks that their partner will accept as you are now, but a lot things changed after marriage, you have to change ur self, this is where the problem starts.
  • People vest a lot of time in dating- going to park, spending time there, returning. If somebody interrupts - mess up of beautiful time, also fear or hardliners. After marriage u don't need to go anywhere, u can spend as much time as like romancing.
  • hind-> ladki ke alwa aur bhi bohot logon ko patana padta hai, like father, brother. ladki ke 50 deewano (might be more depends on gender ratio of ur region), unse bhi to bachana padta hai.
these few reasons why premarital romance is wrong.

Comments

Popular posts from this blog

opensuse repair is awesome

I installed OpenSuse 11.1 on my machine. I have done kde4/kde3/gnome installation. It takes about 40-45 minutes. After instaltion I installed Nvidia driver, nvidia driver has installed new kernel (containing trace in name). When I changed boot order to make trace default kernel, grub is installed on root partition than MBR, so my system become unbootable. I got only 2 days of holidays. I come to know abt this problem after I returned to my work city (Indore) from Home (Khandwa). So I could not fix the problem. So I have to fix it via phone. My brother booted the system with Opensuse 11.1 dvd. My brother is not very technical person but he is advace-level PC user. We have never used recover/rescue installed system option. We selected automated recovery mode. It first checks all partitions and packages, all of them found is good state, setup found error boot loader configuration, we loaded boot loader configuration from disk and found that grub is installed on root partition instead of M...

Adding additional class to a button in drupal

Recently we were building a multi-domain site, we are using same theme for all sites but we want to have different colors for buttons for each domain. We achieved this using my overriding theme_button in template.php of theme, here is the snippet. /** * Overwrite theme_button() * @file template.php */ function mytheme_button($variables) { $element = $variables['element']; // Add some extra conditions to make sure we're only adding // the classto the right submit button Now add our custom class if (isset($element['#attributes'])) { $element['#attributes']['class'] [] = 'button'; $domain = domain_get_domain(); $element['#attributes']['class'] [] = $domain['machine_name']; } $variables['element'] = $element; return theme_button($variables); }

OpenSuse 12.2 : Faster, better

After about 2 months delay from initial schedule, OpenSuse 12.2 finally arrived. During recent time, contribution to OpenSuse has increase a lot, so it is taking time review and accept/reject those changes, this is main cause of delay. OpenSuse is working on a mechanism to handle increased traffic. From the release announcement “ The latest release of the world’s most powerful and flexible Linux Distribution brings you speed-ups across the board with a faster storage layer in Linux 3.4 and accelerated functions in glibc and Qt, giving a more fluid and responsive desktop. The infrastructure below openSUSE has evolved, bringing in mature new technologies like GRUB2 and Plymouth and the first steps in the direction of a revised and simplified UNIX file system hierarchy. Users will also notice the added polish to existing features bringing an improved user experience all over. The novel Btrfs file system comes with improved error handling and recovery tools, GNOME 3.4, developing rapidly,...