Anuncios Libros Cursos Categorías

Named routes in Django: what they are, how to use them, and why they simplify your code

07-12-2025 - Andrés Cruz

 Named routes in Django: what they are, how to use them, and why they simplify your code

Giving our routes a name in our Django projects is one of the features that modern frameworks have and allows us to easily reference these routes from anywhere in our app.


Getting started with Vue 3 and CodeIgniter 4

18-11-2025 - Andrés Cruz

Getting started with Vue 3 and CodeIgniter 4

Learn how to build a dynamic CRUD (Create, Read, Update, Delete) application using Vue 3 (Options API) and consuming a RESTful API developed in CodeIgniter 4. This guide covers Vue configuration, integration of key libraries, and development best practices.


Navigation and routing in Flutter

17-11-2025 - Andrés Cruz

Navigation and routing in Flutter

Let's see how to work with navigation in Flutter using the following functions: Navigator.push() Navigator.pop() Navigator.pushReplacement() Navigator.pushAndRemoveUntil() Navigator.popUntil() We'll also see how to use Go Router for modern browsing in Flutter.


Create basic routing in Vue 3 with Vue Router

16-11-2025 - Andrés Cruz

Create basic routing in Vue 3 with Vue Router

We are going to learn how to do a simple routing in Vue 3, for this we are going to use the Vue Router plugin which is excellent because it is developed and maintained by the same Vue people, therefore the integration is optimal.


Creating our first route, controllers and setting up our URLs in Laravel

10-11-2025 - Andrés Cruz

Creating our first route, controllers and setting up our URLs in Laravel

We are going to learn how to use routes in Laravel in a basic way, its structure and how we can use routes to create simple functions that return texts and views.


Routes, arguments, views and HTTP methods in Laravel

10-11-2025 - Andrés Cruz

Routes, arguments, views and HTTP methods in Laravel

We will take the first steps with the routes and the views, to start seeing screens through the browser; we’ll also cover using controllers with views; redirects, directives and blade as template engine.


Routes in Flask

25-10-2025 - Andrés Cruz

Routes in Flask

There are different HTTP methods that we can use to make requests to the server; These methods are nothing more than a set of verbs that are used to perform different types of actions; The most common methods are GET, POST, PUT, PATCH and DELETE.


Managing routes and URLs in CodeIgniter 4

14-04-2023 - Andrés Cruz

Managing routes and URLs in CodeIgniter 4

We are going to introduce the use of routes in CodeIgniter 4, as well as their types, variations, configurations, naming, composition, placeholders and much more.