Home » Speed optimization » Page 8

Refactor to Improve Code Design – software refactoring code to speed up javascript, java, and flash execution, download speed and coding changes

Refactoring is the art of reworking your code into a more simplified or efficient form in a disciplined way. Refactoring improves internal code structure without altering its external functionality by transforming functions and rethinking algorithms. Consequently, refactoring is an iterative process. By refactoring your JavaScript, Flash, and Java you can streamline its size, simplify your code, and speed up download and execution speed.

Read more

Sink the Splash Pages – improve bailout rates, credibility, and rankings by removing splash page screen

Splash pages are branding or branching pages that usually appear before the main home page of a site. Many splash screens are graphically rich to entice users to explore the site. Unfortunately, splash pages decrease credibility, traffic, search engine rankings, and web site performance. This article explores the effects of splash pages and offers some solutions to lessen the pain.

Read more

Cut the Comments

Computer classes teach “structured programming” with well-commented code as one requirement of good programming practice. However, easily understood code doesn’t make for fast downloads on the Web. By cutting your comments you can shrink your XHTML, CSS, and JavaScript to download faster.

Read more

Use Conditional Server Side Includes – conditional css style sheets xssi

You can minimize HTTP requests by combining external CSS and JavaScript files. You can go even further by server-side including the remaining external files (with restrictions for XHTML due to its XML nature). One additional technique is to make those SSI work harder for you by serving up conditional content. Conditional server-side includes let you deliver different content based on environment variables sent by browsers to servers.

Read more

Minimize HTTP Requests

By combining external files and optionally including CSS and JavaScript directly within your XHTML pages, you can minimize the number of HTTP requests required to render your page. Each unique HTTP request requires a round trip to a server, introducing indeterminate delays. Users attune to fast, consistent response times. The more HTTP requests that your pages require, the slower and less consistent their response time will be.

Read more