-
Proper rsync commands for server migrations
The command rsync -avzu uses rsync, a fast and versatile file synchronization tool. Let’s break down what each option means […]
-
Usage of props in Astro components
Creamos un componente HIJO (llamado CardLaunch.astro por ejemplo) y en el encabezado indicamos las propiedades (props) que vamos a pasarle […]
-
API Management on Postman
Use POST when sending the query: Set the appropriate Header: Set the desired Body and select raw format:
-
Desestructuracion en Javascript
Podemos acceder a las posiciones de un arreglo de diferentes formas: let diasSemana = [lunes, martes, miercoles, jueves, viernes, sabado, […]
-
API management in Javascript / Typescript
Creamos un archivo llamado Launches.astro con el siguiente contenido:1)const res = await fetch(‘https://api.spacexdata.com/v5/launches/query’) -> Primero realizamos la solicitud HTTP usando […]
-
When to use Uppercase and lowercase with components
Uppercase: Use Uppercase for React/Astro components on the first letter so we can differentiate between an html component. Example:<header></header> -> […]
-
CSS/Tailwind easy explanations
CSS vs TailWind Source: https://www.youtube.com/watch?v=LDVDho9NkUs color-scheme allows the OS to adjust the interfase. If we’re developing a black style then […]