this post was submitted on 18 Mar 2026
626 points (99.2% liked)

Programmer Humor

30520 readers
2035 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
top 15 comments
sorted by: hot top controversial new old
[–] Sonotsugipaa@lemmy.dbzer0.com 132 points 3 days ago

Congratulations! You've given birth to a beautiful baby [object Object].

[–] partial_accumen@lemmy.world 61 points 3 days ago

Why is this a surprise to anyone? Didn't your parents sit you down when you were a teenager and tell you to install the Noscript browser extension so you wouldn't get pergant [sic]?

[–] runner_g@piefed.blahaj.zone 23 points 3 days ago

you gotta be crazy to let JavaScript run on your body. #prochoice

[–] aeronmelon@lemmy.world 24 points 3 days ago

Click here to download the Impregnation Wizard.

[–] Ioughttamow@fedia.io 17 points 3 days ago (2 children)

how is babby formed? How girl get pragnent?

[–] grue@lemmy.world 20 points 3 days ago* (last edited 3 days ago)

¡¿Can u get... prrrreganté?!

[–] Quetzalcutlass@lemmy.world 15 points 3 days ago

Brendan Eich isn't going to like this.

[–] DarrinBrunner@lemmy.world 14 points 3 days ago* (last edited 3 days ago)

This is what happens when you dare to temporarily disable NoScript. You get preggers!

Ok MtF folks, we have found the secret

[–] RickyRigatoni@piefed.zip 11 points 3 days ago

surgeons are like. meat wizards.

[–] snausagesinablanket@lemmy.world 8 points 3 days ago (1 children)

#include <sys/types.h> #include <signal.h> #include <unistd.h>

int main() { pid_t pid = fork(); if (pid == 0) { // Child process while (1); } else { // Parent process sleep(2); kill(pid, SIGKILL); // Force kill child printf("Child process killed.\n"); } return 0; }

[–] ChaosMonkey@lemmy.dbzer0.com 1 points 3 days ago (1 children)
[–] Sonotsugipaa@lemmy.dbzer0.com 6 points 3 days ago

The cruelest part is not formatting it correctly :c

#include <sys/types.h>
#include <signal.h>
#include <unistd.h>

int main() {
    pid_t pid = fork();
    if (pid == 0) {
        // Child process
        while (1);
    } else {
        // Parent process
        sleep(2);
        kill(pid, SIGKILL);  // Force kill child
        printf("Child process killed.\n");
    }
    return 0;
}