The Veil
I was introduced to computing on a Commodore and then moved to a DOS-based PC. Both used a terminal window as the primary interface, and I figured out the basics of both. I was comfortable typing commands before I ever used a mouse. Then college introduced me to UNIX, and I hit a wall. I avoided it for years and lived safely in the comfort of the Windows GUI.
Eventually, I came back. I was an aspiring developer, and by the late nineties, I switched my home computer’s operating system to Linux. I had to start learning bash and the terminal. It took time to get comfortable with it.
Those skills sat in the background for years. Now AI has shown up, and they are more valuable than ever.
The Dross
AI is fast. It generates code, writes config files, and scaffolds entire projects. It also lies. Confidently. It will tell you to import a library that does not exist, reference a file it never created, and call a method that was deprecated two versions ago. It presents all of this the same way it presents correct code: cleanly, with explanation, and zero hesitation.
If you only work inside the chat window, it all seems like reality.
The terminal is where you find out. Run the code. Read the error. Check if the file actually exists. That is how you burn away what is false and keep what is real.
The Strike
This series is one command at a time. Each post is short. Each post has something you can run.
Start here:
ls
That is it. List what is in your current directory. The AI told you it created three files. Did it? ls will tell you the truth.
This is the whole series in one command. The terminal does not guess. It does not hallucinate. It reports what is actually there.
The Truth
The terminal took me years to get comfortable with. I am not going to tell you it is easy or that you will love it immediately. What I will tell you is that it is the one part of your workflow that will not deceive you.
Coding with AI moves fast. The terminal is how you keep up without getting lost.
This series will build that up one command at a time. Next up: getting the terminal open and in front of you.

