this post was submitted on 21 Mar 2025
677 points (99.4% liked)

Programmer Humor

22324 readers
2129 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 2 years ago
MODERATORS
 

Original post: hachyderm.io (Mastodon)

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 91 points 3 weeks ago (23 children)

Is the backend Python and the frontend JavaScript? Because then that would happen and just be normal, because Boolean true is True in python.

[–] [email protected] 138 points 3 weeks ago (10 children)

Probably, but if you're interpreting user inputs as raw code, you've got much much worse problems going on, lol.

[–] [email protected] 8 points 3 weeks ago (1 children)

Given the warning about capitalization, the best possible case is that they're using ast.literal_eval() rather than throwing untrusted input into eval().

Err, I guess they might be comparing strings to 'True' and are choosing to be really strict about capitalization for some reason.

[–] [email protected] 12 points 3 weeks ago

Yeah. Maybe .to_lower() is really expensive in their environment, lol.

load more comments (8 replies)
load more comments (20 replies)