Enable USB Debugging (Developer Options) on your Android device.

Tiempo de lectura: < 1 minuto   Enable USB Debugging (Developer Options) on your Android device. Photo by Lisa Fotios on Pexels USB debugging allows us to test and use our device in development mode. It can be enabled on a mobile phone, tablet, Android TV, Android Car, Smartwatch, and more. In order to activate it on your device (with Android … Read more

Fix import error in all classes in Android Studio

Fix import error in all classes in Android Studio

Tiempo de lectura: < 1 minuto Fix import error in all classes in Android Studio Photo by Eduardo Rosas on Pexels Sometimes when importing an Android project, you may encounter the surprise that all the classes you open have pre-compilation problems. It’s not that your code is broken. The issue is because the cache retains corrupted data that, when imported into … Read more

Using GitHub Desktop as a Client for GITLAB and other GIT Services

Using GitHub Desktop as a Client for GITLAB and other GIT Services

Tiempo de lectura: 2 minutos Using GitHub Desktop as a Client for GITLAB and other GIT Services Photo by Christina Morillo on Pexels Github Desktop is the official GitHub client for Windows, Linux, and Mac. It is available for free on their website: https://desktop.github.com/, and it simplifies the process of synchronizing, updating, and maintaining your projects in GIT. Through a … Read more

Building a Responsive Design with Bootstrap Grid: Discover How to Adapt Your Layouts to Different Screen Sizes Using Bootstrap Grid System Classes.

Building a Responsive Design with Bootstrap Grid: Discover How to Adapt Your Layouts to Different Screen Sizes Using Bootstrap Grid System Classes.

Tiempo de lectura: 2 minutos Reading time: 3 minutes Good morning, in today’s tutorial, I’m going to talk to you about the GRID structure of BOOTSTRAP. The Bootstrap grid system is one of the most prominent and useful features of this CSS framework. It provides a structure of rows and columns that allows for easy creation of flexible and responsive … Read more

Flutter in Docker Compose Container to run in web browser

Flutter in Docker Compose Container to run in web browser

Tiempo de lectura: < 1 minuto Hello, today we’re going to see how we can use a Docker Compose to run Flutter in the web browser of the host machine where Docker is running. The first thing we’re going to do is create the docker-compose.yml file and add this content: version: “3.1” services: flutter: build: context: ./Dockerfile dockerfile: flutter_arm restart: unless-stopped … Read more