Smith Flores·May 16, 2022Activation functionsActivation functions live inside neural network layers and modify the data they receive before passing it to the next layer. Activation…
Smith Flores·Jan 3, 2022What is IoTAs someone who works for an Internet of Things (IoT) software company, this is a question that I’m asked frequently. Whether it’s a friend…
Smith Flores·Oct 11, 2021Python3: Mutable, Immutable… everything is object!!!Python is an object-oriented programming language, and in Python everything is an object. Almost every object has some metadata (called…
Smith Flores·Oct 11, 2021Class and instance attributesObject Oriented Programming is not a programming language, but rather a model in which programs are organized around data or objects. OOP…
Smith Flores·Aug 26, 2021What happens when you type `ls -l *.c` in the shell ?ls is one of the most common commands in a Linux shell and probably the first command that you would use when learning Linux. Let’s take a…
Smith Flores·Aug 13, 2021How integers are stored in memory using two’s complementComputer machines are composed by digital memories that store information in bits (binary digit). It means that a bit is an unit — the…
Smith Flores·Jun 21, 2021Compilation in “C” language with gccThe GNU Compiler Collection is a set of compilers created by the GNU project. GCC originally stood for GNU C Compiler (GNU C Compiler)…