Solucionar error en PHPMyadmin de ‘count(): Parameter must be an array or an object that implements Countable’

Solucionar error en PHPMyadmin de ‘count(): Parameter must be an array or an object that implements Countable’

Tiempo de lectura: 2 minutos Reading time: < 1 minute If you encounter the following error when using PHPMyadmin or after finishing installing this extension: Some errors were detected on the server! Check the footer of this window. Warning in ./libraries/sql.lib.php#613 count(): Parameter must be an array or an object that implements Countable Backtrace ./libraries/sql.lib.php#2128: PMA_isRememberSortingOrder(array) ./libraries/sql.lib.php#2079: PMA_executeQueryAndGetQueryResponse( array, boolean … 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

Web Loader Tutorial using CSS and JavaScript

Web Loader Tutorial using CSS and JavaScript

Tiempo de lectura: 2 minutos Web loaders, also known as spinners, are visual elements used to indicate that a web page is loading content or processing an action. In this tutorial, we will learn how to create a custom web loader using CSS and JavaScript. The result will be an animated and visually appealing loader that you can incorporate into … Read more