✕ Clear all filters
11 articles
▶ Videos →

📰 Dev.to · Eitamos Ring

11 articles · Updated every 3 hours · View all reads

All Articles 129,064Blog Posts 133,903Tech Tutorials 33,365Research Papers 25,152News 18,269 ⚡ AI Lessons
Calling CUDA from Go without cgo
Dev.to · Eitamos Ring 2mo ago
Calling CUDA from Go without cgo
I started gocudrv with one constraint: I wanted Go code to call CUDA without making every build...
Three Rules for Designing a Go SDK Other People Will Actually Use
Dev.to · Eitamos Ring ⚡ AI Lesson 2mo ago
Three Rules for Designing a Go SDK Other People Will Actually Use
I publish open-source Go libraries. Not many people use most of them, and I've spent a fair amount...
From Flat Columns to Full Relationships: How We Taught Our SQL Parser to Understand Table Constraints
Dev.to · Eitamos Ring ⚡ AI Lesson 4mo ago
From Flat Columns to Full Relationships: How We Taught Our SQL Parser to Understand Table Constraints
We went from parsing CREATE TABLE as a bag of columns to extracting full PK/FK/UNIQUE/CHECK metadata. Here's how we did it in Go with ANTLR.
How does a linter know your column doesn't exist
Dev.to · Eitamos Ring 4mo ago
How does a linter know your column doesn't exist
You write a query that SELECTs ghost_status from the orders table. Your code compiles. Your tests...
We didn't want an AI SQL reviewer. We wanted deterministic
Dev.to · Eitamos Ring 🛠️ AI Tools & Apps 4mo ago
We didn't want an AI SQL reviewer. We wanted deterministic
So we built Valk Guard. Most SQL linters scan .sql files. The problem is, most SQL doesn't live in...
Building a PostgreSQL Parser in Go: What Broke After We Open-Sourced It
Dev.to · Eitamos Ring ⚡ AI Lesson 5mo ago
Building a PostgreSQL Parser in Go: What Broke After We Open-Sourced It
Building a PostgreSQL Parser in Go: What Broke After We Open-Sourced It postgresparser is...
Building a Pure Go PostgreSQL SQL Parser (No CGO, No Server, No Runtime Dependencies)
Dev.to · Eitamos Ring 🔧 Backend Engineering ⚡ AI Lesson 5mo ago
Building a Pure Go PostgreSQL SQL Parser (No CGO, No Server, No Runtime Dependencies)
Why we built this We needed PostgreSQL SQL parsing in environments where CGO was not an...