this post was submitted on 16 Aug 2023
461 points (96.9% liked)

Programmer Humor

32484 readers
896 users here now

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

Rules:

founded 5 years ago
MODERATORS
 

When you come back from vacation
@programmerhumor

all 11 comments
sorted by: hot top controversial new old
[–] WhatAmLemmy@lemmy.world 28 points 1 year ago

I legitimately lol'd at this. Any time I return from a couple weeks off I'm like "what year is it" + "can you repeat all the stuff about the things".

[–] Dasnap@lemmy.world 16 points 1 year ago (2 children)

Me temporarily forgetting the structure of an if statement in Shell.

[–] unagi@feddit.nl 11 points 1 year ago (1 children)

I write shell scripts only very occasionally and have to look this up every time.

[–] exu@feditown.com 4 points 1 year ago

Like this I think

if [1]; then
    echo "hi"
fi
[–] giant_smeeg@feddit.uk 9 points 1 year ago

I'm more

Hello print("World")
[–] LazaroFilm@lemmy.world 7 points 1 year ago* (last edited 1 year ago) (1 children)
void HelloWorld(string) {
  if (string == "print") {
    Serial.print("Hello World"};
  }
}

Solved it.

[–] anders@rytter.me 1 points 1 year ago
[–] cryoistalline@lemmy.ml 4 points 1 year ago

im more of a c person index[array]

[–] nthcdr@lemmy.sdf.org 1 points 1 year ago

(format t “Hello ~a” 'World). If I’m on vacation and come back to the land of C based languages I will have reverted to the only syntax I enjoy working in.

[–] cs127@lemmy.sdf.org 1 points 1 year ago
void HelloWorld(void (* func)(const char*)) {
    func("Hello world!");
}