this post was submitted on 23 Jun 2024
730 points (96.4% liked)

Programmer Humor

18961 readers
942 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
[–] [email protected] 138 points 1 month ago (2 children)

On the other hand, I don't think you should add those ever

[–] [email protected] 52 points 1 month ago (6 children)

Sure. But in a sane language doing something totally nonsensical like that is an error, and in a statically typed language it’s a compiler error. It doesn’t just silently do weird shit.

[–] [email protected] 14 points 1 month ago

Agreed! Unfortunately these maddening behaviors were kind of set in stone several decades ago, and it has been (correctly) decided "Don't break the web", these weird quirks are kept in modern interpreters/compilers.

It's actually quite interesting to read through the logic to follow when implementing an interpreter:

https://262.ecma-international.org/13.0/#sec-object.prototype.tostring

[–] [email protected] 4 points 1 month ago* (last edited 1 month ago) (1 children)

a sane language

JavaScript

Pick one.

load more comments (1 replies)
load more comments (4 replies)
[–] [email protected] 46 points 1 month ago (1 children)

Onfuscators probably use it though, so no spec ever will be able to get rid of this crap.

[–] [email protected] 16 points 1 month ago (2 children)

Can I vote for obsfuscators not holding a language hostage?

[–] [email protected] 7 points 1 month ago

Best I can do is tie your pension to it.

load more comments (1 replies)
[–] [email protected] 119 points 1 month ago* (last edited 1 month ago) (2 children)

Use TypeScript, and nonsensical things like adding arrays to objects will be compile-time errors.

[–] [email protected] 58 points 1 month ago* (last edited 1 month ago) (4 children)

Yup. The libraries underneath will still allow nonsense at runtime, though, and it will now be harder to see, so it's a partial solution as done in standard practice.

An all-TypeScript stack, if you could pull it off, would be the way to go.

[–] [email protected] 22 points 1 month ago (1 children)

Most libraries have TypeScript types these days, either bundled directly with the library (common with newer libraries), or as part of the DefinitelyTyped project.

[–] [email protected] 11 points 1 month ago (1 children)

DefinitelyTyped is the exact kind of thing I'm talking about. You put TypeScript definitions over things, but under the hood it's still JavaScript and can fail in JavaScript ways.

load more comments (1 replies)
[–] Cethin 20 points 1 month ago (3 children)

So a strictly typed language.. I think those already exist.

[–] [email protected] 7 points 1 month ago (6 children)

If there was an easy way to use rust or something on webassemly and use that instead of JS. I'd be so happy, but I can't find how to do it without npm.

[–] [email protected] 6 points 1 month ago

We use this framework at work: https://leptos.dev

[–] [email protected] 5 points 1 month ago (1 children)

It's in alpha, but there is a Kotlin to wasm compiler in the works.

[–] [email protected] 4 points 1 month ago (9 children)

Does WASM do DOM manipulation nowadays?

load more comments (9 replies)
load more comments (4 replies)
load more comments (2 replies)
load more comments (2 replies)
[–] [email protected] 10 points 1 month ago (1 children)

By that logic what we really need is a modernization of Ada, where there are no compiler warnings and anything that would generate one in another language is instead a compiler error, everything is strongly typed, etc, etc.

If you aren't familiar with Ada, just imagine Pascal went to military school.

[–] [email protected] 5 points 1 month ago (1 children)

Pascal went to military school.

I'm not in love with the idea, but a language that cuts out the BS has a sudden appeal when on a group/team project.

[–] [email protected] 10 points 1 month ago

That analogy was chosen for a reason. Ada was originally developed by DOD committee and a French programming team to be a programming language for Defense projects between 1977 and 1983 that they were still using at least into the early 2000s. It's based on Pascal.

It was intended for applications where reliability was the highest priority (above things like performance or ease of use) and one of the consequences of that is that there are no warnings - only compiler errors, and a lot of common bad practices that will be allowed to fly or maybe at worst generate a warning in other languages will themselves generate compiler errors. Do it right or don't bother trying. No implicit typecasting, even something like 1 + 0.5 where it's obvious what is intended is a compiler error because you are trying to add an integer to a real without explicitly converting either - you're in extremely strongly-typed country here.

Libraries are split across two files, one is essentially the interfaces for the library and the other is it's implementation (not that weird, and not that different than C/C++ header files though the code looks closer to Pascal interface and implementation sections put in separate files). The intent at the time being that different teams or different subcontractors might be building each module and by establishing a fixed interface up front and spelling out in great detail in documentation what each piece of that interface is supposed to do the actual implementation could be done separately and hypothetically have a predictable result.

[–] [email protected] 97 points 1 month ago (3 children)
[–] [email protected] 29 points 1 month ago

I come back to watch this every few years. It's so good!

[–] [email protected] 23 points 1 month ago (1 children)

How do I know so little about programming yet this is still so funny?

Maybe the neuroscientists have some insight:

[–] [email protected] 7 points 1 month ago

You can tell that they find the answers absurd and the WAT memes are universally funny.

load more comments (1 replies)
[–] [email protected] 40 points 1 month ago (1 children)

Just wait until OP learns about cross product of matrices.

[–] [email protected] 10 points 1 month ago

mfw non-commutativeness

[–] [email protected] 39 points 1 month ago* (last edited 1 month ago) (1 children)

In node, I get the same result in both cases. "[object Object]"

