The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
3answers
1k views

Mixing Secure and Non-Secure Content on Web Pages - Is it a good idea?

I'm trying to come up with ways to speed up my secure web site. Because there are a lot of CSS images that need to be loaded, it can slow down the site since secure resources are not cached to disk by ...
4
votes
6answers
778 views

Using 3-digit color codes rather than 6-digit color codes in CSS

I recently went through my CSS file and switch all my 6-digit hexadecimal codes to simple 3-digit codes (for example, my #FDFEFF got shortened to #FFF). It renders pretty much the exact same color as ...
4
votes
5answers
1k views

Setting Far Future Expires Header In Code - ASP.NET

Is there a way that I can programmatically set an Expires Header in code with ASP.NET? Specifically I need to set it on an entire folder and all sub-folders, and the folder contains only static files ...
3
votes
4answers
373 views

Static file versioning with Django

I am setting far-future expires headers for my CSS/Javascript so that the browsers don't ever ask for the files again once they get cached. I also have a simple versioning mechanism so that if the ...
3
votes
2answers
426 views

What is the best way to optimize a Windows Server 2008 box running IIS7 to serve only static files?

I would like to have our web applications pull static content (css, js, images) from a static file server running Windows Server 2008 and IIS7. What sort of optimizations would you make to the server ...
3
votes
10answers
1k views

JavaScript being loaded asynchronously in Firefox 3 (according to Firebug)?

I'm trying to profile the performance of a web site that I'm fairly confident is being slowed down by the loading of JavaScript files on the page. The same JavaScript files are included several times ...
2
votes
1answer
128 views

Web page Optimization

I'm creating a new dinamic site to test and learn about web optimization... Site Index For html,css,js (exept jquery-min that is linked to google server) files I've created a php file that ...
2
votes
3answers
265 views
+50

How to preload JavaScript and CSS files in the background, to have them ready in the browser cache when the user goes to the main page?

I want to preload a JS file and a CSS file from the landing page to optimize the main site load, after the conversion in the landing. I was looking for information about this and finally tried to get ...
2
votes
1answer
258 views

Google Web Optimizer — How long until winning combination?

I've had an A/B Test running in Google Web Optimizer for six weeks now, and there's still no end in sight. Google is still saying: "We have not gathered enough data yet to show any significant ...
1
vote
1answer
40 views

Identifying slowdown in IE

I am working on a site right now that is experiencing a slow down in Internet Explorer. More specifically, the page just freezes for around 2 to 3 seconds after loading all of the visible page ...
1
vote
1answer
31 views

Is this page caching system reasonable?

I am working on a webbased system where users will click through a lot of pages. Because they will often return to specific pages (for example, an overview of books), I would like to implement some ...
1
vote
1answer
171 views

Google Web Optimizer (A/B Testing) Why no clear winner?

I've previously asked how long it takes for a winning combination to appear on Google's Web Optimizer, but now I have another weird problem during an A/B test: For the past two days has Google ...
1
vote
2answers
98 views

Recommended file sizes for web

I am doing a web performance optimization using YSlow and Page Speed recomendations but when it comes to file sizes neither says anything about it. Does anybody knows where I can get some ...
0
votes
0answers
15 views

Why YUI Compressor does not minimize leading zero (for floating-point numbers) in CSS-rules with the negative margin?

For example, a selector like . t { margin: 0 0.5em 1em-0.2em; } compressed to .t{margin:0 .5em 1em -0.2em} Perhaps this is what an old bug in YUI Compressor. Does anyone have any thoughts ...
0
votes
1answer
32 views

Are multiple domain can improve images loading speed

I read this article Optimize Parallel Downloads to Minimize Object Overhead and write a test demo But the result is not I expected,look at the waterfall figure multiple domain's images indeed parallel ...
0
votes
2answers
86 views

how do you add a “Cache-Control: public” header to a png file?

I've recently been looking at the Safari performance audits/recommendations. One section refers to adding Cache-Control: public header to some png resources. I've heard that said elsewhere and ...
0
votes
1answer
28 views

Problem with google webmasters site performance review

I noticed that i have not being getting traffic via google organic searches. I decided to find out what the problem may be, and i registered on Google webmasters. From what i saw, it seems my site is ...
0
votes
3answers
42 views

Concurrent Downloads

I've been monitoring the Net panel of Firebug and noticed that the HTML has to be downloaded first before any other resources are downloaded. I guess this make sense since the other resources are ...
0
votes
1answer
92 views

Adobe Reader Broswer Plug-in - Issues with files greater than 2mb

I was wondering if anyone knew of any limitations with the Adobe Reader Browser plug-in. Currently I am experiencing issues when a visitor to my website is trying to open a PDF that is greater than ...
-1
votes
2answers
55 views

Efficient CSS with child selectors, is it worth it?

I know: div > p is faster to render than div p but, in the other hand, it occupies one more character, so it increase the time to send the CSS file. I know the speed difference is very ...