Pointers in C/C++
Pointers are hated by many first-year student of any dev school though it really isn't that bad. I'm going to give you few elements to help you master pointers...
Read more →We published several blog posts through years to share our knowledge and our experiences with other coders. This page lists all the English ones.
Those posts are free for all thanks to the Mindsers Club members. Join them to get prime acces to new posts.
Pointers are hated by many first-year student of any dev school though it really isn't that bad. I'm going to give you few elements to help you master pointers...
Read more →Variables are the absolute base of programming. We wouldn't be able to do much without variables. We can find it in all the advanced concept of programming....
Read more →Today is the day I officially annouce the launch of MindsersIT Community Forum! Why? How? Who is that for? This is what we will be talking about here....
Read more →Decouple your code, your coworkers will thank you. Decoupling isn't a new concept but I started documenting myself on it fairly recently. Here is what I learned. What is "decoupling" ? To understand decoupling you got to know what coupling code is first. There is a coupling notion when 2 services...
Read more →I recently wrote a post about GitFlow where I explained what it was and how to use it in most cases. Since that, I got a lot of feedback from readers concerning the use of GitFlow in some specific cases. In particular, in the case of a project where several...
Read more →GitFlow is what we call a workflow, a working strategy for Git. There are a lot of others, but GitFlow is one of the most famous. He was thought by nvie. What is the point of using it? Why is it important to have a Git strategy? Git is a...
Read more →Destructuring applies to arrays and objects. It consists in breaking down complex structures (array, object) to extract the values we are interested in. Those manipulations make the code simpler and easier to read. let [ valeur1, valeur2 ] = tableau let { valeur1, valeur2 } = objet The syntax is different whether it is an array...
Read more →I wrote a detailed post of all the talks (of the conference day, February 1st) for Welcome To The Jungle. Go check it out for a more in-depth technical recap, very much less personal than this one though....
Read more →GitHub, GitLab, Atlassian, etc. organizes each year a conference about Git and its evolution. I wrote the recap of the 2019 event in Brussels....
Read more →Forcing a file to be downloaded by the browser (user) seems hard because we do not have a native Javascript function to do that. I know why these functions don't exist but I still have to force download files in my apps! For example, when I put business logic in...
Read more →By clicking "Allow all", you agree to the storing of cookies on you device to enhance site navigation, analyse site usage, and assist in our marketing effort.