It's calling the toString() method on both of them, which in the array case is the same as calling .join(",") on the array. For an empty array, that results in an empty string added to "[object Object]" at either end in the respective case in the picture.

Not sure how we'd get 0 though. Anybody know an implementation that does that? Browsers do that maybe? Which way is spec compliant? Number([]) is 0, and I think maybe it's in the spec that the algorithm for type coercion includes an initial attempt to convert to Number before falling back to toString()? I dunno, this is all off the top of my head.

[–] [email protected] 44 points 1 month ago* (last edited 1 month ago) (1 children)

The inspector REPL evaluates as a statement-with-value (like eval), so the {} at the beginning is considered an empty block, not an object. This leaves +[], which is 0. I don't know what would make Node differ, however.

Edit: Tested it myself. It seems Node prefers evaluating this as an expression when it can, but explicitly using eval gives the inspector behavior:

[–] [email protected] 21 points 1 month ago (1 children)

So there's yet another level of quirkery to this bullshit then, it seems. 😆 Nice digging! 🤝

I also noticed that if you surround the curlies with parentheses, you get the same again:

> eval('{} + []')
0
> eval('({}) + []')
'[object Object]'
[–] [email protected] 10 points 1 month ago (2 children)

Yep, parentheses force {} to be interpreted as an expression rather than a block — same reason why IIFEs have !function instead of just function.

load more comments (2 replies)
[–] [email protected] 25 points 1 month ago (2 children)

This is why I try my damnedest not to write in weakly typed languages.

string + object makes no logical sense, but the language will be like "'no biggie, you probably meant string + string so let's convert the object to string"! And so all hell breaks loose when the language's assumption is wrong.

[–] [email protected] 4 points 1 month ago

You don't necessarily need types for that kind of thing though, a strict linter that flags that code works just as well

[–] [email protected] 4 points 1 month ago

Some automatic conversion is fine.

a=3+0.2

print("Hello {name}. You are {age} years old")

That kind of thing. But the principle of least surprise definitely applies. If you get to the point where you're adding two booleans and a string, I feel like the language should at least say something. At least until the technology exists for it to physically reach out of your screen and slap you.

[–] [email protected] 21 points 1 month ago (1 children)
[–] [email protected] 7 points 1 month ago

Mandatory link

[–] [email protected] 20 points 1 month ago* (last edited 1 month ago) (3 children)

It's best not to touch anything web related, lest you want to go mad. It's like the elder scrolls or laying eyes on some cosmic horror creature. Tbf this also goes for C++

load more comments (3 replies)
[–] [email protected] 18 points 1 month ago* (last edited 1 month ago) (2 children)

Who would use that kind of type coercion? Who? I want to see his face.

[–] [email protected] 12 points 1 month ago (1 children)

I take this as less of a "I can't use this intuitive feature reliably" thing and more of a "the truth table will bite you in the ass when you least expect it and/or make a mistake" thing.

[–] [email protected] 6 points 1 month ago (2 children)

Just use a formatter. It'll show you that the second one is two statements:

  1. {} (the empty block)
  2. +[] coerce an empty array to a number: new Number(new Array())
load more comments (2 replies)
[–] [email protected] 5 points 1 month ago

It's not even the coercion that is the problem here. The types are already bad by themselves.

[–] [email protected] 15 points 1 month ago* (last edited 1 month ago) (1 children)
{} + 0
>> 0

0 + {}
>> "0[object Object]"

I'm going home.

load more comments (1 replies)
[–] [email protected] 15 points 1 month ago (1 children)
[–] [email protected] 25 points 1 month ago (2 children)

I've read different defenses for JavaScript for cases like this, which usually runs somewhere from you shouldn't be doing that anyway all the way up to if you just understood the language better you'd know why. While I agree with both of those points strongly as general principles, JavaScript also violates the principle of least surprise enough to make it concerning.

For what it's worth, I do like JavaScript. I really don't think that there is any perfect programming language.

[–] [email protected] 15 points 1 month ago (3 children)

I really don't think that there is any perfect programming language.

You'd be wrong 🦀🦀🦀🦀🦀

[–] [email protected] 11 points 1 month ago (1 children)

That's a weird emoji to use for elixir

load more comments (1 replies)
load more comments (2 replies)
[–] [email protected] 8 points 1 month ago (1 children)

JavaScript, like some other languages of the time, was designed with the Robustness Principle in mind. Arguably the wrong end of the Robustness Principle, but still.

That is, it was designed to accept anything that wasn't a syntax error (if not a few other things besides) and not generate run-time errors unless absolutely necessary. The thinking was that the last thing the user of something written in JavaScript wants is for their browser to crash or lock up because something divided by zero or couldn't find an object property.

Also it was originally written in about five minutes by one guy who hadn't had enough sleep. (I may have misremembered this part, but I get the feeling I'm not too far off.)

[–] [email protected] 5 points 1 month ago

It was 10 days, but, yeah, not a lot of time, especially for one guy. (That one guy was Brendan Eich, by the way.)

[–] [email protected] 8 points 1 month ago

I love inside jokes. I hope you be apart of one someday

[–] [email protected] 7 points 1 month ago* (last edited 1 month ago)

How about SQL in PostgreSql? query: select array_length(Array[]::text[], 1) Output: null

Dont get me wrong JS is still awful

load more comments
view more: next ›