Remix.run Logo
ahartmetz 4 hours ago

Yeah, but if your website with, you know, text and stuff, doesn't do any stupid and unnecessary crap, it doesn't matter where the nonexistent unnecessary yet expensive code doesn't run.

another-dave 3 hours ago | parent | next [-]

and if you have no website at all, it takes zero seconds to load.

But for people who are developing websites that are more than just text, this is an excellently written article and great advice.

It's funny, for mobile app dev it feels like the community are a lot of focused on staying off the main thread, this is the first time I've come across one for webdev.

nicoburns an hour ago | parent | prev | next [-]

You'd be surprised how expensive it is to render text, although unless your page is very large you won't see it being slow on modern systems.

adzm 3 hours ago | parent | prev | next [-]

Well yeah but if you do actually need things like images, animations, high frequency updates, etc, this is actually a pretty good overview of how to approach it. Also learned that react uses posting to a MessageChannel to yield!

account42 3 hours ago | parent | next [-]

GP is right that just like with garbage where "reduce, reuse, recycle" is the mantra, the first question for optimizing something should be if you need to do the calculation at all.

adzm 3 hours ago | parent [-]

This is true as well, yeah, but it came off as dismissive of everything too. Personally I prefer information dense interfaces with minimal chrome, but there really is a certain joy when you get to use a well designed and optimized fancy reactive, immersive interface

voidUpdate 2 hours ago | parent | prev [-]

Since when do images need more than just an <img> tag and a bit of styling?

Tepix 3 hours ago | parent | prev | next [-]

Sure, but there are sites like HN and there are sites like https://earth.nullschool.net/

What's your point? Are you saying all animations and rendering are unnecessary?

ahartmetz 3 hours ago | parent [-]

My point is that many websites are using way too much technology for what they need to do, with correspondingly long load times and choppy runtime behavior.

dspillett 3 hours ago | parent [-]

Correct. But if the page is, at least in part, an art piece rather than an information dump, or needs to do interactive rendering for its purpose (an editor like the markdown example, live updating status displays, games and other interactive toys, etc), then the tech is necessary and this article is useful.

manphone 3 hours ago | parent [-]

Which is something like less than one percent of websites, and this technology is deployed much, much more widely.

dspillett 2 hours ago | parent [-]

Again, correct. But “don't do this if you don't really need to do this” is rather pointless to say, hence is being downvoted, because people already being that sensible don't need to hear it, and those who are not are unlikely to listen. The comment is just noise, as unnecessary as the unnecessary animation and other gumf that it is railing against.

kodoman 3 hours ago | parent | prev [-]

Amazing how you are being so down voted, most webpages do utter crap that no one would want the webpages to be doing other then advertisers. Really most things should be text and if we lived in a more cooperative world everything would be easy to parse and manipulate text with some video and images and perhaps various well defined interface types for different services that can be implemented in various ways as to the users liking.