Our Blog
Latest Blog & Articles
How to AI-Proof Your Coding Career
AI Will Not Replace Software Engineers, But Code Literacy Will Become More Important It is pretty crazy to see how AI has changed the world, especially in the field of software development. AI is now writing code, verifying code, and helping developers build software faster than ever before. Because of this, many people are asking…
Why Good Students Write Bad Code
When I graduated from university, I thought I was a good programmer. After all, I had done everything that a successful computer science student was supposed to do. I aced my programming classes, and I was even given the opportunity to become an undergraduate teaching fellow. I taught discussion sections, held office hours, and helped…
Learn Makefiles in 12 minutes! [Beginner Tutorial]
If you’ve ever worked on a C project with multiple files, you’ve probably run into this problem: You don’t just have one .c file, you have a whole bunch of them. And compiling everything manually with gcc starts to feel messy, repetitive, and honestly… annoying. That’s exactly where Makefiles come in. In this post, I’m…