Les pointeurs en C/C++
Malgré leur simplicité, les pointeurs semblent être la bête noire de ceux qui apprennent le C ou le C++. Je vais vous aider à maîtriser ces fameux pointeurs....
Continuer à lire →Main author of Mindsers Blog (yes, I am Mindsers), I write a lot to share my knowledge with other developers no matter their skills level. I currently run 2 businesses and contribute to open source.
Malgré leur simplicité, les pointeurs semblent être la bête noire de ceux qui apprennent le C ou le C++. Je vais vous aider à maîtriser ces fameux pointeurs....
Continuer à lire →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....
Continuer à lire →Les variables sont la base de la programmation. Nous ne ferions pas grand chose sans elles. Nous les retrouvons notamment dans tous les concepts plus avancés de programmation. Il serait même inutile de programmer sans variable. Nous allons reprendre les bases concernant les variables pour être accessible aux débutants. Néanmoins,...
Continuer à lire →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...
Continuer à lire →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...
Continuer à lire →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...
Continuer à lire →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...
Continuer à lire →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....
Continuer à lire →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.