Skip to content

Archives

All the articles I've archived.

2025 1
January 1
  • Cรณmo la programaciรณn asistida por IA cambiarรก la ingenierรญa del software (verdades dificiles)

    Published:ย atย 09:27 AM

    La inteligencia artificial estรก revolucionando el desarrollo de software, pero ยฟhasta quรฉ punto estamos preparados para integrar estas herramientas en nuestro trabajo diario? En este post analizo el artรญculo de Addy Osmani "How AI-assisted coding will change software engineering" sobre el impacto de la IA en la industria del software y reflexiona sobre los desafรญos y oportunidades que presenta.

2024 1
December 1
  • Si no te gustan las ventas no crees una empresa

    Published:ย atย 03:03 PM

    En este artรญculo, Hunter Walk destaca que como cofundador siempre estรกs vendiendo a clientes, inversores, prensa, equipo y socios. Aunque no seas un vendedor nato, es esencial comunicar el valor de tu empresa y su direcciรณn. Incluso los introvertidos o ingenieros pueden ser excelentes en ventas. Evitar las ventas perjudica a tu equipo y a ti mismo. Existen recursos para mejorar en este aspecto.

2021 1
December 1
2018 2
October 1
  • Express API with autogenerated OpenAPI doc through Swagger

    Published:ย atย 08:31 PM

    In the past years OpenAPI has arise as the preferred way to document APIs. In this article we will see how easy is document an API created with NodeJS and Express through the Swagger tools. If you are working in an REST API you more probably will desire to have some API doc where your users could find what are the endpoints of your API, what they do, which parameters they accept and which output they generate.

February 1
  • Using async/await in ExpressJS middlewares

    Published:ย atย 12:10 PM

    If you are not living in a cave for the past year you'll probably know the `async/await` keywords are one of the most interesting additions on ES7. It merges the benefits of a sequential syntax with the power of asynchronous programming. In this post we will cover how we must use correctly async functions as express middleware.