How to Use Composer's ignore-platform-reqs Flag in PhpStorm?

The other day, I encountered an issue while trying to use Composer with PhpStorm in my local environment. Every time I would try to install or update packages, I would get an error message of the following format: The requested PHP extension xxx is missing from your system. This issue was happening because my local …

Unicode, UTF and Wide Characters: What Does It All Mean?

As a Windows programmer used to code in Delphi, I must admit I wasn’t ready for how strings are handled in C, the language I’m currently learning. To say the least, it was a shock, and I stumbled upon many issues. Among other things, I couldn’t understand how to use characters outside of the English …

How to Fix: ‘wxMessageBox’ Was Not Declared in This Scope

I’m currently learning to write GUI applications in C++ with Code::Blocks 20.03 as my IDE. I use wxWidgets 3.0.5 as my GUI library and wxFormBuilder 3.10.1 as my GUI builder. However, I initially encountered an issue for which I wanted to write a blog post. You see, when I built a newly-created wxWidgets project …