I've been handed a new web app to review at work and the home page contains 20 script tags - 13 external and 7 inline. Once I'd stopped laughing (it's only 2...
I dont know about seperate script tags, but If there are any eval statements the JS Interpreter gets called for each one. eval is EVIL! http://www.jslint.com ...
... Don't worry - these guys haven't missed a trick - eval(), new function(), setTimeout("string"), global variables - all present and *not* correct ;)...
Hello, I've been a member of this list for a while and have seen many great questions and answers come through. I hope you have advice for me in this case....
Have you considered using cloudfront? You may even get cheaper rates than using s3 directly. You can also allocate multiple hostnames to the same bucket. There...
Couple of things: 1 - S3 doesn't work well as a CDN (actually, there is quite a penalty for using it). 200-400ms for each request is about the equivalent of...
Hi Joe, first, listen to what Patrick Meenan said. It is not a direct answer to your question, but the most important thing to do because it has the biggest...
I have followed the instructions found in the article below http://24ways.org/2008/using-google-app-engine-as-your-own-cdn and used Google app engine to...
Is there a way to serve images together? You know if you have a site which has more than a 100 images on its homepage it would be nice if you could serve them...
Ok, my fault, I wasn't clear enough. I'm talking about images that aren't part of the actual design. Like thumbnail pictures on a gallery page. You can't put...
One trick I mention in my book is putting all the images in a stylesheet as data: urls. This gets all the images downloaded in one request, and they can be...
Steve, You´ve mentioned IE6 and 7. What about IE8. Does it work? Thanks Fábio Macedo Garcia Núcleo Páginas Rápidas & SEO Fast Pages & SEO Center *...
Fabio Macedo Garcia
fgarcia@...
Apr 9, 2009 3:57 pm
873
Ah, the problem with data:url type ideas is you wont get the benefit of caching, as you really just including the data in the page. So the next page that needs...
CSS sprite images are also a great solution for thumbnails (but is not recommended for a large number of thumbs), have a look at: ...
Isaak Malik
isooik@...
Apr 9, 2009 7:49 pm
876
I hope my question is coherent: Is the cache granularity the stylesheet or individual image? If another page has half the images will they be served from...
Here¹s one solution to inlining images in IE < 8 http://www.phpied.com/mhtml-when-you-need-data-uris-in-ie7-and-under/ Drawback: you need to duplicate the...
Unless you generate individual css files for IE, since handling these kind of things via html is quite easy with <!--[if ...]>. Great method, thanks Stoyan....
thanks a lot steve for your help , but the article mentioned many ways under apache is there are ways to do so on windows hosting platforms .. most of my work...
I saw something about this on the blog, I think it was only stated as a future topic, but I'm curious if you have some advices. For example, if I generate...
mogrify & convert are the good tools from ImageMagick. And yes, it got upto 85-86% gain using mogrify. It is open source for Linux & Windows both (not sure...
You're the man! :) I've just noticed that Imagick is installed on the server, my site is on. How could I possibly avoid such a thing? Never mind, thanks again....