Artificial Intelligence is Already Here (and You Probably Use It Every Day Without Knowing It)

Tiempo de lectura: < 1 minuto Do you think artificial intelligence is something far-off, from movies or secret laboratories? No! AI already forms part of your daily life, and it’s the most curious thing that many times you don’t even realize it. In this video, I’ll explain what technologies based on AI are currently working around us and how they’re silently … Read more

Agents of Artificial Intelligence: It’s Not Science Fiction, 2025

Agents of Artificial Intelligence: It’s Not Science Fiction, 2025

Tiempo de lectura: < 1 minuto The Artificial Intelligence Agents are no longer something of the future. They are here. They work and they are about to change everything. You will be explained in this video in a clear and simple way: You’ll also see real examples like AutoGPT, BabyAGI and personalized agents that are already taking decisions, automating tasks and … Read more

From intern to CEO: the mindset that changed my career

From intern to CEO: the mindset that changed my career

Tiempo de lectura: < 1 minuto Pasé de <strong>no saber nada y ser becario</strong>—> a dirigir un equipo. Y no, <strong>no fue por contactos</strong>. La clave fue algo mucho más poderoso: una <strong>mentalidad distinta</strong>, una forma de ver cada reto como una oportunidad para crecer. You will learn about it without filters on how to develop a growth mindset, how to … Read more

Do you think a personal brand only matters if you’re an influencer?

Do you think a personal brand only matters if you’re an influencer?

Tiempo de lectura: < 1 minuto You are more than ever, your personal brand is your resume. Whether you work for an employer, freelance, or building your own project: what others see of you matters… and a lot. In this video, I explain why you are your brand, and how you can learn to communicate what makes you unique without pretending … Read more

How to Create a Mobile App with Local AI Using Mistral and Transformers.js with React Native

How to Create a Mobile App with Local AI Using Mistral and Transformers.js with React Native

Tiempo de lectura: 2 minutos Do you imagine an app that works with artificial intelligence without internet connection? Today I’ll show you how to use Transformers.js and a model like Mistral 7B quantized in the browser or on your mobile, without sending data to external servers. You’ll achieve total privacy by using your own device, it’s free to use, works … 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 minutos Learn 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

Show number of tests executed and passed in SonarQube with Jest, Vitest and Pytest

Show number of tests executed and passed in SonarQube with Jest, Vitest and Pytest

Tiempo de lectura: 2 minutos Today we are going to learn how to pass and display the number of tests that have been covered in SonarQube. For React with Vite: First, we install: npm install -D vitest-sonar-reporter Now, we go to the vitest.config.ts We add: html reporters: [‘default’, ‘vitest-sonar-reporter’], // JUnit reporter to generate test reports outputFile: ‘test-results/test-results.xml’, // XML … Read more

Function for changing the brightness on a OLED screen from an Arduino 96 in (inches) display (SSD1306)

Function for changing the brightness on a OLED screen from an Arduino 96 in (inches) display (SSD1306)

Tiempo de lectura: < 1 minuto We bring you a function that allows to reduce the brightness of the OLED SSD1306 screen connected to our Arduino. We add this code using the Adafruit library: adafruit/Adafruit SSD1306@^2.5.7 adafruit/Adafruit GFX Library@^1.11.9 We create this function: void OledDisplay::brightness(uint8_t level) {     display.ssd1306_command(SSD1306_SETCONTRAST);     display.ssd1306_command(level); } We can add values in the range: 0-255 For level = 255, all … Read more