Using the For Loop in Python

Using the For Loop in Python

Tiempo de lectura: 2 minutos Reading Time: < 1 minute In this tutorial, I will teach you how to use the “for” loop in Python. The “for” loop is a very useful tool that allows us to iterate over a list or iterable and perform an action for each element. To get started, you’ll need to have a list or ... Read more

Using the Map Function in Python

Using the Map Function in Python

Tiempo de lectura: 2 minutos Reading Time: 2 minutes In this tutorial, I will teach you how to use the “map” function in Python. The “map” function is a very useful tool that allows us to apply a function to each element of a list or iterable and return a new list with the results. To get started, you’ll need … Read more

What is Computer Science?

What is Computer Science?

Tiempo de lectura: 2 minutos Reading Time: 2 minutes Nowadays, computer science is an integral part of our lives. From communicating with friends and family to carrying out work tasks, computer technology makes our lives easier in many ways. But, how does computer science actually work? What are its fundamental principles? In its most basic form, computer science is the … Read more

How to Create a CSS Animation in WordPress

How to Create a CSS Animation in WordPress

Tiempo de lectura: 2 minutos Reading Time: 2 minutes Hello! In this tutorial, I’ll show you how to create a CSS animation in WordPress. CSS animations can add dynamism and life to your website and are relatively easy to implement. To get started, you’ll need to access your WordPress dashboard and create a new post or page. Once you’ve entered … Read more

Create a Sandbox Testing Account to Test In-App Purchases on iOS

Create a Sandbox Testing Account to Test In-App Purchases on iOS

Tiempo de lectura: 2 minutos Reading Time: 2 minutes When implementing in-app purchases on iOS, if you want to test the functionality of the purchases, you’ll need to create a testing account. The first thing we’re going to do is access our iOS developer account: https://developer.apple.com/ Once inside, go to Users and Access And choose Sandbox Testers https://appstoreconnect.apple.com/access/users/sandbox Click on … Read more

Publishing an App on the APP Store (iOS) with React Native

Publishing an App on the APP Store (iOS) with React Native

Tiempo de lectura: 3 minutos Reading time: 4 minutes Today I’m going to show you how to publish an app on the App Store (iOS). The first thing we need to do is create an iOS developer account ($99/year) https://developer.apple.com/account Once created and validated, we proceed to create the app. Go to Program resources and choose App Store Connect > … Read more

Add Google SignIn in React Native and Expo

Add Google SignIn in React Native and Expo

Tiempo de lectura: 2 minutos Reading time: 5 minutes Today, we are going to learn how to implement Google authentication in our React Native app. Once we have our initialized React Native project, we will use the library (https://docs.expo.dev/versions/latest/sdk/auth-session/). First of all, open app.json and add the fields “name” and “slug“: “expo”: { “name”: “App_name”, “slug”: “App_name”, And within app.json, … Read more

Replace All Screens in React Navigation

Replace All Screens in React Navigation

Tiempo de lectura: < 1 minuto Reading Time: < 1 minute To replace all screens in React Navigation (@react-navigation/native-stack) and load a single screen, we need to add the following code: navigation.reset({ index: 0, routes: [{ name: 'Menu' }], }); First, we get the navigation hook from a native-stack and apply a reset. We specify the starting point (index: 0) and ... Read more