Tag: Open-Source

6 entradas encontradas

Go 1.27 and Generic Methods: Eight Years in the Making

Go 1.27 and Generic Methods: Eight Years in the Making

6 min de lectura

I’ve been writing about Go on this blog since 2015. Back in that “What I like about Go” article I talked about simplicity, fast compilation, and how good it feels to use a language that doesn’t force you to memorize twenty ways of doing the same thing. Then Go 1.18 arrived with generics in 2022, and with them an asymmetry that has bothered a lot of people for years: you could write generic types and generic functions, but not generic methods.

Go 1.27 y los métodos genéricos: ocho años esperando

Go 1.27 y los métodos genéricos: ocho años esperando

6 min de lectura

Llevo escribiendo sobre Go en este blog desde 2015. En aquel artículo de “Qué me gusta de Go” hablaba de la simplicidad, de la compilación rápida, de lo bien que sienta un lenguaje que no te obliga a memorizar veinte formas de hacer lo mismo. Y luego llegó Go 1.18 con los genéricos, en 2022, y con ellos una asimetría que ha incomodado a mucha gente durante años: podías escribir tipos genéricos y funciones genéricas, pero no métodos genéricos.

European Open Source AI Index: Measuring True AI Openness

European Open Source AI Index: Measuring True AI Openness

4 min de lectura

Lately I’m seeing more and more AI models calling themselves “open source”. Llama, Mistral, Falcon… they all claim to be “open”. But are they really? How open are they actually?

I recently discovered the European Open Source AI Index (OSAI), a European initiative doing excellent work systematically evaluating how open generative AI models really are.

European Open Source AI Index: Midiendo la verdadera apertura de la IA

European Open Source AI Index: Midiendo la verdadera apertura de la IA

4 min de lectura

Últimamente veo cada vez más modelos de IA que se autodenominan “open source”. Llama, Mistral, Falcon… todos dicen ser “abiertos”. Pero, ¿realmente lo son? ¿Hasta qué punto son abiertos de verdad?

Hace poco descubrí el European Open Source AI Index (OSAI), una iniciativa europea que está haciendo un trabajo excelente evaluando de forma sistemática qué tan abiertos son realmente los modelos de IA generativa.

Cuando la curiosidad se encuentra con Go: TinyEMU-Go y el arte de portar un emulador con IA

Cuando la curiosidad se encuentra con Go: TinyEMU-Go y el arte de portar un emulador con IA

5 min de lectura

Hace unos días me topé con un artículo que me dejó literalmente con la boca abierta. No es que sea nuevo - en realidad es de enero de 2026, pero bueno, a veces llega tarde a mi radar - pero la combinación de tecnologías y la historia detrás me parecen fascinantes.

Se trata de TinyEMU-Go: un emulador de RISC-V escrito completamente en Go, portado desde C usando Claude. Y lo mejor: puedes ejecutar un Linux completo con un solo comando.

When Curiosity Meets Go: TinyEMU-Go and the Art of Porting an Emulator with AI

When Curiosity Meets Go: TinyEMU-Go and the Art of Porting an Emulator with AI

2 min de lectura

A few days ago I came across an article that literally left me with my mouth open. It’s about TinyEMU-Go: a RISC-V emulator written entirely in Go, ported from C using Claude. And the best part: you can run a complete Linux with a single command.

The Command Line That Gave Me Envy

go run github.com/jtolio/tinyemu-go/temubox/example@2c8151233c2d

And boom, you have a complete Linux running. No special permissions, no containers, no weird dependencies. A pure static Go binary.