Obtener subtítulos de un vídeo de Youtube con Python

Obtener subtítulos de un vídeo de Youtube con Python

Tiempo de lectura: 2 minutos Reading Time: < 1 minute Hello, today we’re going to learn how to get subtitles from a YouTube video using a Python library. The first thing we need to do is install the library: pip install youtube-transcript-api You can find this library here: https://pypi.org/project/youtube-transcript-api/ To use it and get the subtitles from a video, we ... Read more

Interactive Tip Calculator with HTML and JavaScript

Interactive Tip Calculator with HTML and JavaScript

Tiempo de lectura: 3 minutos html Copy code In this tutorial, we are going to build an interactive tip calculator that allows users to input their bill amount and desired tip percentage. As users enter these values, the calculator will automatically display the total amount to pay, which can be useful in situations like dining at a restaurant. Here are … Read more

Actualizar target versión de Android o iOS en React Native Expo

Actualizar target versión de Android o iOS en React Native Expo

Tiempo de lectura: < 1 minuto html Copy code Reading Time: < 1 minute Hello, today we will see how we can update the target version of Android / iOS using React Native. This way, we can upgrade to version 33, which Google Play requires for app updates starting from August 31. Inside our React Native project, we add this dependency: … Read more

Get SHA-1 keys from keys stored in Expo with React Native

Get SHA-1 keys from keys stored in Expo with React Native

Tiempo de lectura: 2 minutos Reading Time: 2 minutes Hello, today I’m going to show you how we can use Expo’s internal keystore manager on React Native to view attributes of keys like the SHA-1 used in OAuth credentials. The first thing we’re going to do is run this command: eas credentials In my case, I choose Android, but you … Read more

Adding an Android Play Store Keystore using React Native with Expo

Adding an Android Play Store Keystore using React Native with Expo

Tiempo de lectura: 2 minutos Hello, today we are going to learn how we can upload our own signing key to the Android Play Store using Expo. The first thing we have to do is open the Expo credentials manager: expo credentials:manager Once opened, in this case, we select Android: It will ask if we are in the correct directory: … Read more

Generate Android, iOS, and Web Favicon Icons for Flutter – Dart

Generate Android, iOS, and Web Favicon Icons for Flutter – Dart

Tiempo de lectura: 2 minutos I have used flutter_launcher_icons to create the icons for my application. First, add it to your pubspec.yaml file under dev_dependencies and then run flutter pub get flutter_launcher_icons: “^0.13.1” In your pubspec.yaml file, add a flutter_launcher_icons section to configure the icons you want to generate. Specify paths to the image files that will be used as … Read more

Install Java OpenJDK on Windows

Install Java OpenJDK on Windows

Tiempo de lectura: 2 minutos Oracle’s Java version has become a paid service, which compels us to use OpenJDK, the open-source version that allows for a commercial form of Java. In this tutorial, I will show you how to install Java OpenJDK on Windows 10/11. To do this, we go to the website and download it. In my case, we … Read more

Resolve ERROR: JAVA_HOME is not set and no ‘java’ command could be found in your PATH. On Windows.

Resolve ERROR: JAVA_HOME is not set and no ‘java’ command could be found in your PATH. On Windows.

Tiempo de lectura: 2 minutos html Copy code Reading Time: 2 minutes Hello, today we are going to see how we can solve the error: “ERROR: JAVA_HOME is not set and no ‘java’ command could be found in your PATH. Please set the JAVA_HOME variable in your environment to match thelocation of your Java installation.” What is happening is that … Read more

Flutter Tutorial – Creating a To-Do List Application

Flutter Tutorial – Creating a To-Do List Application

Tiempo de lectura: 3 minutos A to-do list is a useful application for organizing pending tasks and can be an excellent learning project for those who want to get started with Flutter. Title: Flutter Tutorial – Creating a To-Do List Application Objective: In this tutorial, we will learn how to create a simple to-do list application using Flutter, allowing you … Read more