this post was submitted on 12 Feb 2026
66 points (100.0% liked)

Learn Programming

2132 readers
35 users here now

Posting Etiquette

  1. Ask the main part of your question in the title. This should be concise but informative.

  2. Provide everything up front. Don't make people fish for more details in the comments. Provide background information and examples.

  3. Be present for follow up questions. Don't ask for help and run away. Stick around to answer questions and provide more details.

  4. Ask about the problem you're trying to solve. Don't focus too much on debugging your exact solution, as you may be going down the wrong path. Include as much information as you can about what you ultimately are trying to achieve. See more on this here: https://xyproblem.info/

Icon base by Delapouite under CC BY 3.0 with modifications to add a gradient

founded 2 years ago
MODERATORS
 

I don't need something practical. I just need something fun to keep me motivated.

you are viewing a single comment's thread
view the rest of the comments
[–] ageedizzle@piefed.ca 2 points 1 month ago (2 children)

Man people actually code in binary? That's hardcore

[–] Ephera@lemmy.ml 9 points 1 month ago (1 children)

They don't type out the 0s and 1s, no. πŸ˜…

@otacon239@lemmy.world wrote "Assembly/Binary", because an Assembly language is basically just a list of aliases (or mnemonics) for the different combinations of 0s and 1s.

For example, HLT (Halt) may translate to 00000001, which is then already what your CPU understands.

In practice, these lists for the different Assembly languages will look like this: https://en.wikipedia.org/wiki/Opcode#Sample_opcode_table

[–] ageedizzle@piefed.ca 2 points 1 month ago

Ah I see. That’s interesting thank you.

[–] beveradb@sh.itjust.works 3 points 1 month ago (1 children)

My favourite childhood game RCT2 was a masterpiece of assembly: https://youtu.be/ESGHKtrlMzs

[–] ageedizzle@piefed.ca 2 points 1 month ago

It’s crazy to me that someone actually took the time to write a whole game in assembly. The skill required to do that is remarkable