Archives
All the articles I've archived.
Cรณmo la programaciรณn asistida por IA cambiarรก la ingenierรญa del software (verdades dificiles)
Published:ย atย 09:27 AMLa 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.
Si no te gustan las ventas no crees una empresa
Published:ย atย 03:03 PMEn 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.
How to slice or get symbols from a unicode string with emojis in JavaScript? Lets learn how JavaScript represent strings
Published:ย atย 09:13 AMEverybody loves JavaScript (or not)! It's easy, powerful and fun (or not) but then one day you found something weird that makes you learn something new and that's fine (or not). If you don't know why `"๐".charAt(0)` returns `๏ฟฝ` or why `"๐".length` is equal 2 then this article if for you. Do you really know how to handle strings in JavaScript?
Express API with autogenerated OpenAPI doc through Swagger
Published:ย atย 08:31 PMIn 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.
Using async/await in ExpressJS middlewares
Published:ย atย 12:10 PMIf 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.