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

Installing Ralink 3090 wifi driver

I installed Kubuntu 10.10 on my new laptop, my laptop is Compaq CQ62- 308AX. It has Ralink 3090 wifi, which is not automatically detected by Kubuntu. Even restricted driver manager does not show any option for this device. So I downloaded the driver from Ralink site (http://www.ralinktech.com/support.php?s=2).  It is in the source format. I thought I might have to patch the kernel source. I went through the readme file and I found that I don’t have to compile kernel ( yippee an hr saved). Only device driver source is needed to be compile. These days things are much more simple. So I compiled the driver by running command “make” and installed it by “make install”.  It has compiled other ralink wifi modules along with 3090 module. After installation (using ‘make install’)  reboot the machine, reboot is not necessary in Linux after installing driver.  After reboot it loaded incorrect  rt2086 module. So I tried manually unloading and loading module using insmode...

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); }

Ideas - Better interface for yast services module

Here I'm posting an Idea to improve the interface to services module of Yast. Yast is the control panel like application in OpenSuse Linux. Yast is superb piece of software, I would say it is one of the best control panel among all OS available. The current services configuration module is not very user friendly, even simple mode is very confusion for the first time users. Other distributions have much better interface. We can borrow few things from other distros. Ubuntu services manager (USM) - The interface is too simple, does not show service running status. System-config-service (SCS) - The interface is user friendly, separate tabs for background services and on demand service, large area for description and status. Windows - Shows service status in list, option for delay start of services. I think we take few things each of theme. We can use USM interface for simple mode and SCS for advanced mode. Yast is a superb control panel application but not cool, now we should mak...