Lost in the code
articles about programming

Muscula

"There are two ways of constructing a software design: One way is to make it so simple that there are obviously no deficiencies, and the other way is to make it so complicated that there are no obvious deficiencies" C.A.R. Hoare

    How to write less code? Automatic code generation with OpenApi

    When we have tens, hundreds, or thousands of these models in an application, the whole process of writing them can be very time-consuming, and prone to errors or simple typos. Then in addition there is the entire service code used for communication, and together that is a huge amount of code. But what if all this could be generated automatically without having to write a single line?

    Debugging in PHP and WordPress

    Debugging an application is a basic activity that is done when something doesn’t work. Whether you are using echo (“hello”), die (“not working”) or professional tools, the process is essentially the same - you track how the application is working at any given moment to understand what is happening to the data.