Monday 29 September 2014

New Exam Pattern for UGC NET for Dec 2014


After UGC's failure, CBSE to conduct NET

NEW DELHI: Central Board of Secondary Education, the country's largest exam conducting body, is all set to add another test to its bouquet, the National Eligibility Test. The inclusion of the test from this year will make the board the biggest exam conducting body, with the number of CBSE candidates set to cross 65 lakh in a year.

After failing to conduct the test without hiccups, the University Grants Commission, with the HRD ministry's consent, has asked the CBSE to conduct the test. The decision was taken at the full commission meeting on Tuesday with near unanimity. The NET is conducted twice a year for grant of junior research fellowship and eligibility for assistant professor in institutions of higher learning.

Thursday 18 September 2014

Add an image to Google


To include a picture in Google search results, the first step is to add your image to a website along with a descriptive text for your image. While you can’t directly upload images into search results, searchable images that are posted on a website can be added to our search results.

                              
Step for upload your Image
  • If you have a website then upload your image their 

Monday 15 September 2014

september 1752 calendar missing days reason

In September 1752 the Julian calendar was replaced with the Gregorian calendar in Great Britain and its American colonies. The Julian calendar was 11 days behind the Gregorian calendar, so 14 September got to follow 2 September on the day of the change. The result was that between 3 and 13 September, absolutely nothing happened!

Friday 12 September 2014

How to create automatic password using php


Password is widely used in computer as a security mechanism so we must make a password in such a manner which cannot be   guessable by any one. Mostly peoples make password pattern related to their life i.e. date of birth,city name,address or something like that which can be guess easily. So we must stop this practice, A strong password may be difficult to guess.
A strong password comprises special character, numeric, small and capital case character combination that restricts hacker to guess it. So I am representing coding that generate password automatically in strong form. You can use my coding if you want to generate password automatically.
<?php
                $msg="";
                 function makeRandomString ($length=8)
              {
                  $chars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQ
                  RSTUVWXYZ0123456789!%,-:;@_{}~";
                  for ($i = 0, $makepass = '', $len = strlen($chars); $i < $length;
                  $i++) $makepass .= $chars[mt_rand(0, $len-1)];
                  return $makepass;
       }
                if(isset($_POST['pass']))
                                $msg=makeRandomString(10);
?>
<html>
<head>
<title>Untitled Document</title>
</head>
<body>
                <form action="<?php echo $_SERVER['PHP_SELF']?>" method="post" >
                <input type="submit" value="Get password" name="pass" />
        <h1><?php echo $msg;?></h1>
    </form>
</body>

</html>