3 ms·
I do not understand the anti-JavaScript folks here. This is a forum that celebrates all sorts of automation, but now when a website wants to run automations tha
by appplication 2mo ago
I do not understand the anti-JavaScript folks here. This is a forum that celebrates all sorts of automation, but now when a website wants to run automations that is agitating?
I guess my question would be why does something so benign and common aggravate you so much? That feels like an exhausting way to live.
- javascripthater 2mo ago[flagged]
- tomhow 2mo agoWe've banned this account.
- ksbd-pls-finish 2mo agoI dislike JS, because I don't want to let random websites to run arbitrary code on my machine. Most importantly, enabling JS makes it much easier to spy on users, so I automatically assume that the website tries to spy on my and feel attacked. I agree it's not healthy, and I didn't care about privacy that much in the past. I guess this may be caused by my work experience.
- pluc 2mo agoThere's no reason to require JavaScript to render rich text especially when it's an article about CSS prowess.
- semolino 2mo agoMost webpages that function as simple documents can be built without JS. If you build webpages, you probably have an intuition for what kind of functionality necessitates JS. When a webpage requires that users enable JS, then, when it doesn't seem like it should need it, that's a signal of either developer laziness or nefarious behind-the-scenes activity (tracking, etc.).
- true_religion 2mo agoAfter writing a long article, creating videos, images, and no doubt doing multiple rounds of edits... why should an author also have to ensure that their publication works without JS? From what I can see, they're doing so codeblocks have proper highlighting but also can be copied & pasted. It's a reasonable choice. They're not lazy. They even have long, accurate alt tag descriptions for all their images. If I would guess, they have an inherent desire to see their work viewed in exactly the way it was intended, so they deliberately refuse progressive enhancement when it's a matter of reader choice. The visually impaired who have no choice are accommodated. Anti-JS readers are not.
- 1718627440 2mo ago> After writing a long article, creating videos, images, and no doubt doing multiple rounds of edits... Because that doesn't include writing JS, that's a separate step.
- true_religion 2mo agoThey’re using a plugin to get the effect they want and for analytics. Presumably this is easier than a non js solution or they couldn’t find one.
- GoblinSlayer 2mo agoJavaScript is an RCE vulnerability. Browsers literally execute it as "run this malicious code in a vm, then nuke the whole thing from the orbit".
- wasmperson 2mo agoThere are several reasons someone might prefer to use websites that work without JS: - The page will load noticeably faster (and likely be faster in a number of other ways). - The semantics are more predictable (buttons, links, scrolling, text selection, find-in-page, etc. all behave the same as on other websites). - The page will work in Tor Browser's "maximum security" setting. - The page is more likely to work better in screen readers or with other less-commonly used web browsing tools. - The page is more likely to work in older browser versions. - It used to be that a JS-free page had lighter CPU usage, though newer CSS features and browser setTimeout/setInterval throttling have changed the balance somewhat. - The page does not require running untrusted/proprietary code on your computer (the browser sandbox is a small comfort).
- 1718627440 2mo agoThe Web is a document format, it does not need a client side turing complete language. Granted, now-a-days people also use it to ship applications, and I have nothing against using JS for that, but for a document it is really dumb to require code execution in order to just view the document.