Browsing Tag
python
526 posts
I built a persistent memory MCP with Hebbian learning and GraphRAG
The Problem AI coding assistants forget everything between sessions. Every conversation starts from zero. You explain your architecture,…
Quark’s Outlines: Python Emulating Callable Objects
Quark’s Outlines: Python Emulating Callable Objects Overview, Historical Timeline, Problems & Solutions An Overview of Python Emulating Callable…
How I built a 39 compression pipeline with AES-256-GCM in Python (and why the dictionary is everything)
I store LLM training data. Every tool I found either compresses it or encrypts it — nothing did…
I Built a Tool That Generates AI Coding Context for Every Tool — From One Scan
Every AI coding tool needs context about your project. But each wants it in a different format: Tool…
Why your Python request gets 403 Forbidden
If you’ve had your HTTP request blocked despite using correct headers, cookies, and clean IPs, there’s a chance…
Retro-imprimiendo (y II)
En la década de los 80 y 90 del siglo pasado (el siglo XX), era muy típico imprimir…
Agentic CI: How I Test and Gate AI Agents Before They Touch Real Users
You wouldn’t merge a backend PR without unit tests. Yet, when it comes to AI agents, most teams…
파일 읽기
With 문과 함께 사용하기 들여쓰기를 사용해 들여쓰기가 있는 코드에서는 open()함수가 유지 as문을 사용하여 변수에 할당 with open("dream.txt", "r")…
App Localization with Python and Argos Translate
Last year, I worked on localizing a platform from Spanish to English. The strings were stored in JSON…
POST /items: Adding New Data to Your API with FastAPI & Pydantic
From Read-Only to Interactive Until now our API could only read data. Today we add the ability to…