this post was submitted on 18 Mar 2026
1005 points (99.5% liked)

Programmer Humor

30494 readers
3098 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
1005
ChipotleGPT (programming.dev)
submitted 2 days ago* (last edited 2 days 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
[–] rockSlayer@lemmy.blahaj.zone 61 points 2 days ago (1 children)

Pythondef? No indentation? Complete and utter lack of pep8? I'll never get to eat at this point!

[–] lmr0x61@lemmy.ml 30 points 2 days ago* (last edited 2 days 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)