7 ms·
I still don't get why they use images <td class="bb pad04 top center" style="width: 32px"> <img src="/images/status0.gif"> </td> Instead of unic
by reubano 5y ago
I still don't get why they use images
<td class="bb pad04 top center" style="width: 32px">
<img src="/images/status0.gif">
</td>
Instead of unicode:https://www.htmlsymbols.xyz/unicode/U%2b2705 https://www.htmlsymbols.xyz/unicode/U%2b2705
- jermaustin1 5y agoif the image tag is drawn dynamically then it is actually probably less bandwidth than the unicode character since the image can be cached at multiple locations including the browser.
- gjs278 5y ago
- cure 5y ago.... no way. Cache freshness checks involve a lot of headers, which take up way more bandwidth than one unicode character.
- jermaustin1 5y agoif you care about cache freshness - you could set the cache header to 10 years and it never be an issue again.
- jrochkind1 5y agoLess bandwidth than the 1-4 bytes of a codepoint in UTF-8? How do you figure?
- jermaustin1 5y agoBecause if it is cached, then it is 0 bytes transferred. First request could be probably a few hundred bytes, but never needed again. And once it is at a CDN, there is never another request to the server.
- cure 5y agoIt's because they can host the images in S3 buckets, so that their status page goes down when S3 is down. /s But, this really happened in 2017.