|
|
|
|
Support StuffThis section contains general personal computer support.
Setup and Maintenance TipsThere are hundreds of ways to customize your computer during and after setup. We've gathered tips on setup and customization for you to explore http://www.microsoft.com/windowsxp/using/setup/learnmore/tips/default.mspx Personalize Your Browserhttp://www.microsoft.com/windows/IE/community/columns/personalize.mspx Address Bar Keyboard ShortcutAdd "www." to the beginning and ".com" to the end of the text typed in the Address bar. You don't have to type http://www.<domainName>.com and click the Go button. You can just type the <domainName> and press Ctrl + Enter. Microsoft Internet Explorer (IE) adds the http://www. and the .com to the domain name then goes to the web page. Probably the least known shortcut, but it is a tremendous time saver. You can type the domain name and press Enter, but IE does a search for the domain and that can add anywhere from a few seconds to a minute. If you know where you are going, why search? Host Name InformationDrop the Host Name when typing an address. The prefix www does not always need to be used when going to a domain's default web site. (This prefix is called the Host Name.) For instance, if I type http://missico.com, IE will do a "DNS lookup" for the web server of the domain missico.com, which happens to be www.missico.com. Therefore, http://missico.com is exactly the same as http://www.missico.com. Many domains, including mine, go a step further by allowing you to type anything before the domain. For instance, the addresses http://tony.missico.net, http://anthony.missico.net, or http://fred.missico.net will all direct you to the web server at missico.net. (If you try this, you will see an under construction page.) Notice, this doesn't work for missico.com. My stupid Web Service Provider (WSP) can't seem to understand me when I explain what I want them to do. (Yet, they sure do understand when I don't pay them for lack of support / service. That always gets their attention.) JavaScript Random NumbersI am going to show the proper way to generate random integer numbers in JavaScript, JScript, ECMAScript, or whatever the current version for the day is. This same technique is used in all programming languages. The first function is the technique everyone is referencing in the discussion on how to generate random numbers in JavaScript. The
function get_random()
{
var ranNum = Math.round(Math.random() * 4);
return ranNum;
}
The following function is the correct way to generate integer numbers. This function accepts lower and upper ranges, and returns integer numbers within the specified bounds. This is a true function that provides the basis for other more sophisticated procedures and functions.
function getRandom(lowerBound, upperBound) {
return Math.floor((upperBound - lowerBound + 1) * Math.random() + lowerBound);
}
The
function get_random() {
return getRandom(0,4);
}
Generating random letters is just as easy, and shows the true power of properly generating random numbers. In any language.
function getRandomLetter() {
return String.fromCharCode(getRandom(65, 90));
}
Keyboard Shortcuts
Here are a few of my favorite shortcuts:
In my opinion, the most important of all general keyboard shortcuts:
These general keyboard shortcuts work in nearly every application. You can do some cool things. For instance, you can Copy (Ctrl + C) files from Windows Explorer and Paste (Ctrl + V) them into other folders, into a Microsoft Outlook message, even when editing this web page. (See You can move a file with Windows Explorer by cutting the file and pasting into another folder. You can even copy sections of Microsoft Office documents and paste them as "document scraps", which is very cool. You can cut and paste between all the Microsoft Office applications in addition to drag and drop. WalkthroughTry this little walkthrough to see the power of keyboard shortcuts.
Here is a great tip. In most applications, press F1 to display the application's help then search for "keyboard shortcuts" to find helpful ways to quickly access functions in the application. More Information
Slow Download SpeedsQ: Why am I downloading at speeds as low as 28 to 33.6k?
DVD+R Disc Care
DVD Recording and Playback QualityI purchased a new external DVD burner recently. During testing I found the burner would occasionally fail while writing without generating an error. I discovered this problem when "verifying" the finished DVD. While troubleshooting, I found that not all DVD Blank Media is the same. I tested three kinds; Sony 8x, Memorex 8x, and a generic 4x brand. The Sony media is slow. This is an 8x disc, but I get errors when burning at better than 2x speed. If I burn at 2x, then everything is find, it just takes a couple of hours (50 min. to burn and 50 min. to verify.) The Memorex is the worst compared to the other two. Another 8x disc, but you get no errors while burning at better than 2x speed. Yet, write errors actually happen and the disk is damaged. I can burn on the generic brand close to 4x and playback with no problems. (There is no way to determine who makes the generic brand from the label.) Knowing these facts, I started my research and found: What burner you have determines what media you need to buy. Regardless of your burner, where you want to play the DVD also affects your choice of media. Long story short; "...we recommend BeAll, Ritek, Samsung and Verbatim DVD blank media for steady recording compatibility and playback compatibility." http://www.meritline.com/faq-dvd-blank-media-burner-burning-software.html#6 http://www.meritline.com/dvd-r-media-4-dvd-burner-recorder.html Thu, 17 Feb 2005 12:09:00 -0800
Created: 28 Jul 1998 10:07:02 -0700
Changed: 19 Jul 2005 11:15:40 -0800 |
|
|
A Great List of Tips!
This is a great list of tips. Many of the answers to questions people regularly ask me can be found in this list.