-
Why Knowing Code Conventions Matters: Tips for Clean, Readable Code
Something you’ll realize when you start coding is that there are many ways that you can code the same thing. For example, when it comes to indentation, instead of using spaces, you can use tabs—or vice versa, instead of tabs, you can use spaces. When you write your for loop, your while loop, or your…
-
Stop Watching Beginner Coding Tutorials and Do This Instead!
The best way to learn how to code is not by watching videos or tutorials, but it’s by actually coding something. I, and a lot of other people, call this project-based learning. It’s like learning how to cook—you don’t get better by reading recipes or watching cooking tutorials, but by actually cooking and then tasting…
-
Pointers in C Explained: What They Are and Why You Need Them
When I first learned pointers in C, I thought they were very annoying. I would always run my program and then I would run into a segmentation fault error, and then I would have no idea why there was an error going on. It was just annoying to keep track of all the different pointers,…
How to Debug Like a Pro: Strategies for Beginners
When you’ve been coding for some time, you’ll eventually run into problems in your code or bugs in your program. Even the most experienced programmers encounter bugs. Bugs are annoying because you don’t understand why they’re happening, which can be frustrating. This is probably the most frustrating part of coding. However, when you debug your…
Top 5 C Functions Every Beginner Programmer Must Learn
Happy New Year! Today we’re going to talk about the top five functions that every beginner programmer must learn. It doesn’t matter which programming language you’re focusing on—whether it’s Java, Python, C, C++, or whatever programming language you’re learning—every beginner programmer should know these five C programming functions. The real reason why I believe every…
Why Building a Capstone Project is Key for Beginner Software Developers
If you’re at the beginning of your programming journey or you’re just starting to learn how to code, I recommend that you start thinking about building a Capstone project. If you don’t know what a Capstone project is, it’s a term I took from my university. It refers to a project we would build at…
How to Plan a Beginner-Friendly Coding Capstone Project
In my last video, I talked about why every beginner programmer should start building their capstone project as soon as possible. If you haven’t seen that video, be sure to check it out. In case you don’t know what a capstone project is, it’s a term I took from my university, where we built a…
Struggling To Come Up With a Coding Project? Try This Strategy!
In my last video, I talked about six steps on how to plan your Capstone coding project. If you don’t know what a Capstone project is, it’s just a term that I took from my university to describe a final project that we would do at the end of our semesters to showcase all the…
What Is Memory Management and Why It’s Crucial in Programming
Memory management is a crucial topic in software development, and that’s because it deals with how your program stores and retrieves data. We don’t have unlimited storage space or unlimited time, so we need to be careful about how we handle these things in our programs to ensure they run optimally and efficiently. When I…