F

Here is where the computer is not just a "stupid machine"
Scroll Up
start.. image1
 
image2
 
image3
 
image4
 
image5
 
image6
 
image7
 
image8
 
image9
 
image10
 
end.
Scroll Down

// this tells jquery to run the function below once the DOM is ready $(document).ready(function() { // choose text for the show/hide link var showText="Show the hidden text"; var hideText="Hide the text"; // create the toggle link $("#hide_this").before("

"+showText+""); // hide the content $('#hide_this').hide(); // capture clicks on the newly created link $('a#toggle_link').click(function() { // change the link text if ($('a#toggle_link').text()==showText) { $('a#toggle_link').text(hideText); } else { $('a#toggle_link').text(showText); } // toggle the display $('#hide_this').toggle('slow'); // return false so any link destination is not followed return false; }); });

How hard is it to set up a network between two computers in my home?

How hard is it to set up a network between two computers in my home?
If you have multiple computers in your home, networking them is a great idea! There are several big advantages to setting up an in-home network:
  • If one of the computers has a printer attached, then the other computer can print to it over the network.
  • If one of the computers has certain files on it, someone on the other computer can access those files over the network rather than having to copy them onto a floppy disk.
  • If you like playing multi-user computer games that have network capabilities built in, then two people can play these games together over the network.
  • If you connect to the Internet with one of the computers, the other computer can use that same connection over the network. So one computer can connect to the Internet with a modem and the other computer will route its Internet traffic through that single connection.
Quiz Corner
How much you know about home networks and what they do? Test your knowledge with our Home Networking Quiz!
Networking PCs has gotten easier and a lot less expensive, but it is still a little bit of a challenge. How Home Networking Works discusses the whole thing in detail, but here's a quick answer.

One way to do it is to buy and install network cards in both machines. You can go to an electronics store and get an inexpensive network card for $20 to $30 these days. You have to open the computer to plug the card in, and then install the driver software. You also have to purchase two network cables ($10 to $20 each) and a small hub ($30 to $40) to physically connect the two machines together. Once you get it all together, the two machines should be able to talk to each other.
This approach has two advantages:
  • The network will be very fast -- up to 100 Mbps, and at least 10 Mbps.
  • It only costs about $100.
It has two disadvantages:
  • You have to open the case and install a card, which intimidates some people.
  • You have to run thick network cables around the house. If the computers are in the same room that's okay, but if they are on different floors it can be messy.
You can solve that second disadvantage by purchasing radio modems instead. They cost more but are very easy to connect to one another.

Another path you can follow is something like the Intel AnyPoint Network. Instead of using special network cables, you use your home's telephone wiring to connect computers together (this causes no interference when using the phone for normal calls -- your phone and the network share the same wire). In addition, you can buy a version of the Intel system that uses a USB port, so installation is extremely easy. You can also purchase cards, which are faster.
The big advantage of the Intel system is the use of phone wiring. Simply plug all the computers in your house into phone jacks and they can talk to each other. You also don't need to buy a hub. The disadvantages include:
  • Higher prices (for the USB version)
  • Slower speeds (for the USB version)
However, installation takes just a few minutes. Besides phone-line networking, you can also use power-line networking and wireless networking to connect your computers. Read How Home Networking Works to learn about the different approaches.
Once you install the physical network, the Windows operating system makes connecting your computers simple. You can use the Network Neighborhood feature to share files and printers. The Intel system comes with software to share an Internet connection, or you can use the version built into Windows 98 and later.

0 comments

Post a Comment

Followers