All
Articles 130,612Blog Posts 135,290Tech Tutorials 33,775Research Papers 25,426News 18,525
⚡ AI Lessons

Dev.to · Martin Palopoli
1w ago
SMTP outbound as a first-class citizen: send emails without pip install yagmail
Notifications, password resets, magic links, alerts. Every language solves SMTP outbound with an...

Dev.to · Martin Palopoli
1w ago
SMTP outbound como ciudadano de primera clase: mandá emails sin pip install yagmail
Notificaciones, password resets, magic links, alerts. Todos los lenguajes resuelven SMTP outbound...

Dev.to · Martin Palopoli
🔧 Backend Engineering
⚡ AI Lesson
2w ago
HTTP client as a first-class citizen: zero deps, bit-for-bit parity, async by default
Webhooks, scraping, health checks, proxying. Every language solves outbound HTTP with an external...

Dev.to · Martin Palopoli
🔧 Backend Engineering
⚡ AI Lesson
2w ago
HTTP client outbound como ciudadano de primera clase: cero deps, paridad bit-a-bit, async natural
Webhooks, scraping, health checks, proxying. Cada lenguaje resuelve HTTP client outbound con una...

Dev.to · Martin Palopoli
🔧 Backend Engineering
⚡ AI Lesson
2w ago
ORM tipado con migraciones automáticas: Fitz vs SQLAlchemy + Alembic + Pydantic
Para tener un ORM tipado con migraciones automáticas en Python necesitás mantener 3 fuentes de...

Dev.to · Martin Palopoli
⚡ AI Lesson
2w ago
Typed ORM with automatic migrations: Fitz vs SQLAlchemy + Alembic + Pydantic
For a typed ORM with automatic migrations in Python you need to maintain 3 sources of truth...

Dev.to · Martin Palopoli
3w ago
Buscando 5 beta testers para FitzWatch — el status page que construí en Fitz
TL;DR Construí fitzwatch (https://www.fitzwatch.com), un status page para apps en prod...

Dev.to · Martin Palopoli
🔧 Backend Engineering
⚡ AI Lesson
3w ago
Auth con JWT, RBAC y token blacklist sin pegar 5 librerías: Fitz vs FastAPI + python-jose + passlib + Redis + RBAC casero
El flow completo de auth — login, hashing Argon2id, JWT firma y verificación, RBAC custom apilable,...

Dev.to · Martin Palopoli
📣 Digital Marketing & Growth
⚡ AI Lesson
3w ago
JWT auth, RBAC, and token blacklist without gluing 5 libraries: Fitz vs FastAPI + python-jose + passlib + Redis + home-grown RBAC
The full auth flow — login, Argon2id hashing, JWT sign and verify, stackable custom RBAC, logout...

Dev.to · Martin Palopoli
⚡ AI Lesson
4w ago
Cron jobs sin Celery, sin Redis, sin Beat: cómo Fitz mete un scheduler distribuido adentro del lenguaje
Para correr una task cada 5 minutos en Python necesitás Celery + Redis + Celery Beat + worker...

Dev.to · Martin Palopoli
⚡ AI Lesson
4w ago
Cron jobs without Celery, Redis, or Beat: how Fitz puts a distributed scheduler inside the language
To run a task every 5 minutes in Python you need Celery + Redis + Celery Beat + a worker process + a...

Dev.to · Martin Palopoli
1mo ago
Fitz CLI builder: como typer, pero en el lenguaje
Construí herramientas CLI nativas en Fitz con @command, sin librería que instalar. Help...

Dev.to · Martin Palopoli
🔧 Backend Engineering
⚡ AI Lesson
1mo ago
Fitz CLI builder: like typer, but in the language
Build native CLI tools in Fitz with @command, no library to install. Help auto-generated,...

Dev.to · Martin Palopoli
1mo ago
Del repo a producción con un solo comando: cómo Fitz hace del deployment una feature del lenguaje
Un recorrido por la historia de deployment de Fitz — healthchecks, secrets como tipos opacos,...

Dev.to · Martin Palopoli
☁️ DevOps & Cloud
⚡ AI Lesson
1mo ago
From repo to production in one command: how Fitz makes deployment a language feature
A walk through the deployment story of Fitz — healthchecks, secrets as opaque types, OpenTelemetry...

Dev.to · Martin Palopoli
1mo ago
Construí tu primera API con Fitz: un acortador de URLs con Postgres y auth en 30 minutos
Tutorial paso a paso por Fitz. Arrancamos desde fitz new, terminamos con un binario nativo corriendo...

Dev.to · Martin Palopoli
🔧 Backend Engineering
⚡ AI Lesson
1mo ago
Build a URL shortener with Fitz: HTTP + Postgres + auth in 30 minutes
A step-by-step tutorial through Fitz. We start from fitz new, finish with a native binary running in...

Dev.to · Martin Palopoli
1mo ago
Presentando Fitz: un lenguaje donde HTTP, Postgres, JWT y WebSockets son parte de la sintaxis
Fitz es un lenguaje de programación nuevo, escrito en Rust, con compilador de tipado gradual. La...

Dev.to · Martin Palopoli
1mo ago
Introducing Fitz: a language where HTTP, Postgres, JWT, and WebSockets are part of the syntax
Fitz is a new programming language built in Rust, with a gradually-typed compiler. The pitch:...

Dev.to · Martin Palopoli
🔍 RAG & Vector Search
⚡ AI Lesson
4mo ago
How I Deployed a RAG Engine to Production with Docker, Nginx and DigitalOcean
I deployed a full RAG engine (FastAPI + PostgreSQL + pgvector + Redis) on a 4GB RAM VPS for...

Dev.to · Martin Palopoli
⚡ AI Lesson
4mo ago
Multi-tenancy real con FastAPI y PostgreSQL: planes, cuotas y aislamiento de datos
Implementé multi-tenancy real en un motor RAG SaaS: tenants con planes, enforcement de cuotas con...

Dev.to · Martin Palopoli
🔍 RAG & Vector Search
⚡ AI Lesson
4mo ago
Cómo desplegué un motor RAG en producción con Docker, Nginx y DigitalOcean
Desplegué un motor RAG completo (FastAPI + PostgreSQL + pgvector + Redis) en un VPS de 4GB de RAM por...

Dev.to · Martin Palopoli
🔍 RAG & Vector Search
⚡ AI Lesson
4mo ago
How I Built a Production RAG Pipeline with FastAPI, pgvector and Cross-Encoder Reranking
I built a production RAG engine that combines hybrid search (pgvector + BM25), cross-encoder...

Dev.to · Martin Palopoli
🔍 RAG & Vector Search
⚡ AI Lesson
4mo ago
Cómo construí un pipeline RAG de producción con FastAPI, pgvector y cross-encoder reranking
Construí un motor RAG de producción que combina búsqueda híbrida (pgvector + BM25), reranking con...
DeepCamp AI