this post was submitted on 25 Dec 2025
140 points (99.3% liked)

Programmer Humor

28022 readers
1834 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 ever just watch a YouTube guide but dont really learn anything or dont know where to go afterwards? well i made a meme about it if you have felt this way.

you are viewing a single comment's thread
view the rest of the comments
[–] BartyDeCanter@lemmy.sdf.org 2 points 3 hours ago (1 children)

I do this pretty regularly, with a default order. First is a simple guess the number game, then I update it to hangman. After that is either pong or minesweeper. Depending on what I’m learning that should be enough, or I can extend them in some way, such as multi-window pong or turning minesweeper into network battleship.

[–] KoboldCoterie@pawb.social 1 points 1 hour ago

I think Minesweeper is a great tutorial game. It forces you to learn different variable types, data structures, loops and user input at a minimum, and it's really easy to expand on to make it more complex without requiring unique or difficult logic. Turning it into Battleship is a fun progression - I hadn't considered that, but I like it!