Hi 👋, I'm Adrian!

I'm a Senior Software Engineer that has been working since 2015 and in this blog we're gonna go through a journey exploring new technologies while embracing the core concepts of Software Development!

This article we will go through learning errors in Python. The pattern will be similar to other languages, but Python has ~30 types of errors, so we will take a dive at the most commonly used

This article we will go through learning the input and converters in Python. Simple concepts overall, but we will focus on where to use them and give some real world examples

This article we will go through learning functions in Python. Here we will focus on the important parts and what is unique for functions here

This article we will go through learning the operators in Python. Some will be obvious but others will be quite unique for Python

Let us talk about logging. In Node.js, logging refers to the practice of recording information about your application's execution during development, testing, and production

Let us talk about the most famous Node framework, express js, why its so popular and what problems does it solve

Let us talk about Node Modules, what they are, why are they present in every project and how you can use it for your advantage

We have taken a look at the logic in our past posts, now I want to focus more on the UI part of the applications and making them both pretty and performant. Today we will check some very popular UI libraries like Chakra UI, Radix UI, Headless UI, Mantine, Daisy UI and Prime React.

We have taken a look at the logic in our past posts, now I want to focus more on the UI part of the applications and making them both pretty and performant. Today we will check some very popular UI libraries like Chakra UI, Radix UI, Headless UI, Mantine, Daisy UI and Prime React.

This project is done by using React (CSR), Material UI for the styling, Commerce JS for the API that enables the functionality, TypeScript because its a must for every project and Stripe for the payments! This is part 1 where we build everything from scratch.

This project is done by using React (CSR), Material UI for the styling, Commerce JS for the API that enables the functionality, TypeScript because its a must for every project and Stripe for the payments! This is part 2 where we test and add the payment features using Stripe.

TypeScript is a strict syntactical superset of JavaScript and adds optional static typing to the language. TypeScript is designed for the development of large applications and transcompiles to JavaScript.

In these series of posts we will learn how to build a social network from scratch, we can login using JSON web token, create a user profile, edit it, delete it, post comments in a feed, delete your comments, you can comment other people comments. This will provide for a complete experience of the stack.

GraphQL has different libraries that enhances the experience of the developer and helps us produce code easier. We can add Prisma as an ORM that enhances our connection with the client by adding resolvers to the queries.

We will start learning how to test our applications with Cypress, this is a end-to-end testing framework for web test automation. We use this to test the application as a whole, instead of isolated components (cypress can do it, but RTL is better for unit testing), which is done using unit testing and integration testing when you want to make multiple components and layers work together

In Frontend fetching data from an API provided by a public one or from a server, is one of the most common things to do, let's check the methods we're using in 2023!

RTK Query is an advanced API interaction tool inspired by similar tools like React Query. But unlike React Query, RTK Query offers full integration with framework-agnostic Redux.

React Query is often described as the missing data-fetching library for React, but in more technical terms, it makes fetching, caching, synchronizing and updating server state in your React applications a breeze.

React Table is one of the best libraries out there to handle tables, its updated quite frequently and the developers behind it are very eager to listen to the community, lets check it out!

redux-toolkit is a SOPE (Simple, Opinionated, Powerful, Effective) library. It allows us to write more efficient code, speed up the development process, and automatically apply the best-recommended practices.

redux-saga is a library that aims to make application side effects easier to manage, more efficient to execute, easy to test, and better at handling failures. This is outdated, wrote it to show how it's used to do, as of November 2023 Redux Toolkit is the way of using Redux.

Redux Thunk middleware allows you to write action creators that return a function instead of an action. This is outdated, wrote it to show how it's used to do

Let's explore the concept of Context, both the API and the hook are one of the most misunderstood concepts, we will learn how to use it effectively! useContext is a great tool to share data between components.