fbpx
Why is software so expensive to create?

Why is software so expensive to create?

I also used to wonder why software is so expensive. I’m Wahid and this article is based on my personal experience of 28 years of software development. I hope it helps you to better understand software and plan projects so they provide real value that customers...
Bootcamp vs. college degree

Bootcamp vs. college degree

What if there was a 3rd option? I came across this infographic from WhatsTheHost.com recently and thought you’d like it. It compares two options most people think about when deciding to learn how to code. Take Up Code is neither a bootcamp nor a college. The...
C++ operator precedence chart in detail

C++ operator precedence chart in detail

This is a chart I combined from various sources online and from books. You can use it to better understand which operators C++ will apply before others whenever you have an expression containing multiple operators. Most other charts say that you can override the order...
Hello World explained line by line

Hello World explained line by line

I’m a big fan of starting out simple and building up from there. And it’s harder to get any simpler than a “Hello, World!” application. Even here, if you really think about it, there’s a lot going on. So I decided to annotate this for...