this post was submitted on 30 Aug 2025
290 points (93.7% liked)

Mildly Infuriating

41819 readers
565 users here now

Home to all things "Mildly Infuriating" Not infuriating, not enraging. Mildly Infuriating. All posts should reflect that.

I want my day mildly ruined, not completely ruined. Please remember to refrain from reposting old content. If you post a post from reddit it is good practice to include a link and credit the OP. I'm not about stealing content!

It's just good to get something in this website for casual viewing whilst refreshing original content is added overtime.


Rules:

1. Be Respectful


Refrain from using harmful language pertaining to a protected characteristic: e.g. race, gender, sexuality, disability or religion.

Refrain from being argumentative when responding or commenting to posts/replies. Personal attacks are not welcome here.

...


2. No Illegal Content


Content that violates the law. Any post/comment found to be in breach of common law will be removed and given to the authorities if required.

That means: -No promoting violence/threats against any individuals

-No CSA content or Revenge Porn

-No sharing private/personal information (Doxxing)

...


3. No Spam


Posting the same post, no matter the intent is against the rules.

-If you have posted content, please refrain from re-posting said content within this community.

-Do not spam posts with intent to harass, annoy, bully, advertise, scam or harm this community.

-No posting Scams/Advertisements/Phishing Links/IP Grabbers

-No Bots, Bots will be banned from the community.

...


4. No Porn/ExplicitContent


-Do not post explicit content. Lemmy.World is not the instance for NSFW content.

-Do not post Gore or Shock Content.

...


5. No Enciting Harassment,Brigading, Doxxing or Witch Hunts


-Do not Brigade other Communities

-No calls to action against other communities/users within Lemmy or outside of Lemmy.

-No Witch Hunts against users/communities.

-No content that harasses members within or outside of the community.

...


6. NSFW should be behind NSFW tags.


-Content that is NSFW should be behind NSFW tags.

-Content that might be distressing should be kept behind NSFW tags.

...


7. Content should match the theme of this community.


-Content should be Mildly infuriating.

-The Community !actuallyinfuriating has been born so that's where you should post the big stuff.

...


8. Reposting of Reddit content is permitted, try to credit the OC.


-Please consider crediting the OC when reposting content. A name of the user or a link to the original post is sufficient.

...

...


Also check out:

Partnered Communities:

1.Lemmy Review

2.Lemmy Be Wholesome

3.Lemmy Shitpost

4.No Stupid Questions

5.You Should Know

6.Credible Defense


Reach out to LillianVS for inclusion on the sidebar.

All communities included on the sidebar are to be made in compliance with the instance rules.

founded 2 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] witty_username@feddit.nl 11 points 1 day ago (4 children)

If I'd want to write a site with js-equivalent functionality and ux without using js, what would my options be?

[–] ImgurRefugee114@reddthat.com 8 points 1 day ago (2 children)

WASM and cry because you can't directly modify the DOM without JS.

[–] possiblylinux127@lemmy.zip 1 points 1 day ago

You can't use web assembly without JavaScript to initialize it.

[–] unwarlikeExtortion@lemmy.ml 5 points 1 day ago* (last edited 1 day ago) (1 children)

You can't modify the DOM.

But ~~some~~ most dynamicity can stay - sites can be built freely server-side, and even some "dynamic" functionality like menus can be made using css pseudoclasses.

Sure, you won't have a Google Docs or Gmail webapp, but 90% of stuff doesn't actually need one.

A basic website doesn't require js.

A webshop, for example, does for the part around adding to cart and checkout - but it doesn't for merely browsing.

[–] dual_sport_dork@lemmy.world 3 points 1 day ago

For a web store you probably only need Javascript for payment processing. Insofar as I've seen pretty much all of the widgets provided by the card processors outright require Javascript (and most of them are also exceedingly janky, regardless of what they look like on the outside to the user).

You definitely don't need Javascript just for a shopping cart, though. That can all be done server side.

[–] hellfire103@lemmy.ca 5 points 1 day ago* (last edited 1 day ago) (1 children)

HTML and CSS can do quite a lot, and you can use PHP or cgi-bin for some scripting.

Of course, it's not a perfect alternative. JavaScript is sometimes the only option; but a website like the one I was trying to use could easily have just been a static site.

[–] possiblylinux127@lemmy.zip -1 points 1 day ago

The problem is that HTML and CSS are extremely convoluted and unintuitive. They are the reason we don't have more web engines.

[–] dondelelcaro@lemmy.world 2 points 1 day ago (1 children)

htmx or equivalent technologies. The idea is to render as much as possible server side, and then use JS for the things that can't be rendered there or require interactivity. And at the very least, serve the JS from your server, don't leak requests to random CDNs.

[–] XM34@feddit.org 4 points 1 day ago

Htmx requires JS. At that point you already failed in the eyes of the purists. And CDNs exist for a reason. You can't expect a website to guarantee perfect uptime and response times without the use of CDNs. And don't get me started on how expensive it would be to host a globally requested website without a CDN. That's a surefire way to get a million dollar bill from amazon!

[–] TrickDacy@lemmy.world -2 points 1 day ago

I mean you could build a site in next.js, ironically. Which is very counter intuitive because it literally is js you are writing, but you can write it to not do dynamic things so it effectively would be a static server rendered site that, if js is enabled, gets for free things like a loader bar and quick navigation transitions. If js is disabled it functions just like a standard static site.