this post was submitted on 03 Aug 2024
511 points (99.8% liked)
Programmer Humor
32581 readers
1115 users here now
Post funny things about programming here! (Or just rant about your favourite programming language.)
Rules:
- Posts must be relevant to programming, programmers, or computer science.
- No NSFW content.
- Jokes must be in good taste. No hate speech, bigotry, etc.
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
For a while I've been using XFCE's mousepad to write code. Basically notepad but with syntax highlight and line numbers. With all of the fancy tooling you get in IDEs and editors nowadays, it's hard to forget that you really don't need all of that crap to write code. Sure, integrated debuggers and LSP and autocomplete can be very convenient at times, but at the end of the day it's your skill as a programmer that matters, not your tools.
You certainly don't need it, but I don't see much point in not using tools that make my life easier. We don't need compilers (or interpreters, or virtual machines) either
I strongly believe that if you're a beginner programmer or if you're an experienced programmer learning a new language, you should first spend some time writing code with just a plain text editor, compiler, and (if applicable) debugger. It helps you understand the basics and build a good foundation of skills. Especially for beginner programmers, it keeps you from getting overwhelmed.
But yes, after you have the basics down, there's no reason to not use tools that make you more productive!