Open in app

Sign In

Write

Sign In

Arthur Mayer
Arthur Mayer

Home

About

Apr 23, 2021

Full stack web overview

Summary: I. DNS II. OSI or TCP/IP models III. Firewall IV. HTTP + SSL/TLS = HTTPS V. Load-balancer VI. Web, Application & Database servers VII. Global mapped overview I. DNS The Uniform Resource Locator (URL) is a web address containing fragments that indicates to your web browser what you are searching for. For…

Full Stack

5 min read

Full stack web overview
Full stack web overview
Full Stack

5 min read


Feb 4, 2021

Recursion.png

How to figure out Recursion concept in programming ? Tough to explain but let me tell you the story of Kad & Jo ! Basically, recursion is a function that call itself. Function used : float _pow_recursion(float x, float y) { if (y == 0) return (1); if (y < 0) …

Recursion

4 min read

Recursion.png
Recursion.png
Recursion

4 min read


Jan 11, 2021

Class and instance attributes

In this article we will see what are classes and instances in OOP (object oriented programming) with Python language. Summary: 0. Definitions 1. Code examples 2. User manipulations

Class

3 min read

Class and instance attributes
Class and instance attributes
Class

3 min read


Nov 19, 2020

What (deeply) happens when you type “ls -l” in the shell

Today we are going to see with more details what we’ve seen here for a deeper understanding of how the shell is working . We will navigate throughout the full shell process of the command line “ ls -l ” in 3 steps.

Shell

3 min read

What (deeply) happens when you type “ls -l” in the shell
What (deeply) happens when you type “ls -l” in the shell
Shell

3 min read


Oct 11, 2020

Libraries in C (static & dynamic)

Why should I use libraries ? How do they work ? How to create/use them ? Library is an archive, listing all of the items and functions bodies you will need to call into your program. To invoke them into your program you will have to include the header files…

Static Libraries In C

3 min read

Static libraries in C
Static libraries in C
Static Libraries In C

3 min read


Sep 16, 2020

What happens when you type gcc main.c

Let’s start with a file (e.g. main.c) written in language C. The C programming language is a computer programming language that was developed to do system programming for the operating system UNIX and is an imperative programming language. The goal of the gcc command (GNU Compiler Collection) is to make…

Compilers

2 min read

What happens when you type gcc main.c
What happens when you type gcc main.c
Compilers

2 min read


Sep 14, 2020

What is the difference between a hard link and a symbolic link ?

What is the difference between a hard link and a symbolic link ? A soft link (or a symbolic link) is a shortcut ; If the original file is deleted, the soft link will be useless. It has the ability to link to directories (the hard link cannot). A hard link is a copy or a duplicata ; If the original file is deleted, the hard link is preserved.

Hard Link Vs Soft Link

1 min read

What is the difference between a hard link and a symbolic link ?
What is the difference between a hard link and a symbolic link ?
Hard Link Vs Soft Link

1 min read


Sep 14, 2020

What happens when you type “ls *.c” in the shell

Here is an explanation of a basic shell comand line. Ls is a command line that permits you to list the files contained in the current working directory. With “ls” command, you can list more than just regular files. You can add some options to find what you…

Command Line

1 min read

Command Line

1 min read

Arthur Mayer

Arthur Mayer

Help

Status

Writers

Blog

Careers

Privacy

Terms

About

Text to speech