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

Sending data from a WordPress post to a webhook upon post publication

Sending data from a WordPress post to a webhook upon post publication

Tiempo de lectura: 2 minutos Today we’re going to see how we can send data from WordPress to a webhook when a publication is made. The first thing we’ll do is install the plugin called Code Snippet, which allows us to add code. We are adding new code: add_action(‘transition_post_status’, ‘enviar_a_a_webhook’, 10, 3); function enviar_a_webhook($new_status, $old_status, $post) { // Verificar que … Read more

How to Change the Version of Kotlin using Expo React Native

How to Change the Version of Kotlin using Expo React Native

Tiempo de lectura: < 1 minuto We will today learn how to change the Kotlin version used in Expo. First, we need to install expo-build-properties, which will allow us to edit native project properties without modifying anything in the android folder. html npm run expo install expo-build-properties And then we modified inside our app.json and could add the kotlinVersion: