Posts Tagged ‘Speed’

Internet services and computer processing are two very important aspects of daily life for most people. If these processes don’t function properly or too slowly, it can greatly hinder your ability to complete daily tasks. Therefore, it is important to understand some basic core functions of all computers, so that troubleshooting errors and slow speeds is possible. One of the basic elements of computer processing is your software and its relationship to your computer system.

Your computer is made up of hardware and software. The hardware is the physical pieces and parts, both inside and outside of your computer. Your software is the display, the controlling and moving force that enables your computer to do, well, everything. Everything that displays on your monitor and allows you to make changes, create projects, and perform tasks is software.

There are many ways that software is necessary and beneficial. The majority of the software on your computer (especially that which came with your computer) is probably necessary for your hardware to function, and for you to perform tasks. It is possible though, that “good” software can go bad or not be right for your computer.

For example, every piece of hardware in your computer system needs software, usually called a driver, in order for it to operate and work with the rest of your computer system. Sometimes, hardware (like your printer or modem) performs poorly or not at all because the software has become corrupted or is out of date. This is most likely the case, especially since software is constantly being improved over time. It is also the easiest and least expensive issue to fix. For these reasons, the first suggestion to fix a problem is almost always to reinstall or upgrade the software program or the software driver of the hardware that is giving you trouble.

Another way that software can be problematic is if it is not compatible with your current system software, like your operating system. As software improves, changes are made in the way they run and display that were not even invented when your computer was built. Often, adaptations can be made, but constant upgrades are almost inevitable when it comes to computer systems. Compatibility issues are usually quite simple to identify. You will get an error message or some other clear indication that the software will not work. Sometimes, on websites offering software downloads, you will be notified before you download that your computer is not compatible, or you will see a list of versions of that software in order to choose the one that will work with your computer.

Software can also cause your computer to function poorly if it is too advanced for your hardware, and vice versa. New and improved software often takes up more space and uses more system resources than there primitive predecessors. This means that slower, older hardware can have trouble keeping up. On the other hand, newer computers are constantly being built with nearly a hundred times more speed or capacity than those of 5 or so years ago, which means that software is constantly having to be upgraded that will be able to take advantage of that speed and space, otherwise, the improvements cannot be used!

Understanding what software you have, and how it works with your computer is the first step to keeping your computer up-to-date. Knowing how to find, upgrade, and install software will help you troubleshoot your computer and save money.

Speed kills. In the case of website usability, the lack of speed kills. Many

have erroneously assumed the advent of high speed internet connections would

make website performance optimization irrelevant. On the contrary, it seems as

internet connection speeds increase, users simply become more impatient and

demand faster browsing. Below, I’ve gathered some simple (and advanced) ways to

speed up your site.

Image Optimizing Tips:

Compress .jpg and .gif images: If you use Photoshop, always use the “Save for Web” feature. If you don’t have access to PS, there’s a ton of free image compressing freeware out there.
Compress or eliminate unnecessary Flash elements: In my opinion, flash is over-rated, slow, and buggy. It has it’s benefits, but make sure you don’t rely on it for navigation or other necessary site elements.
Don’t Resize Images within HTML: Don’t use the width or height attribute in the IMG tag to resize larger options. For example, if you resize an image that was originally 300 x 300 to 100 x 100, the user still has to download the full size one. Instead, use thumbnails.
Specify Image Dimensions: Don’t leave the width or height attributes blank. By doing so, you’ll slow down the browser rendering of the page, since it doesn’t know how much space to give for each image.
Slice Your Images: Slicing doesn’t actually reduce image size (in fact, it increases the overall size). However, it does increase the apparent load time by making each slice appear one at a time rather than one big image popping up after it downloads.

Avoid Too Many Slices: Don’t use too much of a good thing. As mentioned above, each slice actually increases the total size. I would recommend using no more than 4 slices, unless you are dealing with a huge image.
Coding Tips
Use CSS instead of Images: Cascading style sheets can do more than you think. Many sites make effective use of CSS

formatting and eliminate the need for excessive images. Even effective brand logos can be created with CSS. CSS Zen Garden has some examples of creative use of CSS.
Convert from Table to CSS based layout: Tables are ok for displaying data in columns and rows, but is grossly inefficient for designing web page layouts. By using DIV tags with CSS, you can cleanup your code extensively, which will reduce page load time and also offer SEO benefits.
Use External Style Sheets: Rather than formatting through embedded inline styles in pages or html elements, reference an external css files that the entire site can reference. The browser will cache this page on the first visit, so it won’t need to download it repeatedly.
Use External Javascript: Similar to above, put all of your JavaScript functions in an external file for caching benefits.
Remove Unnecessary White Space in HTML: Surprisingly,

white space hogs a lot of disk space.
Use Shorthand CSS: Instead of putting each CSS attribute on its own line, use shorthand CSS to prevent extra line breaks in your external CSS file.
Use CSS Images instead of IMG tag: An easy way to speed up the rendering of an image is to simply call as a background of a div tag.
Use Relative Links: Removing the ” http://yoururl ” from the beginning of every link will shed some weight. Just be careful not to allow people to jump back and forth between secure and insecure pages, which will generate one of those annoying “insecure items” errors in the

browser.
Specify the DocType: Pages that have the DocType specified tend to load faster than those that don’t.

Server & Database Tips

 Reduce Http requests from other sites: Try to eliminate connecting to other servers to

retrieve images, audio, or video. Each http:// connection only slows things down.
Don’t Use Https://: Don’t use secure pages if you don’t have to. Connecting through secure http is about 3 times slower than regular http. Obviously, your checkout process needs to be secure, but your product pages most likely do not. In addition, make sure your navigation doesn’t use relative links which forces users to flip flop between secure and non-secure pages.
Upgrade your Web Server: Just like that old PC you bought 5 years ago, web servers can go down hill and become outdated.
Use Gzip Compression to Reduce HTML Size: Gzip is great for compressing html code, however it does nothing for images, flash, or other embedded files. Many open source programs such as WordPress and Joomla already support it.
Upgrade Server Memory: A boost in memory resources on your server can reduce processing time and greatly increase performance.
Upgrade your Database Server Hard Drive: The faster your server’s hard drive is able to access data, the faster it can serve up files. A fast hard drive is especially important for your database server.
Separate Content and Database Servers: If you have a high traffic, database driven website, you can benefit by placing your content on one server and your database on another. In addition to the speed benefits, it is more secure.

Other Tips

 Loading Progress Indicators: By letting users know that you are processing their request, you can assuage their impatient fears. This won’t necessarily speed things up, but it will update them on the progress.
Use AJAX instead of Page Refreshes: Interacting with a web page is far different than interacting with your computer OS. Imagine if Windows XP had to refresh the whole screen ever time you perform an action like websites do? In the next few years, we will probably see more adoption of AJAX technology, which will make page refreshing

unnecessary.
Reduce Size & Number of Cookies: Each time a browser makes a request, cookies must be transmitted. Keep an eye on the total number and size of the cookies your site uses.

Fore more

E-commerce optimization tips, please visit the
Palmer Website Usability blog.