Resolving Docker error with Error response from daemon: client version 1.53 is too new. Maximum supported API version is 1.43

Resolving Docker error with Error response from daemon: client version 1.53 is too new. Maximum supported API version is 1.43

Tiempo de lectura: < 1 minutoThis is an error that appears Error response from daemon: client version 1.53 is too new. Maximum supported API version is 1.43 when we have different API versions on the client and server of Docker. To solve it you just need to update Docker in this way: sudo apt update && sudo apt install docker-ce … Read more

How to Create Intelligent Automations with Alexa and AI in 2026 (Step-by-Step Guide)

How to Create Intelligent Automations with Alexa and AI in 2026 (Step-by-Step Guide)

Tiempo de lectura: 2 minutosThe voice assistants have evolved significantly in recent years. By 2026, Alexa is no longer just a music player or light controller, but an actual automation hub capable of integrating with artificial intelligence, cloud services, and external systems. In this tutorial, you’ll learn how to create intelligent automations with Alexa, integrate it with external services, … Read more

What programming language to start with?

What programming language to start with?

Tiempo de lectura: 2 minutosIf I had to start programming from scratch without prior knowledge but with all the knowledge I gained after working on technology for years, I would change many things compared to how I started. I wouldn’t do it because the traditional path is bad, but because the industry has changed a lot. Today there are … Read more

Docker from Scratch: The Ultimate Tutorial for Getting Started with Containerization Like a Pro

Docker from Scratch: The Ultimate Tutorial for Getting Started with Containerization Like a Pro

Tiempo de lectura: 2 minutosDocker is everywhere: in backend, in deployments, in data science, in AI… but the first time you hear about it usually sounds like black magic. Don’t worry: I’ll explain it clearly, with examples and a narrative thread that hooks. What is Docker and why are everyone talking about it? Imagine that you can package your … Read more

How to Create Your Own Custom Model with Llama 3.2 + Google Colab (Step-by-Step Fine-Tuning)

How to Create Your Own Custom Model with Llama 3.2 + Google Colab (Step-by-Step Fine-Tuning)

Tiempo de lectura: 2 minutosDo you want to teach your AI model super specific knowledge? Do you need it to respond like an expert in a specific niche? Then fine-tuning is your best friend… and it’s easier than you think! You will learn how to train Llama 3.2 with your own dataset using Google Colab and Unslope, and generate … Read more

How to Create Your Own Autonomous AI Agent with AutoGen Studio

How to Create Your Own Autonomous AI Agent with AutoGen Studio

Tiempo de lectura: 2 minutosLearn how to create an autonomous intelligent agent that can plan, reason and execute tasks on its own without needing expertise in AI. Just follow these steps. Autonomous agents are revolutionizing personal and professional productivity thanks to platforms like AutoGen Studio, which allows you to build assistants that: Requirements COUNTS ON AutoGen Studio PYTHON 3.10+ … Read more

Docker Compose for React with Next.js in Development Mode

Docker Compose for React with Next.js in Development Mode

Tiempo de lectura: < 1 minutoToday I bring you a Docker Compose setup to run your React application with Next.js in development mode. The first thing you need to do is create this docker-compose.yml file: version: ‘3’ services: nextjs-app: build: . ports: – “3000:3000” volumes: – .:/app environment: – NODE_ENV=development Now create this Dockerfile: # Use a Node.js alpine image … Read more

Adding GDPR European Ad Consent Message with React Native Google Mobile Ads (ADMOB) using Expo

Adding GDPR European Ad Consent Message with React Native Google Mobile Ads (ADMOB) using Expo

Tiempo de lectura: 2 minutosToday we are going to learn how we can add the mandatory ad consent message to comply with GDPR. The first thing we need to do is to have our message set up: https://devcodelight.com/mensaje-consentimiento-conforme-rgpd-para-admob/ NOTE: I am using version 12.2.0 of react-native-google-mobile-ads at least (https://github.com/invertase/react-native-google-mobile-ads) Once configured, let’s go to android/app/proguard-rules.pro and add: -keep class … Read more

Adding Audio or Sounds in Flutter

Adding Audio or Sounds in Flutter

Tiempo de lectura: 2 minutosTo add audio or sounds in Flutter, we’ll use the audioplayers library. First, we install it: flutter pub add audioplayers Then, run flutter pub get in your terminal to install the dependency. If you haven’t already, organize your Flutter project so that you have a folder for assets like images and sounds. For example: – … Read more

How to Get Current Location (Latitude and Longitude) in Flutter

Tiempo de lectura: < 1 minutoTo quickly and easily get the current location, follow these steps: First, make sure you have added the geolocator dependency in the pubspec.yaml file: geolocator: ^7.0.3 Then, run flutter pub get to install the dependency. Next, add the necessary permissions in the AndroidManifest.xml file: Then implement the following code, which will request location permissions, get … Read more