Post Tweets with Image Using Python Twitter API v2

Post Tweets with Image Using Python Twitter API v2

Tiempo de lectura: 2 minutos Reading Time: 2 minutes Hello, today we are going to learn how to publish Tweets with images using Python with the Twitter API v2. The first thing we need to do is create a Twitter APP, for that, consult one of the previous tutorials. Let’s install the necessary libraries: pip install python-dotenv pip install requests … Read more

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