Fixing error ‘AttributeError: ‘dict’ object has no attribute ‘XXXX” in Python.

Fixing error ‘AttributeError: ‘dict’ object has no attribute ‘XXXX” in Python.

Tiempo de lectura: < 1 minuto Reading Time: < 1 minute Today I’m going to show you how to fix the problem “AttributeError: ‘dict’ object has no attribute ‘XXXX'” in Python. The error being received is due to the variable being a dictionary and not having the attribute XXXX. The XXXX attribute is used in the code as if it were ... Read more

Create a Flappy Bird-like Game Using Flame and Flutter

Create a Flappy Bird-like Game Using Flame and Flutter

Tiempo de lectura: 5 minutos Flutter is an open-source mobile development framework that enables developers to create high-quality mobile applications for Android and iOS. One of the most popular tools in Flutter for game development is the animation and graphics library known as Flame. Flappy Bird is a simple and addictive platformer game where a bird must fly through pipes … Read more

XAMPP Error when starting MySQL.

XAMPP Error when starting MySQL.

Tiempo de lectura: 2 minutos Reading time: 2 minutes Error MySQL shutdown unexpectedly. This may be due to a blocked port, missing dependencies, improper privileges, a crash, or a shutdown by another method. Press the Logs button to view error logs and check the Windows Event Viewer for more clues. If you need more help, copy and post this entire … Read more

Permission uses-permission android:name=’android.permission.SYSTEM_ALERT_WINDOW’ when uploading an app with Expo in React Native

Permission uses-permission android:name=’android.permission.SYSTEM_ALERT_WINDOW’ when uploading an app with Expo in React Native

Tiempo de lectura: 2 minutos Reading time: < 1 minutes When uploading an app that uses Expo, you need to be cautious with this permission: <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/> Expo automatically adds this permission to enable the development version. If you are uploading the app to Google Play and you don’t use this permission, it’s better to remove it. This permission allows … Read more

LISTAS HTML + JavaScript

LISTAS HTML + JavaScript

Tiempo de lectura: 5 minutos Reading time: 2 minutes To create a simple list from an array of objects, you need to follow the steps below: First, create a file with the .html extension, where we’ll create a div with an associated ID that will display the list of elements. The ID for the list, in this case, will be … Read more

Create a Socket (Client-Server) in Java

Create a Socket (Client-Server) in Java

Tiempo de lectura: 3 minutos Reading time: 4 minutes Application communication is a fundamental part of software development as it allows data transfer and interaction between processes. In this regard, sockets are a key tool in implementing network communication in Java. A socket is an endpoint of a connection between two processes that can be used to send and receive … Read more

Deep linking (opening web with mobile app) in React Native and Expo

Deep linking (opening web with mobile app) in React Native and Expo

Tiempo de lectura: 2 minutos Reading time: 2 minutes Hello, today I’m going to show you how to use Deep Links with React Native. The first thing we’re going to do is install the Deep Linking library from Expo (https://reactnavigation.org/docs/deep-linking/) npx expo install expo-linking Once installed, go to app.json and add our web schema (which we’ll accept as a link) … Read more

Discover the Technologies Netflix Uses to Deliver a Seamless Streaming Experience

Discover the Technologies Netflix Uses to Deliver a Seamless Streaming Experience

Tiempo de lectura: 2 minutos Reading time: 2 minutes Netflix is one of the most popular streaming platforms in the world, known for its extensive library of original content and high-quality user experience. But did you know that Netflix also utilizes advanced technology to deliver seamless streaming experiences? In this article, we will explore some of the technologies Netflix employs … Read more