Python – Lambda Functions

By | 28/05/2025

In this post, we will see what the Lambda Functions are and how we can use them in our projects.But first of all: what are “Lambda functions”?“Lambda Functions are small, anonymous functions defined with the “lambda” keyword. Unlike regular functions defined with “def”, a Lambda Function is typically one line of code, used to perform… Read More »

AI – Introduction to Machine Learning

By | 14/05/2025

In this post, we will see what Machine Learning is, why it’s so important in AI, and we will see the different types of machine learning, along with their common algorithms and use cases. WHAT IS MACHINE LEARNING?Machine Learning is a subset of Artificial Intelligence that focuses on building systems that can learn from data,… Read More »

Category: AI

Python – Pandas

By | 30/04/2025

In this post, we will see what Pandas is and how we can use it in our Python projects.Pandas is an open-source Python library that provides high-performance, easy-to-use data structures and data analysis tools.Built on top of NumPy and provides easy-to-use data structures and data analysis tools. It is particularly well-suited for handling structured data,… Read More »

SwiftUI – Bank Holidays

By | 26/04/2025

Finally my new app, Bank Holidays, has been released on the Apple Store.But, what is it for?“The Bank Holidays app is a simple yet useful utility that allows users to look up official bank holidays for different countries and years. Users can select a country from a dropdown menu, choose a year, and then view… Read More »

AI – Run local LLMs with Ollama

By | 02/04/2025

In this post, we will see what Ollama is and how we can use it to run local LLMs.But first of all, what is Ollama? “Ollama is an open-source tool designed to run and manage large language models directly on our local machine. We can think of it as Docker, but specifically for LLMs. It… Read More »

Category: AI

Python – Streamlit (Part III)

By | 19/03/2025

Python – Streamlit (Part I)Python – Streamlit (Part II) In this last post on Streamlit, we will see how to manage a form Data, how to manage Buttons and Events and finally we will see how to manage the Session State. FORMForms in Streamlit allow us to group multiple input widgets and submit them together,… Read More »

Python – Streamlit (Part II)

By | 05/03/2025

In the previous post, we introduced Streamlit and covered some basic features. In this post, we’ll explore more advanced features, including navigation, tabs, columns and containers that allow us to create more complex and organized web apps. SIDEBARA sidebar can be added to our applications to house widgets, menus, or inputs that organize the user… Read More »