Apr 13, 2020What happen when you type holbertonschool.comWhen you type holbertonschool.com in your browser6 min read6 min read
Jan 27, 2020Explaining to Lola what machine learning is…Lola is my grandma, she passed away in 2003, she was the best cooker and storyteller around the world. She never went to school, but she was very smart and many times, when I was a child, she explained to me how things work. …8 min read8 min read
Dec 19, 2019Differences between static and dynamic libraries.Why using libraries? As we develop programs, we realize that some parts of our code can be reused. The way to do this, is creating functions in a separated directory, to compile and finally use them at any time. Therefore, is not necessary rewrite code and we will save time…4 min read4 min read
Nov 28, 2019What happens when you type ls -l in the Shell?The basic answer to this question is: 1. The Shell read the ls –l command from the standard input. 2. Separates the string in tokens to differenciate between command and options. 3. Evaluates alias, built-in to identify the type of input. 4. Look for the command into the directories stored…Terminal5 min readTerminal5 min read
Sep 19, 2019Steps of compilation c (language)To compile a program in c require four steps: . Preprocessing: The preprocessors make the file ready to be compile it, getting the directives ( Macros, File Inclusion, Conditional Compilation and others) and indicating to the proccessor to preprocess the directives before compile the file. . Compilation: Convert into a machine-code or lower-level the programm according to c language. Produce an intermediate compiled output file with .s extension.Programming1 min readProgramming1 min read