this post was submitted on 28 Feb 2025
323 points (97.4% liked)

Programmer Humor

33658 readers
450 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[โ€“] [email protected] 3 points 4 hours ago (1 children)

Assembly: you are a cyborg.

Or programming a tiny microcontroller to blink a led as efficient as possible.

[โ€“] [email protected] 3 points 3 hours ago

Something wrong with:

#include <Arduino.h>


void loop()  {
digitalWrite(13, HIGH);
delay(1000);
digitalWrite(13, LOW);
delay(1000);
}

? ๐Ÿ˜‚๐Ÿคฎ