Mar 25, 2021Developing a matching applicationThe development of a matching application was born from the need to automate the matching of the startups with the mentors in the Techstars program by developing a simple algorithm and a super minimalistic interface to free up time for the staff, and as a result, allow them to focus…Application6 min readApplication6 min read
Feb 6, 2021Hack a Day: MasterMind ChallengeAs a representation of the Medellin campus and the only team, we wanted to face this challenge using C language. To remember our first steps in software development at Holberton School. C is fun! Medellin Campus Team members: David Arias Fuentes Valentina Jaramilo Ramirez Do you remember that old game of two…Mastermind4 min readMastermind4 min read
Jan 9, 2021what happens when you type holbertonschool.com?Hey there! Have you ever wonder what happens when you type holbertonschool.com or any other web address into your browser? Well, your browser displays the web page! But how it does that? Typing holbertonschool.com Let’s make the trip together and try to see what is happening there. …Holberton School8 min readHolberton School8 min read
Sep 30, 2020Member-onlyMutable vs Inmutable in PythonFirst, in the Python language, the data takes the form of objects, these objects are a block of memory with values, and a variable is something that references to that piece of memory. …Mutable Objects5 min readMutable Objects5 min read
Sep 8, 2020Static libraries vs Dynamic libraries in CBefore starting to describe the major differences between static and dynamic libraries let’s define a library first: A library is a collection of pre-processed functions stored in an object code format in a ready to use form. …Programming6 min readProgramming6 min read
Jul 6, 2020C Static LibrariesFirst of all, a library in C is a collection of pre-compiled functions that have been written and need to be reusable. That allows us to use a certain function into a program just by using at the start of our program a header file that provides declarations for library…Static Libraries In C5 min readStatic Libraries In C5 min read