this post was submitted on 16 Jun 2025
632 points (99.4% liked)

Programmer Humor

25773 readers
2028 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 2 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] CosmicTurtle0@lemmy.dbzer0.com 21 points 2 months ago (1 children)

I'm a JavaScript developer. But it is fully possible to create a site with no frontend JavaScript

Like many things, you should use JavaScript if you need it. If you don't need remote data sources or live refreshes, pure html and css work perfectly fine and, I would go so far as to say, may even be necessary for resistance web pages.

This is especially true if you're using tor. JavaScript can leak your IP address and sites will work more reliability if you have static content that's refreshed on the back end than using a bloated next.js app taking up RAM.

[–] gofsckyourself@lemmy.world 1 points 2 months ago* (last edited 2 months ago) (1 children)

The vast majority of those are useless animations. Some are even a much worse implementation of something done much simpler with JS and requires significantly more code weighing down the page speed. Some examples of this are the cursor tracking examples which use hundreds of divs in a grid.

While there are some useful examples, it seems like this repo is more of a list of to show off advanced CSS, fancy animations, and designs.

[–] frezik@midwest.social 4 points 2 months ago (1 children)

Yeah, those are mostly showing off. They're not really what I'm getting at, either. I more want to challenge people to make useful things simply.

And yes, there are ways that JavaScript can be used to give users a faster and more streamlined experience. The web as it stands is so far past that justification. I swear there's lots of "full stack" devs that haven't a clue how to make a site without React.

[–] gofsckyourself@lemmy.world 2 points 2 months ago

Hell, there's way too many "full stack" developers that don't even know how domains work.