Anuncios Libros Cursos Categorías

What is a robots.txt file and what is it for?

28-12-2025 - Andrés Cruz

What is a robots.txt file and what is it for?

Programación básica The robots.txt file is nothing more than a plain text file that allows you to tell the robots that analyze our website about the organization of our site. We will see how to create them and how to define the most basic rules.


Declarative functions and functions of expressions in JavaScript

28-12-2025 - Andrés Cruz

Declarative functions and functions of expressions in JavaScript

JavaScript The JavaScript compiler places the functions of declarative in a global scope to the entire program unlike the expression functions that only corresponds to a definite section of the program.


The File API in JavaScript: How to read, validate, and manipulate files in the browser

27-12-2025 - Andrés Cruz

The File API in JavaScript: How to read, validate, and manipulate files in the browser

JavaScript Learn what the File API is in JavaScript, how to read, validate, and manipulate local files with practical examples using File, FileReader, and Drag and Drop.


Guide to borders in CSS

27-12-2025 - Andrés Cruz

Guide to borders in CSS

CSS With this property, it is possible to define the color, size, and style of each of the four borders that define the box of an element. We will also see a very simple way to have multiple borders, or rather, the effect of having multiple borders in a container or element, by using the `box-shadow` property. We will also see a small trick that allows transparent borders, using the `background-clip` property, and internal borders so that they do not affect the margin.


Getting started with Flexbox: The flexible box with CSS for creating responsive layouts

27-12-2025 - Andrés Cruz

Getting started with Flexbox: The flexible box with CSS for creating responsive layouts

CSS Flexbox allows you to easily adapt to the available space on any device. With the FlexBox property, we can build flexible, fluid, and adaptable boxes of different sizes that also easily adjust to the device's resolution. We'll see how to create a basic website using Flexbox with the flex-grow, flex-shrink, and flex-basis properties.


The secret of animations in JavaScript (requestAnimationFrame())

27-12-2025 - Andrés Cruz

The secret of animations in JavaScript (requestAnimationFrame())

JavaScript We will see how to make some simple animations in JavaScript using requestAnimationFrame() whose API is integrated with Canvas.


Stacks in SwiftUI: VStack, HStack, and ZStack for creating real layouts

27-12-2025 - Andrés Cruz

Stacks in SwiftUI: VStack, HStack, and ZStack for creating real layouts

Swift Learn what stacks are in SwiftUI and how to use VStack, HStack, and ZStack to create responsive, efficient, and well-structured layouts.


How to completely uninstall Xcode on macOS

26-12-2025 - Andrés Cruz

How to completely uninstall Xcode on macOS

Swift Learn how to completely uninstall Xcode on macOS. Step-by-step guide with a safe script to remove Xcode and all its residual files.


Getting started with SwiftUI to build your declarative interface

26-12-2025 - Andrés Cruz

Getting started with SwiftUI to build your declarative interface

Swift Learn SwiftUI from scratch and create your first iOS apps with this practical guide. Concepts, components, lists, state, and real-world examples for beginners.


Cycles or loops in Swift: for in, while and repeat-while

26-12-2025 - Andrés Cruz

Cycles or loops in Swift: for in, while and repeat-while

Swift A complete guide to loops in Swift. Learn how to use for, while, and repeat-while with real-world, easy-to-understand examples.