Friday 26 September 2014

Chat with Friends through ms dos Command Prompt 

1) All you need is your friend's IP Address and your Command Prompt.
2) Open Notepad and write this code as it is.....!
-------------------------------------------------------
@echo off
:A
Cls
echo MESSENGER
set /p n=User:
set /p m=Message:
net send %n% %m%
Pause
Goto A
------------------------------------------------------------
3) Now save this as "Messenger.Bat".
4) Open Command Prompt.
5) Drag this file (.bat file) over to Command Prompt and press Enter.
6) You would then see something like this:

7) Now, type the IP Address of the computer you want to contact and press enter
You will see something like this:



8) Now all you need to do is type your message and press Enter.
Start Chatting.......!


Enjoy chatting with friends.....!!!!

Monday 9 December 2013

Folder Lock With Password Without Any Software

Folder Lock Without Any Software 



Paste the code given below in notepad and 'Save' it as batch file (with extension '.bat').
Any name will do.

Then you see a batch file. Double click on this batch file to create a folder locker.

New folder named 'Locker' would be formed at the same location.

Now bring all the files you want to hide in the 'Locker' folder. Double click on the batch file to lock the folder namely 'Locker'.

If you want to unlock your files,double click the batch file again and you would be prompted for
password.

Enter the password and enjoy access to the folder.

if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
goto UNLOCK

if NOT EXIST Locker goto MDLOCKER
:CONFIRM
echo Are you sure u want to Lock the folder(Y/N)
set/p "cho=>"
if %cho%==Y goto LOCK
if %cho%==y goto LOCK
if %cho%==n goto END
if %cho%==N goto END
echo Invalid choice.
goto CONFIRM
:LOCK
ren Locker "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
attrib +h +s "Control Panel.{21EC2020-3AEA-1069-
A2DD-08002B30309D}"
echo Folder locked
goto End
:UNLOCK
echo Enter password to Unlock folder
set/p "pass=>"
if NOT %pass%==type your password here goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-
A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Locker
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDLOCKER
md Locker
echo Locker created successfully
goto End

:End


hope this will be help full to u...??


Good luck..(y)

6 Main fields where Computers are Widely Used

Computer technology has made several important impacts on our society. Today computer is playing very important role in every field of life. Many activities in daily life can be performed very easily and qickly. A lot of time is saved and overall cost is reduced to solve a particular problem. Many fields where computer are widely used


1- Business
    Today, in global markets, it is impossible to run the business without the use of computer technology. Many business activities are performed very quickly and efficiently by using computers. The administrative paperwork is also reduced by using computers. Many business use websites to sell their products and contact their customers.







2- Education
    Computers are used in teaching and research. The students can solve different kinds of problems quickly and efficiently by using computers. They can also collect different information on the Internet.











3- Banks
    Computers are widely used in banks. They are used in banks for record keeping and maintaining accounts of customers. Most of the banks provide the facility of ATMs. The customers can draw money through ATM card from any branch of that bank (or another bank) at any time of a day.







4- Entertainment
    Computers are also playing very important role for the entertainment of human beings. Nowadays, computer can be used to watch television programs on the Internet. People can also watch movies, listen music, and play games on the computer. Many computer games and other entertainment materials of different kinds are available on the Internet.




'

5- Home
    At home, computer is used to maintain personal records and to access much other information on the Internet. People can also use computer at home for making home budgets etc.



6- Medical
    Nearly every area of the medical field uses computers. For example, computers are used for maintaining patient history & other records. They are also used for patient monitoring and diagnosis of diseases etc.











All after this the main thing is that it is very usefull in every field.......

Not only these 6 fields but in airforce,navy and every where....!!!

The use of computer has become easier to live life of mankind...!!

there are many technology will be coming infront of you...!!!


keep reading...
will be intresting...!!

Good luck...:)

Giant Alien Planet Discovered in Most Distant Orbit Ever Seen

An enormous alien planet — one that is 11 times more massive than Jupiter — was discovered in the most distant orbit yet found around a single parent star.

The existence of such a massive and distantly orbiting planet raises new questions about how these bizarre worlds are formed, the researchers said.

"This system is especially fascinating because no model of either planet or star formation fully explains what we see," study lead researcher Vanessa Bailey, a fifth-year graduate student in the University of Arizona's department of astronomy, said in a statement.

In the most commonly accepted theories of planet formation, it is thought that planets that orbit close to their parent star, such as Earth, began as small, asteroid-type bodies that clumped together in the primordial disk of gas and dust around the burgeoning star. Yet, this process operates too slowly to explain how gaient planets form far awayfrom their stars.



Bailey said.
"A  Binary star system can be formed when two adjacent clumps of gas collapse more or less independently to form stars, and these stars are close enough to each other to exert a mutual gravitation attraction and bind them together in an orbit," she explained.

The star and planet may have collapsed independently, but the materials that clumped together to form the planet were insufficient for it to grow large enough to ignite into a new star.

But, there are still problems with this scenario. For one, difference between the masses of two stars in a binary system is typically no more than a ratio of 10 to 1.

"In our case, the mass ratio is more than 100-to-1," 

"This extreme mass ratio is not predicted from binary star formation theories — just like planet formation theory predicts that we cannot form planets so far from the host star."

Researchers are also keen to study the new planet, because leftover material from when the planet and star formed can still be detected.

"Systems like this one, where we have additional information about the environment in which the planet resides, have the potential to help us disentangle the various formation models," Bailey said. "Future observations of the planet's orbital motion and the primary star's debris -disk may help answer that question." 

The planet HD 106906 b is only 13 million years old, and is still glowing from the residual heat from its formation," the researchers said. By comparison, Earth formed 4.5 billion years ago, which makes it roughly 350 times older than the newfound exoplanet.

The planet was found using a thermal infrared camera mounted on the Magellan telescope in the Atacama Desert in Chile. The researchers used data from the hubble space pe to confirm their discovery.
The study, which has been accepted for publication in a future issue of The Astrophysical Journal Letters, could lead to a better understanding of distantly orbiting exoplanets.

"Every new directly detected planet pushes our understanding of how and where planets can form,"
 study co-investigator Tiffany Meshkat, a graduate student at Leiden Observatory in the Netherlands, said in a statement.


 "Discoveries like HD 106906 b provide us with a deeper understanding of the diversity of other planetary systems."



Thursday 5 December 2013

How to grab IP address with PHP...

Today I’ll be showing you how to grab somebodies IP address when they visit a page.

The variable to use is $_SERVER['REMOTE_ADDR'] - It’s that simple. You can use it
for just about anything, here are a few examples.

Printing the Users IP Address:
<?php

print ($_SERVER['REMOTE_ADDR'], "I'm Watching You!");

?>

Printing it to a File:

<?php

$ip = $_SERVER['REMOTE_ADDR'];
$handle = fopen('ipaddresses.txt'', 'a+);
fwrite($handle, $ip); fwrite($handle, "\n");
fclose($handle);

?>
All you have to do, is to make a text file and insert any of these codes or one of your
own and save it as anythingyouwant.php

Then upload it to your website and it'll do the trick :P

The Possibilities for what you can use this to are endless.

Good luck..!!