-
7 Tips to Stand Out as a Programmer
I know there are a lot of programmers like you out there watching these videos, trying to break into the software industry. You’ve probably noticed it’s becoming increasingly competitive—and it’s true, with more and more people attempting to enter the field. That’s why I decided to create this video on how to stand out as…
-
How To Open and Run Code in Terminal VS Code
When I was first learning how to code, our university made us use the terminal to write, compile, and run our code. They didn’t even teach us how to use an IDE, so the terminal was our IDE. If you don’t know what an IDE is, it stands for Integrated Development Environment. Terminal was my…
-
How To Handle File I/O in C: Read, Write, and Append
One of the coolest things you can do through programming is to read, write, and append information to files. Once you know how to do this, you can store data from your program to a file and receive that data at a later time when you restart the program. This is a foundational concept for…