-
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…
-
Beginner’s Guide: Setting Up Your Coding Environment on Mac (VS Code, Git, & GitHub)
So, I got a new MacBook on Black Friday, and I haven’t done any coding on it yet. The development environment isn’t set up, so I was thinking of making a video about how to set up your development environment on a Mac. If you’re new to the channel, I do a lot of coding…
-
Understanding Data Types: Why They Matter and How to Use Them
Data types are foundational to programming. They allow computers to understand what kind of data they’re working with, how to store it, and how to process it. For programmers, understanding data types is like understanding how different pieces in chess move. If programming is like a game of chess, then data types are like the…
Is it worth it to learn how to program?
In this modern digital era, programming and programmers have become more and more crucial to building anything in this world. I personally have witnessed many of my friends change career paths towards programming. Some have switched for better pay and some for a less strenuous job. I also see a ton of people online learning…
Can I learn how to program?
Landing a programming job is the dream for many people these days. It provides a good work life balance. On top of that, it does sound cool and fun to build and use an application, but is it too hard? Does it take a particular kind of person to be a programmer? Maybe you are…
3 myths about programming jobs
For those who aspire to have a programming job, there’s a lot of speculation about what programming jobs are like. I see many questions online and even had my own guesses when I was still a student about what work life would be like. Maybe you are wondering how much skill is needed to land…
Which programming language should I learn first?
Ahhh…one of the first questions everyone asks when they want to get into programming. I see this question a lot online and it is totally understandable. Many aspiring programmers don’t know what’s out there and what the main purpose is for each language. Also, they may not see much of a difference between each of…
Why you should learn C
C is one of the big names in the programming world. Created in 1972 by Dennis Ritchie, this programming language has a long history and a continuing legacy that continues to this day. Much of the digital world has been built in C and even many popular languages like Python, Java, and JavaScript have been…
C tutorial: How to store different types of data in a program
In essence, all that a program does is take in data, process it, and give it to you in a processed format that you want. For example, YouTube takes in video data from one person and makes it available to many people. Video editing programs take raw video data and allows editors to edit the…