MattActivation functions for Neural NetworksIn a Neural Networks, a single neurons actually executes 2 tasks :Jan 3, 2022Jan 3, 2022
MattRecursion and StackThe concept of recursion, and what’s happening beyond the scene, is from times to times not easy to understand. In this article, we’ll go…Feb 2, 2021Feb 2, 2021
MattHow arguments are passed to functions and what does that imply for mutable and immutable objectsIntroductionJan 12, 2021Jan 12, 2021
MattClass and instance attributesObject-oriented programming (OOP) is a programming language model organized around “objects” rather than “actions” and data rather than…Jan 11, 2021Jan 11, 2021
MattShared (dynamic) Libraries vs. Static LibrariesA library is a file containing various object files. Those object files are the results of the 3rd phase of the compilation process, which…Dec 14, 2020Dec 14, 2020
MattShared (dynamic) Libraries vs. Static LibrariesA library is a file containing various object files. Those object files are the results of the 3rd phase of the compilation process, which…Dec 14, 2020Dec 14, 2020
MattinWhat happens when you type ‘ls -l’ in a shell program ?What happens when you type ‘ls -l’ in a Shell program ?In this article, we’ll try to describe precisely the operations that are happening when you type a simple command in a Shell program.Nov 21, 2020Nov 21, 2020
MattinIntegers storage : The Two-complements methodThe 2-complement method theoryAs you know, computers are manipulating bits, 0 or 1. Therefore, any type of datas is represented by a series of 0 or 1.Nov 5, 2020Nov 5, 2020
MattThe original codeBelieve it or not, the following code is completely viable in C. This code can be compiled, via gcc, and can then be executed.Oct 19, 2020Oct 19, 2020
MattinAll you need to know about C static librairiesStatic Libraries in C : all you need to knowLibraries are a powerful tool for developper. in this article we will go through various topics : why using static libraries, how to…Oct 9, 2020Oct 9, 2020