this post was submitted on 27 Oct 2025
439 points (99.3% liked)

Programmer Humor

27117 readers
4182 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
you are viewing a single comment's thread
view the rest of the comments

Even in Python you have to keep it siloed. You have to drip feed it pieces because if you give it the whole script it'll eat comments, straight up chop out pieces so you end up with something like

 def myFunction():
      # ...start of your function here...

replacing actual code.