hakon
Posts: 298
Joined: 4/15/2005 Status: offline
|
quote:
ORIGINAL: Shannon V. OKeets a - How does the introduction of dual core processing affect the overall CPU speed. Do you simply multiply by 2? This is fully up to you, as programmer :) Dual core means that you can run 2 processes or threads concurrently, at full speed. If you make good use of threading, you get twice the speed. If you don't use any threading, the maxiumum benefit will be that you may offload some system processes and other tasks to the second core, while the main core runs the main game thread. In the last case, you will only get about 10% to 20% speed increase over a single core. More and more software supports 2 or more core, though, since dual core is pretty much becoming the standard (with quad core or more taking over the high end). quote:
b - What is the best way to set up the LAN? What software and hardware (e.g., cable) would be necessary? The standard setup for a home network, is a broadband router, SMC have some good ones at : http://www.smc.com/index.cfm?cid=1&event=viewCategory&localeCode=EN_USA (I dont have very good experience with 3com's low end routers). Such a box contain: - A router, with NAT support, which means that you get a local range of IP addresses that can't be seen from the outside. (Which is good for security). You can then expose only the ports that you specifically want to open, and delegate them to the computer that serves/answers the port, if you want to have a web server, ftp server etc. Connections made from the inside to the outside will be directed automatically. - A built in firewall, which is a very nice first line of defense. - A switch, usually with 4-8 lan ports, depending on your need. - (usually) a wireless access point. This is highly recommended when you have a laptop, since it means that you can access your network from anywhere in the house, and there is less plugging/unplugging when you travel with your PC. Mine is set up to allow only the MAC address of my specific laptop, which means that it's quite hard to tap into for my neighbours. If you don't sit right next to the access point, the radiation exposure should be very limited, compared for instance to moderate use of a cell phone. Some versions may also add more functionality, such as printer connectivity, etc, depending on your needs. In addition to this, you only need 1 RJ45 cable per computer you want to connect,. quote:
c - Is using a standard mouse going to be possible? What would need to be purchased to do that? All new laptops will support any USB mouse. quote:
d - Is it possible to buy Windows XP any more? Is using Vista Home Edition a reasonable choice? I suspect that is what most of the people who buy MWIF and run it on a newly purchased computer will be using. Hmm. I would recommend Vista, and maybe Vista 64. If anything, then to avoid any compatibility issues. Of course, if you want to run a full developer environment on Vista 64, you probably want 4 gigs of ram. A feature breakdown of for the vista versions is listed below: http://www.microsoft.com/windows/products/windowsvista/editions/choose.mspx
|