this post was submitted on 18 Mar 2026
783 points (99.6% liked)

Programmer Humor

30450 readers
2403 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
783
ChipotleGPT (programming.dev)
submitted 16 hours ago* (last edited 16 hours ago) by Avicenna@programming.dev to c/programmer_humor@programming.dev
 

Would you like me to show you how to prepare a bowl using python?

you are viewing a single comment's thread
view the rest of the comments
[–] lmr0x61@lemmy.ml 22 points 14 hours ago* (last edited 14 hours ago)

To completely deflate the joke, it looks like the text output was stripped of its new lines, spaces/tabs, and backticks, because I think the code would be valid if allowed those elements in a Markdown context, e.g.:

```python

def reverse_linked_list(l):
    # …
    return prev

\```

(backslash included to show triple backtick)