Velocidad de Escape

Andrés and the Quantum Machine

I was playing a bit with the OpenAI playground, fine-tuning the prompts a bit in such a way that the AI would give me interesting results. Prompt: > Tell me a full story with a beginning, middle, and end titled "Andrés and the Quantum Machine". At the end of the story, include a crazy plot twist. Make the story feel really awesome like Back to the future Here is the result... > The year was 2520 and Andrés was a brilliant physicist living in a world of advanced technology. He had been working on a revolutionary new invention for the past few years, a quantum machine that promised to...

Personal

AI

La importancia de hacer nada

**Disclaimer: This post will be in Spanish** Primero que todo voy a darles un poco de contexto; yo empecé mi vida laboral cuando tenía aproximadamente unos 12 años, no era un trabajo formal, trabajaba como "patinador" (manual) en una pequeña micro empresa familiar, durante muchos años de mi vida tuve cierto resentimiento con mis padres por haberme obligado a trabajar desde tan pequeño, luego entendí que fue la manera que encontraron para mantenerme alejado del horrible conflicto armado que se vivió en mi ciudad (Medellín) en los 80s-90s... Mi barrio fue en ese entonces unos de los más...

Personal

Velocidad de Escape: La cibercultura en el final del siglo

It has been a long time since the last time I wrote a post here, however, now that I have a little more free time I plan to resume writing. I hope this post is short. I want to tell you where the inspiration for the name of this blog came from... Since I was a child I have always been very interested in astronomy, however I never saw it possible to study something related in a third world country. However, that is not the story... One day, very normal in the life of every university student (I think) I went to the library, because I needed a bit of calm in my head, so I sat in an armchair...

Personal

Protected routes and authorization using React Router v6

In the project I am currently working on, a specific need arose, we should protect certain routes of a web application from certain user roles (for security reasons). For example, we have a page where administrators can add and delete users, this power can only be held by us (this must be a private page). **React Router v6** (latest version), it does not offer any functionality for this type of situation, the implementation is the developer's task. My first approach to the problem was to try to build a "wrapper" for the `Route` component of React Router: ```js import { Navigate, Route }...

React