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...
Continuer à lire →The main topics of the blog are coding and tech. Because that's what we do and love as developers, right? Learn how to code or how to improve your coding skills by reading our blog post!
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...
Continuer à lire →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 →J'ai écrit un article détaillé sur les talks de la conférence (journée du 1er) pour Welcome To The Jungle. N'hésitez pas à le consulter pour un compte-rendu plus complet et technique (conf par conf) mais beaucoup moins personnel que celui-ci....
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.