All
Articles 128,708Blog Posts 133,462Tech Tutorials 33,276Research Papers 25,143News 18,235
⚡ AI Lessons

Dev.to · Wojciech Wentland
💻 AI-Assisted Coding
⚡ AI Lesson
2w ago
Designing tools that AI can actually use
Here's a tool definition I see all the time: @tool def get_data(id: str): """Gets data.""" ...

Dev.to · Wojciech Wentland
⚡ AI Lesson
2mo ago
Ship Python code without leaving source on disk. Encrypted bundles arrive at runtime, load from memory. Works with numpy, pydantic, boto3.
paker: load encrypted Python packages from memory ...

Dev.to · Wojciech Wentland
🏗️ Systems Design & Architecture
⚡ AI Lesson
2mo ago
Loading code without the disk: what each OS lets you get away with
memfd, PE loaders, unlink-after-dlopen. Three operating systems, three different definitions of 'in...

Dev.to · Wojciech Wentland
⚡ AI Lesson
2mo ago
Ship Python code without leaving source on disk. Encrypted bundles arrive at runtime, load from memory. Works with numpy, pydantic, boto3.
paker: load encrypted Python packages from memory ...

Dev.to · Wojciech Wentland
⚡ AI Lesson
2mo ago
paker: load encrypted Python packages from memory
Ship Python code without leaving source on disk. Encrypted bundles arrive at runtime, load from...

Dev.to · Wojciech Wentland
2mo ago
I built a read-only MCP server for Akamai
I had 200+ CDN properties in Akamai and an agent that couldn't find any of them. Akamai's Property...

Dev.to · Wojciech Wentland
3mo ago
Your coding agent is a slot machine
Programming used to have a speed limit. You wrote code, fought the compiler, debugged, tested, and...

Dev.to · Wojciech Wentland
🏗️ Systems Design & Architecture
⚡ AI Lesson
3mo ago
Why I only build read-only MCP servers
Every MCP server I build is read-only. List, search, get, read. No create, update, delete, activate,...

Dev.to · Wojciech Wentland
⚡ AI Lesson
3mo ago
Your MCP server is not an API adapter
A lot of MCP servers I see in the wild look like this: @mcp.tool() async def get_thing(id: str): ...
DeepCamp AI