this post was submitted on 06 Aug 2023
506 points (91.5% liked)

Programmer Humor

19176 readers
1781 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 1 year ago
MODERATORS
 
top 50 comments
sorted by: hot top controversial new old
[–] z3n0x@feddit.de 44 points 1 year ago (1 children)
[–] unreachable@lemmy.my.id 11 points 1 year ago

furiously clicking non actionable button

[–] FoxBJK@midwest.social 29 points 1 year ago* (last edited 1 year ago) (2 children)

Never heard of marquee or blink, eh?

[–] noproblemmy@programming.dev 7 points 1 year ago (1 children)

And why did you feel the need to bring up those suppressed memories?

[–] FoxBJK@midwest.social 1 points 1 year ago

Because those who don't study history are doomed to repeat it!

[–] ICastFist@programming.dev 24 points 1 year ago (1 children)

Wrong, annoying animations was Flash's thing. Javascript was made for annoying popups and alert boxes

[–] float@feddit.de 4 points 1 year ago

Also for these animated status line texts that were supposed to show what's being loaded currently.

[–] rothaine@beehaw.org 17 points 1 year ago (1 children)

"Sometimes there is a better choice than JavaScript"

We call it TypeScript

[–] bjornp_@lemm.ee 7 points 1 year ago

I heard they're looking to add typing to JavaScript in a very similar style as TypeScript. Basically running TypeScript in the browser without tsc.

There's at least a proposal which I hope they'll continue with.

[–] Feyter@programming.dev 13 points 1 year ago

I thought that's what GIF was created for... Even if the original introduction of it is saying something completely different.

[–] BobbyBandwidth@lemmy.world 12 points 1 year ago (1 children)
[–] dis_honestfamiliar@lemmy.world 10 points 1 year ago

That's JavaScript with extra steps.

[–] redcalcium@lemmy.institute 11 points 1 year ago (1 children)

Say that to the madlad who wrote a virtual machine in js that can boot Linux and Windows: https://bellard.org/jslinux/

[–] ICastFist@programming.dev 10 points 1 year ago

Something something he could, something he should

[–] asyncrosaurus@programming.dev 11 points 1 year ago

I was there for the first wave of SPAs, I even learned angularJs and Knockout. It did feel like a major atep forward, being able to make highly interactive applications. However, things quickly went off the rails when the tools stopped being about managing heavy client state, and became the default for everything, even when it ment using JavaScript to build extremely basic functionally browsers did natively with html, but extremely worse(e.g. navigation). The modern Web really is a victim of hype and trends.

Unless your app needs to work offline, or you have to manage dozens of constantly changing client side data points concurrently, your site doesn't need to be a big heavy js framework. My rule is if it looks like Google Maps, you need a SPA. if it looks like Gmail you need REST/HATEOS. and if it looks like google's mainpage, you need a server side rendering.

At some point you might see the light, and go back to making your websites simpler, but Im not hopeful. Until then I'm building the majority of things with HTMX and alpineJs.

[–] rostby@lemmy.fmhy.net 6 points 1 year ago
[–] oxideseven@lemmy.ca 5 points 1 year ago (6 children)

Doing Odin Project now and the constant shiting on JS online is sort of crushing my motivation. 😫

[–] BrucePotality@lemmy.world 25 points 1 year ago (1 children)

Don’t worry about, JS is a fine language and is used by all of the top companies. If you want to get a job as a software developer you have decent odds if you learn JS

[–] FoxBJK@midwest.social 3 points 1 year ago (1 children)

As someone currently job hunting - native JS isn’t enough anymore. Everyone wants React devs. I see some posts for Vue or Angilar and sometimes even TypeScript but the vast majority want React coders now.

[–] towerful@programming.dev 5 points 1 year ago

Very true.
If you are learning JavaScript, typescript is absolutely worth learning as well.
React and Vue have some additional paradigms, but it is basically just JavaScript/typescript.
It's a lot to learn all in one step.

I guess it's like trying to learn C# and Unity all in one

[–] garyyo@lemmy.world 21 points 1 year ago (3 children)

If you don't hate a programming language you simply haven't used it enough or are delusional. Every language sucks in its own special way, js ain't special.

[–] z3n0x@feddit.de 7 points 1 year ago

cue “if those kids could read they’d be very upset”

load more comments (2 replies)
[–] ursakhiin@beehaw.org 12 points 1 year ago

JS is fine. But as with any tool it's not the best for every scenario.

The flak JS tends to get us mostly because of the rise of popularity is Node.js leading to backend JavaScript beginning commonplace. which it's overall a poor choice for backend when compared to many other languages as the strengths that JS has are more tailored to frontend.

[–] HKayn@dormi.zone 7 points 1 year ago

Don't let it get to you. This is mostly just a circlejerk by people who don't even use JS themselves.

[–] elbarto777@lemmy.world 3 points 1 year ago

Don't listen to the javascript haters.

load more comments (1 replies)
[–] vox@sopuli.xyz 2 points 1 year ago* (last edited 1 year ago) (1 children)

css can do animations, and it's much more performant then js. I hate how over-used JavaScript is on "modern" websites.
some websites are even straight up unusable or don't display anything with js disabled....

[–] dukk@programming.dev 3 points 1 year ago (2 children)

Some websites, JavaScript is necessary for doing things without overloading a server. Mostly SPAs/PWAs and such. I’m using Voyager for Lemmy right now, which needs JS, but it gives me a great experience.

But yeah, JS is often overused. Luckily, with new technologies coming out like Astro and HTMX, we should hopefully start seeing less JavaScript on pages that don’t need it.

[–] vox@sopuli.xyz 2 points 1 year ago (1 children)

htmx just generates js too

[–] dukk@programming.dev 2 points 1 year ago

However, it uses a lot less JS. It’s only a few lines of JS to replace an HTML element, but a lot more to parse a bunch of JSON and then alter the HTML to reflect that.

[–] MonkderZweite@feddit.ch 2 points 1 year ago

Still wayting for a native solution to AJAX.

No, not Java beans.

[–] Ddhuud@lemmy.world 1 points 1 year ago* (last edited 1 year ago)

~~only~~ original

[–] dukk@programming.dev 1 points 1 year ago (2 children)
[–] MonkderZweite@feddit.ch 7 points 1 year ago

Huh, page displays nothing without js.

[–] hellishharlot@programming.dev 1 points 1 year ago

Just typescript at that point

load more comments
view more: next ›