Live data from Hacker News

How important is page load time and what you can do about it (2014)

woolleydesign.net

11–20 of 20 posts

Re: How important is page load time and what you can do about it (2014)

#12

How did this get so many upvotes? * Doesn't actually explain why speed matters (hint: over 3 seconds people perceive a slow experience and over 10 seconds people will assume the site is broken) * Doesn't say how to fix speed issues other than one specific small image/tiling "fix" * If you worked at a real company this would never fly. The solution isn't to change the background altogether and go with tiling vs a big…

I don't understand either how this article got so many upvotes.

Your article is good. But it's still incomplete, simple tasks like using a CDN / Reduce the number of HTTP calls / Caching can be implemented in an afternoon for lots of simple website, et can dramatically improve load times.

Re: How important is page load time and what you can do about it (2014)

#13

How did this get so many upvotes? * Doesn't actually explain why speed matters (hint: over 3 seconds people perceive a slow experience and over 10 seconds people will assume the site is broken) * Doesn't say how to fix speed issues other than one specific small image/tiling "fix" * If you worked at a real company this would never fly. The solution isn't to change the background altogether and go with tiling vs a big…

It's pretty good. The problem with automatic lossy compression is consistent quality.

There is a number of issues with each and every tool you mentioned, e.g. color information stripped with metadata causing color shifts in wide-gamut and non-sRGB images, camera images changing orientation when Exif stripped, color banding on PNGs and JPEGs even when using Guetzli (JPEGmini is not nearly as good in other cases, but Guetzli is extremely slow), unexpected dithering noise on flat PNGs, tracing artefacts on screen recorded GIFs, JPEGs being overcompressed, poor lossless compression (virtually any online service), progressive JPEGs incompatible with Photoshop, etc.

These are just some of the problems I've been solving, and yes, there are better tools.

Re: How important is page load time and what you can do about it (2014)

#14

How did this get so many upvotes? * Doesn't actually explain why speed matters (hint: over 3 seconds people perceive a slow experience and over 10 seconds people will assume the site is broken) * Doesn't say how to fix speed issues other than one specific small image/tiling "fix" * If you worked at a real company this would never fly. The solution isn't to change the background altogether and go with tiling vs a big…

It's pretty good. The problem with automatic lossy compression is consistent quality. There is a number of issues with each and every tool you mentioned, e.g. color information stripped with metadata causing color shifts in wide-gamut and non-sRGB images, camera images changing orientation when Exif stripped, color banding on PNGs and JPEGs even when using Guetzli (JPEGmini is not nearly as good in other cases, but G…

How are you getting around those issues? Very interesting! I only saw issues w stripping metadata on JPEGs (same issues you saw).

Re: How important is page load time and what you can do about it (2014)

#15
post #12

How did this get so many upvotes? * Doesn't actually explain why speed matters (hint: over 3 seconds people perceive a slow experience and over 10 seconds people will assume the site is broken) * Doesn't say how to fix speed issues other than one specific small image/tiling "fix" * If you worked at a real company this would never fly. The solution isn't to change the background altogether and go with tiling vs a big…

I don't understand either how this article got so many upvotes. Your article is good. But it's still incomplete, simple tasks like using a CDN / Reduce the number of HTTP calls / Caching can be implemented in an afternoon for lots of simple website, et can dramatically improve load times.

Agreed, it wasn't meant to be a comprehensive guide to speed, just tackling the quickest one. You can run these compressors in a matter of minutes whereas CDNs can take a few hours to implement, and generally can't be run by everyone (whereas ImageOptim can be run by basically anyone).

Perhaps some day I'll create a mega checklist of all things to consider to speed up a site :)

Re: How important is page load time and what you can do about it (2014)

#16
post #4

Well if you look at the graph almost half of the load time is taken by Magento's server response. Magento is slow. Ofcourse you can optimize all assets but in the end Magento is still slow. I've seen companies throwing lots and lots of money at Magento hosting to speed it up. But at the end of the day I think Magento is great for marketeers but not so great for the rest of the world.

As a Magento developer, I agree with you.

Re: How important is page load time and what you can do about it (2014)

#18

Earlier quoted context omitted.

It's pretty good. The problem with automatic lossy compression is consistent quality. There is a number of issues with each and every tool you mentioned, e.g. color information stripped with metadata causing color shifts in wide-gamut and non-sRGB images, camera images changing orientation when Exif stripped, color banding on PNGs and JPEGs even when using Guetzli (JPEGmini is not nearly as good in other cases, but G…

How are you getting around those issues? Very interesting! I only saw issues w stripping metadata on JPEGs (same issues you saw).

The only solution I found is to build a new tool, and that required a complete rewrite of existing optimizers and significant changes to underlying libraries.

Re: How important is page load time and what you can do about it (2014)

#19

Earlier quoted context omitted.

How are you getting around those issues? Very interesting! I only saw issues w stripping metadata on JPEGs (same issues you saw).

The only solution I found is to build a new tool, and that required a complete rewrite of existing optimizers and significant changes to underlying libraries.

But can't you choose the compression algorithm in those tools? I know you can in ImageOptim and JpegMini...

Re: How important is page load time and what you can do about it (2014)

#20

Earlier quoted context omitted.

The only solution I found is to build a new tool, and that required a complete rewrite of existing optimizers and significant changes to underlying libraries.

But can't you choose the compression algorithm in those tools? I know you can in ImageOptim and JpegMini...

It's not automatic then, which is critical for batch processing, and does not solve all the problems, and create new usability problems for most users.
Post reply on HN