Python Developer – Tech Notes

Welcome to my tech-notes page! Here, I’ll share my journey and experiences in the world of programming and technology. Over the past 6 months, I’ve been on a learning adventure, diving into projects and practice exercises to enhance my skills.

This page serves as a digital notebook of my tech exploration. It’s a platform for me to document what I’ve learned and how I’m advancing in the programming world. Additionally, you’ll find some educational articles, where I break down concepts and share valuable insights I’ve gained. 

Cleaning and manipulating datasets

Cleaning and manipulating datasets

Data Science is a multidisciplinary field that combines various techniques and processes to extract knowledge from structured and unstructured data. One of the key concepts in this field is data cleaning and preprocessing. This activity includes managing data sources...

Trading Tools (Part 1)

Trading Tools (Part 1)

Following my journey in learning Python I started to build a trading tools app. This will be my first complete software development. The plan is to make an application for managing investments and other financial tools. This first part covers the basic functions of...

Making a Pig-Game in Python

Making a Pig-Game in Python

Rules for a pig-game are the following. Players will roll dice in turns trying to get the threshold needed to win the game. In each turn, the player will have the chance to roll dice an unlimited number of times until the dice is 1, in which case the player will lose...

Making a Tic-Tac-Toe in Python

Making a Tic-Tac-Toe in Python

Making a tic-tac-toe in Python doesn’t require much knowledge about the language itself, the true challenge consists of how to approach the project and what will be the logic that we will apply to it. The way I am going to resolve it is simple, a game playing with the...