Open in app

Sign In

Write

Sign In

Matt
Matt

2 Followers

Home

About

Jan 3, 2022

Activation functions for Neural Networks

In a Neural Networks, a single neurons actually executes 2 tasks : first, with the Matrices of Weights and Biases, it does a linear transformation of the inputs into a single value then, it applies a specific activation function, transforming the single value into the output value of the neuron

4 min read

Activation functions for Neural Networks
Activation functions for Neural Networks

4 min read


Feb 2, 2021

Recursion and Stack

The 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 through a practical example : a recursive function to compute x power y, where x and y are integers.

2 min read

Recursion and Stack
Recursion and Stack

2 min read


Jan 12, 2021

How arguments are passed to functions and what does that imply for mutable and immutable objects

Introduction — All the data in a Python code is represented by objects or by relations between objects. Every object has an identity, a type, and a value. Identity An object’s identity never changes once it has been created. You may think of it as the object’s address in memory. The is and…

5 min read

How arguments are passed to functions and what does that imply for mutable and immutable objects
How arguments are passed to functions and what does that imply for mutable and immutable objects

5 min read


Jan 11, 2021

Class and instance attributes

Object-oriented programming (OOP) is a programming language model organized around “objects” rather than “actions” and data rather than logic. Historically, a program has been viewed as a logical procedure that takes input data, processes it, and produces output data. The programming challenge was seen as how to write the logic…

4 min read

Class and instance attributes
Class and instance attributes

4 min read


Dec 14, 2020

Shared (dynamic) Libraries vs. Static Libraries

A library is a file containing various object files. Those object files are the results of the 3rd phase of the compilation process, which containing 4 phases : preprocessing, compiling, assembling and linking. These are files ending with .o, containing binary code but not directly executable. Static and Dynamic libraries…

5 min read

Shared (dynamic) Libraries vs. Static Libraries
Shared (dynamic) Libraries vs. Static Libraries

5 min read


Dec 14, 2020

Shared (dynamic) Libraries vs. Static Libraries

A library is a file containing various object files. Those object files are the results of the 3rd phase of the compilation process, which containing 4 phases : preprocessing, compiling, assembling and linking. These are files ending with .o, containing binary code but not directly executable. Static and Dynamic libraries…

5 min read

Shared (dynamic) Libraries vs. Static Libraries
Shared (dynamic) Libraries vs. Static Libraries

5 min read


Published in What happens when you type ‘ls -l’ in a shell program ?

·Nov 21, 2020

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. The shell is just a program, although it plays an important role in the system. …

5 min read

What happens when you type ‘ls -l’ in a Shell program ?
What happens when you type ‘ls -l’ in a Shell program ?

5 min read


Published in Integers storage : The Two-complements method

·Nov 5, 2020

The 2-complement method theory

The 2-complement method theory As you know, computers are manipulating bits, 0 or 1. Therefore, any type of datas is represented by a series of 0 or 1. The next table shows the value range and storage size of various kind of variables in C language.

4 min read

The 2-complement method theory
The 2-complement method theory

4 min read


Oct 19, 2020

The original code

Believe it or not, the following code is completely viable in C. This code can be compiled, via gcc, and can then be executed.

3 min read

The original code
The original code

3 min read


Published in All you need to know about C static librairies

·Oct 9, 2020

Static Libraries in C : all you need to know

Libraries are a powerful tool for developper. in this article we will go through various topics : why using static libraries, how to create them, how do they work, how to use them… What is a static library ? A static library is a file, stored in object code, used to store functions, variables, classes etc……

3 min read

Static Libraries in C : all you need to know
Static Libraries in C : all you need to know

3 min read

Matt

Matt

2 Followers

Help

Status

Writers

Blog

Careers

Privacy

Terms

About

Text to speech