this post was submitted on 21 Apr 2024
720 points (97.0% liked)

Programmer Humor

33603 readers
20 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS
 
top 50 comments
sorted by: hot top controversial new old
[–] gaael@lemmy.world 96 points 10 months ago (4 children)

You'll find an npm package to help you count up to 2.

(I recently learned - maybe here - that the is-even package has over 170k weekly downloads)

[–] Drusenija@lemmy.world 83 points 10 months ago (2 children)

What's even wilder is if you look at the code of that package, all it does is include the is-odd package and then return !is-odd. And the is-odd package isn't much better, it does some basic checks on the input and then returns n % 2 === 1.

[–] NotAViciousCyborg@lemmy.world 27 points 10 months ago (3 children)

I thought I was missing something. JS is one of my main languages and I always just write the is-odd function myself since it's like 10 characters. It boggles the mind that is-even has 176k weekly downloads

[–] kevincox@lemmy.ml 19 points 10 months ago (1 children)

To be fair having a name can make things easier to read. I get that i % 2 == 0 is a common pattern and most programmers will quickly recognize what is happening. But isEven(i) is just that much easier to grok and leaves that brainpower to work on something else.

But I would never import a package for it. I would just create a local helper for something this trivial.

[–] NotAViciousCyborg@lemmy.world 10 points 10 months ago (1 children)

Exactly what I would do if I had to reuse it, especially now since I know that adding a package would actually add 2. It all just seems so...inefficient

[–] kevincox@lemmy.ml 11 points 10 months ago (1 children)

Even if the code isn't reused adding names to sub-expressions can be very valuable. Often times I introduce new functions or variables even if they are only used once so that I can give them a descriptive name which helps the reader more quickly understand what is happening.

load more comments (1 replies)
load more comments (2 replies)
load more comments (1 replies)
[–] hemko@lemmy.dbzer0.com 25 points 10 months ago

Is-even continues to be the best joke in the industry

[–] PrettyFlyForAFatGuy@feddit.uk 11 points 10 months ago

Oh boy, this actually made me laugh out loud

[–] kamen@lemmy.world 10 points 10 months ago

This must be a "hold my beer" kind of joke and someone wanting to see how far they can take it.

[–] udon@lemmy.world 71 points 10 months ago
  1. it's easy to make fun of
  2. it makes every other programming language look better in comparison
[–] SGG@lemmy.world 65 points 10 months ago
  1. It runs in browsers
  2. If you hate your co-workers, then they will also feel your pain.
[–] Tenkard@lemmy.ml 64 points 10 months ago (7 children)
  1. You can call it "Java" to enrage other programmers
  2. You can compare numbers against strings without wasting time converting them
[–] neclimdul@lemmy.world 11 points 10 months ago (1 children)

Array(16).join("wat" - 1) + " Batman!";

load more comments (1 replies)
load more comments (6 replies)
[–] AVincentInSpace@pawb.social 60 points 10 months ago
  1. It runs in the browser
  2. Web developers know it already so we might as well
[–] MsFlammkuchen@lemmy.blahaj.zone 60 points 10 months ago* (last edited 10 months ago) (3 children)
  1. It's not PHP.
  2. I don't know. I didn't think I'd get this far.
[–] bastion 25 points 10 months ago
  • It's not PHP
  • It's already implemented in browsers
[–] Hexarei@programming.dev 19 points 10 months ago (2 children)

PHP has gotten really good over the past few versions, actually. Lots of really great stuff has been added, it feels like it resembles rust more every release lol

load more comments (2 replies)
load more comments (1 replies)
[–] mokus@lemmy.blahaj.zone 59 points 10 months ago (5 children)
  1. Job security
  2. its not COBOL
load more comments (5 replies)
[–] BeefPiano@lemmy.world 56 points 10 months ago (1 children)
  1. It has the simplest multi-threaded implementation: no threads!
  2. You can goof off while your build system takes 20 minutes to rebuild a non-compiled language
[–] Hotzilla@sopuli.xyz 15 points 10 months ago

node_modules size of a Linux distro

[–] Fargeol@lemmy.ml 45 points 10 months ago* (last edited 10 months ago) (2 children)

1 - Easiest way to run a script in your browser
2 - Always finds its way if inputs are bad
Nan - undefined

[–] Skullgrid@lemmy.world 12 points 10 months ago (7 children)

NaN is of type number. because fuck me.

[–] kevincox@lemmy.ml 10 points 10 months ago

