this post was submitted on 10 May 2025
926 points (97.7% liked)

Technology

69946 readers
2500 users here now

This is a most excellent place for technology news and articles.


Our Rules


  1. Follow the lemmy.world rules.
  2. Only tech related news or articles.
  3. Be excellent to each other!
  4. Mod approved content bots can post up to 10 articles per day.
  5. Threads asking for personal tech support may be deleted.
  6. Politics threads may be removed.
  7. No memes allowed as posts, OK to post as comments.
  8. Only approved bots from the list below, this includes using AI responses and summaries. To ask if your bot can be added please contact a mod.
  9. Check for duplicates before posting, duplicates may be removed
  10. Accounts 7 days and younger will have their posts automatically removed.

Approved Bots


founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] Aux@feddit.uk 1 points 14 hours ago

Several reasons:

  • Compilers strip all the bullshit from the code. Most software projects have shitty code structure and navigating them without prior exposure is a bloody nightmare. Everything gets a lot easier in binary.
  • Compiler optimisations flatten the code into an easier to understand structure. You don't have to just around function definitions in multiple files when the compiler inlined them all for you to see on one screen.
  • Assembly debuggers usually have a lot more features than source code based ones: trapping OS calls, scripting, etc. They make life so much easier.

Most software developers have no fucking clue how computers work, it's all magic to them. People joke about "vibe coding with AI" these days, but let's be real, 99% of software developers are vibe coders, but with Google instead of AI. Of course these people will never understand a bit of assembly, they can't even fucking grasp the basics of higher level languages!

There's nothing hard about binaries, code is code.