I just checked my home page [1] and it has a compressed transfer size of 7.0 kB. / 2.7 kB main.css 2.5 kB favicon.png 1.8 kB ------------------- Total 7.0 kB Not bad, I think! I generate the blog listing on the home page (as well as the rest of my website) with my own static site generator, written in Common Lisp [2]. On a limited number of mathematical posts [3], I use KaTeX with client-side rendering. On such pages…
A 14kb page can load much faster than a 15kb page (2022)
121–130 of 324 posts
Re: A 14kb page can load much faster than a 15kb page (2022)
#122Earlier quoted context omitted.
> the environmental impact of jackasses mining jackass coin, or jackasses training LLMs is not insignificant Whataboutism. https://en.m.wikipedia.org/wiki/Whataboutism > You're just pushing the idea that all human activity is some sort of disease that's best disposed of. That's essentially just wishing the worst on your own species for being successful. Strawmaning. https://en.m.wikipedia.org/wiki/Straw_man Every blo…
> the environmental impact of jackasses mining jackass coin, or jackasses training LLMs is not insignificant (this was actually stated in agreement with the original poster, who you clearly misunderstood, so there's no "what-about" involved here. They were condemning all kinds of consumption, including the frivolous ones I mentioned). But I'm afraid you've missed both my small point and my wider point. My small point…
..."required".
That allows you to fit pretty much everything in that requirement. Which actually makes my initial point a bit weak, as some would put "delivering 4K quality tiktok videos" as a requirement.
Point is that energy consumption and broad environmental impact has to be a constraint in how we design our systems (and businesses).
I stand by my accusations of whataboutism and strawmaning, though.
Re: A 14kb page can load much faster than a 15kb page (2022)
#123The linked page is 35kB.
Re: A 14kb page can load much faster than a 15kb page (2022)
#124Earlier quoted context omitted.
That’s not what I said. Only that the responsible engineers know which tradeoffs they make, and are competent enough to do so.
The decision to use react for the start menu wasnt out of competency. The guy said on twitter that thats what he knew so he used it [1]. Didnt think twice. Head empty no thoughts 1 https://x.com/philtrem22/status/1927161666732523596
Re: A 14kb page can load much faster than a 15kb page (2022)
#125I agree with the sentiment here, the thing is, I've noticed that the newer generations are using frameworks like Next.js as default for building simple static websites. That's their bare bone start. The era of plain html + css (and maybe a sprinkle of js) feels like it's fading away, sadly.
Re: A 14kb page can load much faster than a 15kb page (2022)
#126Does anyone know have examples of tiny, yet aesthetically pleasing websites or pages? Would love it if someone kept a list.
There is an example link in the article. Listing more examples would serve no purpose apart from web design perspective
Re: A 14kb page can load much faster than a 15kb page (2022)
#127I just checked my home page [1] and it has a compressed transfer size of 7.0 kB. / 2.7 kB main.css 2.5 kB favicon.png 1.8 kB ------------------- Total 7.0 kB Not bad, I think! I generate the blog listing on the home page (as well as the rest of my website) with my own static site generator, written in Common Lisp [2]. On a limited number of mathematical posts [3], I use KaTeX with client-side rendering. On such pages…
> That said, I do use KaTeX with client-side rendering on a limited number of pages that have mathematical content You could try replacing KaTeX with MathML: https://w3c.github.io/mathml-core/
Re: A 14kb page can load much faster than a 15kb page (2022)
#128Missing 2021 in the title. I know it is not the exact topic, but sometimes I think we dont need the fastest response time but consistent response time. Like every single page within the site to be fully rendered with exactly 1s. Nothing more nothing less.
Re: A 14kb page can load much faster than a 15kb page (2022)
#129If you want to have fun with this: the initial window (IW) is determined by the sender. So you can configure your server to the right number of packets for your website. It would look something like: ip route change default via dev initcwnd 20 initrwnd 20 A web search suggests CDNs are now at 30 packets for the initial window, so you get 45kb there.
Re: A 14kb page can load much faster than a 15kb page (2022)
#130The article has IMO two flawed arguments: 1. There is math for how long it takes to send even one packet over satellite connection (~1600ms). Its a weak argument for the 14kb rule since there is no comparison with a larger website. 10 packets wont necessarily take 16 seconds. 2. There is a mention that images on webpage are included in this 14kb rule. In what case are images inlined to a page’s initial load? If this…