2011
01.22

How to install g++ in Centos

During development on CentOS, g++ comes in very handy to compile and build various softwares and appears that on CentOS 4 and CentOS 5 “g++” does not gets installed/enabled when you install gcc.

The command “yum install g++”, does not appear to work on CentOS 4 or CentOS, same way “yum install compat-g++” will fail. The main reason is that on CentOS the packages are packed with “gcc-c++”.

To make use of “g++” on CentOS, you may be able to get it working by installing with the following commands.

yum install gcc-c++

and for additional compat support

yum install gcc-c++ compat-gcc-32 compat-gcc-32-c++

2010
12.20

Indian Air Force (IAF) today, signed a Memorandum of Understanding (MoU) with Indira Gandhi National Open University (IGNOU), launching ‘Akashdeep’– a project registering existing airmen training institutes as Community Colleges enabling all serving airmen to obtain a Bachelor’s degree within 8-13 years of their service.

2010
03.07

To gain more exposure, the best option for any website operator/owner/designer is to submit it to the major, or i would say as many as possible, search engines and search directories on the web. I got a small list compiled with a link to the respective page of each website which accepts submissions for inclusion into their directory.

2009
05.29

Last time i visited my punjab and saw the real atmosphere how MLA and MP really avoid general public if they see no benefit unless its time nearing for elections

2009
04.25

There are often times when system administrator or developers want to quickly send out a test email from a Linux server or a requirement to generate email alerts from the scripts performing some housekeeping and monitoring.

2009
03.22

Unfortunately still there are people around who get fooled more than twice due to their ignorance or unawareness and get trapped into these schemes of mailers. I am going to explain just 3 points

2009
02.20

Gurminder Guri, became famous overnight with the release of his blast debut album “Dil De Ni Mare” which giving a sensation in punjabi music industry. Harjit Nagra is the producer of the album and presentation is by Parminder Panaich. The number “Lallu Karey Kawalliyan” is been on the top of the punjabi hits charts since the album release and got a motivational reviews from critics.

2009
02.16

The punjabi film Jag Jeondeyan De Mele starring Harbhajan Mann is scheduled out this week and is expected to be a probable punjabi hit movie. “Fortunate are those who are able to live the rest of their life with whom they first fall in love with“, is the theme of the movie.

2009
01.07

Yuvraj Singh, India’s most sought after cricketer is joining hands with Reebok, the world’s leading sports brand unveiling his new personalized bat.

2009
01.07

To get random numbers in Javascript, the most commonly method used is random() from the Math object. The Math object of JavaScript returns a floatingpoint number between 0.0 and 1.0. So really to get a random number between the whole numbers simply applying random() is not sufficient and requires few other arithmetic calculations.