Anuncios Libros Cursos Categorías

Gumroad, an unsupported and strange platform for entrepreneurs

02-08-2024 - Andrés Cruz

Gumroad, an unsupported and strange platform for entrepreneurs

Programación básica OPINION - I will tell you some anecdotes about the Gumroad platform when trying to use it to upload my content.


Development and Gaming: Steam deck (handle pc) the best ally for a GAMER software developer

26-07-2024 - Andrés Cruz

Development and Gaming: Steam deck (handle pc) the best ally for a GAMER software developer

Programación básica Are you a developer and a gamer? An analysis of how to separate work and leisure to avoid stress. Discover the advantages of a handheld PC like the Steam Deck to optimize your free time.


Install and configure Redis on Laragon and on MacOS with Laravel Herd

21-07-2024 - Andrés Cruz

Install and configure Redis on Laragon and on MacOS with Laravel Herd

Laravel We will see the steps to install Redis in Laragon, configure the DLL, start it from Laragon and run the process, we will also see the process in DBngin and MacOS.


News and Improvements in Flutter 4

15-07-2024 - Andrés Cruz

Flutter We will talk about the new features that version 4 of Flutter will bring, such as the incorporation of Material Design 3, new components, multi-windows and better performance.


Laravel, CodeIgniter, Django, Flask, FastAPI... They are the same....

14-07-2024 - Andrés Cruz

Laravel, CodeIgniter, Django, Flask, FastAPI... They are the same....

Programación básica OPINION - I will talk about why I consider all web frameworks to be the same, their foundations are the same, and knowing aspects of them allows us to learn good practices and be better developers.


Hostinger, the best hosting for Laravel

12-07-2024 - Andrés Cruz

Laravel I will give you my reasons why I consider Hostinger to be the best hosting for Laravel in terms of quality and price; more details below...


How to Allow 2 Decimals in an Input of Type "Number" in HTML

11-07-2024 - Andrés Cruz

How to Allow 2 Decimals in an Input of Type "Number" in HTML

HTML Let's see how we can limit the number of decimals in a <input type="number" step="0.01" id="price"> field in HTML. Many times we have a text field which we want to represent a price or ultimately a numerical value with a decimal part; for that we use the step attribute.


Middleware to Verify the es/en language prefix in Laravel

07-07-2024 - Andrés Cruz

Middleware to Verify the es/en language prefix in Laravel

Laravel The next development that we are going to carry out is to use a middleware to detect the language configured by the user and establish it through the translation text strings, in addition, we also define the acronyms or language tag in the URL to return the corresponding translation.


Passing functions as props is anti-pattern in Vue.js

27-06-2024 - Andrés Cruz

Vue We will see why we should not pass functions in props in Vue and what other mechanisms you can use such as the use of custom events.


How to Check if a String Contains a Specific Word in Laravel

22-06-2024 - Andrés Cruz

Laravel How to check if a string contains a specific word in Laravel using the Str::contains() function.