To be fair, this is actually reasonable. But it does look stupid on the face of it.

[–] zea_64@lemmy.blahaj.zone 10 points 10 months ago
load more comments (5 replies)
load more comments (1 replies)
[–] Skullgrid@lemmy.world 41 points 10 months ago (1 children)

I am forced to try to get a JS certification.

I am reaching the end of my rope, and starting to think of maybe putting my neck into one.

Isaac Newton said that we see far because we stand on the shoulders of giants.

Javascript is like standing on the shoulders of dwarves with brittle bone disease.

load more comments (1 replies)
[–] vocornflakes@lemmy.world 38 points 10 months ago
  1. Ubiquitous; insane amount of libraries and probably some of the best documentation of any language
  2. JS lambda function syntax is nice
[–] sirico@feddit.uk 33 points 10 months ago (2 children)

It leads to typescript

You get surprises from npm

[–] ByteJunk@lemmy.world 28 points 10 months ago (10 children)

I spent way too long today figuring out why my app was doing something that it's NOT supposed to do on weekends.

I read Luxon's docs (pretty cool lib tbh) again and again, and tried everything I could think of to get isWeekend to return a sane result.

Turns out I was pulling a somewhat older version of Luxon, where isWeekend didn't exist. In any sane language, I expect I'd get a huge warning about a property that doesn't exist, but alas...

Typescript helps me keep my sanity, but juuuuust barely.

[–] mynameisigglepiggle@lemmy.world 20 points 10 months ago* (last edited 10 months ago)

If isWeekend doesn't exist, then the weekend doesn't exist, so it's naturally false.

That's why JavaScript gets pushed so hard - it's part of the capitalist agenda to keep us working 7 days a week

load more comments (9 replies)
[–] Thcdenton@lemmy.world 25 points 10 months ago

You get suprises from npm

[–] lowleveldata@programming.dev 23 points 10 months ago

await and async

[–] kevincox@lemmy.ml 21 points 10 months ago (1 children)
  1. Is available to be used in website scripting.
  2. Not quite as full of footguns as PHP (although it is close).
[–] xmunk@sh.itjust.works 16 points 10 months ago

PHP is actually quite footgun free these days.

[–] xilliah@beehaw.org 19 points 10 months ago (2 children)

It has a cup of coffee as logo

[–] BorgDrone@lemmy.one 14 points 10 months ago (3 children)

That’s Java, not Javascript. Java is to javascript as ham is to hamster.

load more comments (3 replies)
load more comments (1 replies)
[–] Thann@lemmy.ml 16 points 10 months ago (3 children)
load more comments (3 replies)
[–] Aurenkin@sh.itjust.works 15 points 10 months ago

Write down any NaN advantages of JavaScript

[–] ColeSloth@discuss.tchncs.de 15 points 10 months ago

A lot of people are familiar with it and........um....hackers like it being in use?

[–] theherk@lemmy.world 14 points 10 months ago (6 children)

It runs in browsers. It… isn’t poop? I don’t know. I’m all out of ideas.

load more comments (6 replies)
[–] TrickDacy@lemmy.world 14 points 10 months ago (6 children)

God people it's getting old

load more comments (6 replies)
[–] jordanlund@lemmy.world 13 points 10 months ago (7 children)
load more comments (7 replies)
[–] sincle354@kbin.social 12 points 10 months ago

We have forced it, quite hamfistedly, to do anything. The organic hell-evolution of web browsers turned them into do-anything sandboxed mini-OS. It meant whatever hellish code you used to write your corporate mandated web app could now become a perfectly bloated standalone application. And the demonic language that would enable it was called Javascript. It does the backend and it does the frontend. You could consider those advantages over other devices, like toasters and those handheld electronic games from the 80s.

[–] heavyboots@lemmy.ml 11 points 10 months ago* (last edited 10 months ago)

Browsers love it!

Practically anything you write will execute without all that scope and well formed statements nonsense.

Mind you, number 2 is also its biggest flaw as well, but…

[–] someacnt_@lemmy.world 11 points 10 months ago
  1. It at least feels slightly little bit like lisp.
  2. Shit I'm f*ed

.. ah right, it runs on any browser. Lame

[–] Steamymoomilk@sh.itjust.works 10 points 10 months ago (1 children)

You can make minecraft mods

[–] AVincentInSpace@pawb.social 47 points 10 months ago (2 children)
load more comments (2 replies)
[–] sturlabragason@lemmy.world 10 points 10 months ago
load more comments
view more: next ›