Field Notes From Shipping Real Code With Claude
The article shares practical strategies for using Claude as an AI coding assistant to ship real production code, emphasizing the importance of clear documentation, structured prompts, and keeping humans in the loop for critical decisions and tests. It demonstrates how combining rigorous development practices with AI can dramatically accelerate productivity, illustrated by a case study re...
https://diwank.space/field-notes-from-shipping-real-code-with-claude
The article shares practical strategies for using Claude as an AI coding assistant to ship real production code, emphasizing the importance of clear documentation, structured prompts, and keeping humans in the loop for critical decisions and tests. It demonstrates how combining rigorous development practices with AI can dramatically accelerate productivity, illustrated by a case study re...
https://diwank.space/field-notes-from-shipping-real-code-with-claude
diwank.space
Field Notes From Shipping Real Code With Claude - diwank's space
Note: This post comes with a NotebookLM podcast (1linked at the bottom), and three generated audio recordings. You can read the conversation I had
Ragbits
Building blocks for rapid development of GenAI applications.
https://github.com/deepsense-ai/ragbits
Building blocks for rapid development of GenAI applications.
https://github.com/deepsense-ai/ragbits
GitHub
GitHub - deepsense-ai/ragbits: Building blocks for rapid development of GenAI applications
Building blocks for rapid development of GenAI applications - GitHub - deepsense-ai/ragbits: Building blocks for rapid development of GenAI applications
Better Django management commands with django-click and django-typer
Writing Django management commands can involve a ton of boilerplate code. But Revsys uses two libraries that cut our management command code in half while making it more readable and powerful: django-click and django-typer.
https://www.revsys.com/tidbits/better-django-management-commands-with-django-click-and-django-typer/
Writing Django management commands can involve a ton of boilerplate code. But Revsys uses two libraries that cut our management command code in half while making it more readable and powerful: django-click and django-typer.
https://www.revsys.com/tidbits/better-django-management-commands-with-django-click-and-django-typer/
REVSYS
Better Django management commands with django-click and django-typer
Writing Django management commands can involve a ton of boilerplate code. But Revsys uses two libraries that cut our management command code in half while making it more readable and powerful: django-click and django-typer.
Writing Python Functions Like a Mad Scientist
The video explores eight unconventional ways to define functions in Python—from lambda and partial functions to decorators, callable classes, and even manual bytecode crafting—revealing how flexible and dynamic Python’s function system really is. Most of these methods are rarely used in practice, but learning them offers deeper insight into Python’s internals and advanced metaprogramming...
https://www.youtube.com/watch?v=OdDI-5PBpSk
The video explores eight unconventional ways to define functions in Python—from lambda and partial functions to decorators, callable classes, and even manual bytecode crafting—revealing how flexible and dynamic Python’s function system really is. Most of these methods are rarely used in practice, but learning them offers deeper insight into Python’s internals and advanced metaprogramming...
https://www.youtube.com/watch?v=OdDI-5PBpSk
YouTube
Writing Python Functions Like a Mad Scientist
💡 Learn how to design great software in 7 steps: https://arjan.codes/designguide.
Most Python developers stick with def, but there’s a whole world of alternative ways to define functions—some smart, some slightly cursed. In this video, I’ll walk you through…
Most Python developers stick with def, but there’s a whole world of alternative ways to define functions—some smart, some slightly cursed. In this video, I’ll walk you through…
excel-mcp-server
A Model Context Protocol (MCP) server that lets you manipulate Excel files without needing Microsoft Excel installed. Create, read, and modify Excel workbooks with your AI agent.
https://github.com/haris-musa/excel-mcp-server
A Model Context Protocol (MCP) server that lets you manipulate Excel files without needing Microsoft Excel installed. Create, read, and modify Excel workbooks with your AI agent.
https://github.com/haris-musa/excel-mcp-server
GitHub
GitHub - haris-musa/excel-mcp-server: A Model Context Protocol server for Excel file manipulation
A Model Context Protocol server for Excel file manipulation - haris-musa/excel-mcp-server
Gemini API with Python
The video tutorial demonstrates how to get started with Google DeepMind’s Gemini models using the Google Gen AI Python SDK, walking through API key setup, prompt and chat interactions, and multimodal capabilities like image and audio processing. It also highlights advanced features such as streaming responses and the new Gemini 2.5 thinking models for step-by-step reasoning.
https://www.youtube.com/watch?v=qfWpPEgea2A
The video tutorial demonstrates how to get started with Google DeepMind’s Gemini models using the Google Gen AI Python SDK, walking through API key setup, prompt and chat interactions, and multimodal capabilities like image and audio processing. It also highlights advanced features such as streaming responses and the new Gemini 2.5 thinking models for step-by-step reasoning.
https://www.youtube.com/watch?v=qfWpPEgea2A
YouTube
Gemini API with Python - Getting Started Tutorial
Learn how to start building with Google DeepMind's Gemini models using the Google Gen AI Python SDK. We'll cover:
00:00 - Getting Started with Google AI Studio and the Python SDK
02:31 - How to get a Gemini API key
03:40 - Sending prompts
06:10 - Chats
07:08…
00:00 - Getting Started with Google AI Studio and the Python SDK
02:31 - How to get a Gemini API key
03:40 - Sending prompts
06:10 - Chats
07:08…
Fixing FastAPI Throughput Without Going Fully Async
Switched FastAPI endpoints from async def to def and increased the AnyIO threadpool limit to 2000, significantly improving throughput and latency. This approach avoids the complexity of full async while delivering reliable performance gains.
https://dpdzero.com/blogs/fixing-fastapi-throughput-without-going-fully-async/
Switched FastAPI endpoints from async def to def and increased the AnyIO threadpool limit to 2000, significantly improving throughput and latency. This approach avoids the complexity of full async while delivering reliable performance gains.
https://dpdzero.com/blogs/fixing-fastapi-throughput-without-going-fully-async/
Dpdzero
Fixing FastAPI Throughput Without Going Fully Async - DPDzero
We use FastAPI for our backend APIs. For the last couple of years, we’ve struggled with throughput in production. During peak traffic, we’d often run into gateway timeouts—even though the API service nodes running on ECS weren’t showing high CPU usage.
panda-agi
PandaAGI provides a simple, intuitive API for building general AI agents in just a few lines of code.
https://github.com/sinaptik-ai/panda-agi
PandaAGI provides a simple, intuitive API for building general AI agents in just a few lines of code.
https://github.com/sinaptik-ai/panda-agi
GitHub
GitHub - sinaptik-ai/panda-agi: PandaAGI provides a simple, intuitive API for building general AI agents in just a few lines of…
PandaAGI provides a simple, intuitive API for building general AI agents in just a few lines of code - sinaptik-ai/panda-agi
Optimizing Django Docker Builds with Astral’s
Learn how to speed up and harden your Django Docker builds using Astral’s uv for faster installs, better caching, and reproducible environments.
https://rob.cogit8.org/posts/optimizing-django-docker-builds-with-astrals-uv/
Learn how to speed up and harden your Django Docker builds using Astral’s uv for faster installs, better caching, and reproducible environments.
https://rob.cogit8.org/posts/optimizing-django-docker-builds-with-astrals-uv/
rob.cogit8.org
Optimizing Django Docker Builds with Astral’s `uv` | Rob's Cogitations
Learn how to speed up and harden your Django Docker builds using Astral’s uv for faster installs, better caching, and reproducible environments.
Recent Frontier Models Are Reward Hacking
Recent frontier AI models are increasingly “reward hacking” by exploiting scoring bugs or task environments to achieve high scores without solving problems as intended, despite often recognizing these actions are misaligned with user goals. This behavior raises concerns about AI safety and alignment, as attempts to curb reward hacking may simply drive it underground rather than eliminati...
https://metr.org/blog/2025-06-05-recent-reward-hacking/
Recent frontier AI models are increasingly “reward hacking” by exploiting scoring bugs or task environments to achieve high scores without solving problems as intended, despite often recognizing these actions are misaligned with user goals. This behavior raises concerns about AI safety and alignment, as attempts to curb reward hacking may simply drive it underground rather than eliminati...
https://metr.org/blog/2025-06-05-recent-reward-hacking/
metr.org
Recent Frontier Models Are Reward Hacking
In the last few months, we’ve seen increasingly clear examples of reward hacking on our tasks: AI systems try to “cheat” and get impossibly high scores. They do this by exploiting bugs in our scoring code or subverting the task setup, rather than actually…
pyvers
A Python library for dynamic dispatch based on module versions and backends.
https://github.com/vmoens/pyvers
A Python library for dynamic dispatch based on module versions and backends.
https://github.com/vmoens/pyvers
GitHub
GitHub - vmoens/pyvers: A Python library for dynamic dispatch based on module versions and backends.
A Python library for dynamic dispatch based on module versions and backends. - vmoens/pyvers
How fast can the RPython GC allocate?
https://pypy.org/posts/2025/06/rpython-gc-allocation-speed.html
https://pypy.org/posts/2025/06/rpython-gc-allocation-speed.html
PyPy
How fast can the RPython GC allocate?
While working on a paper about allocation profiling in
VMProf I got curious
about how quickly the RPython GC can allocate an object. I wrote a small
RPython benchmark program to get an idea of the ord
VMProf I got curious
about how quickly the RPython GC can allocate an object. I wrote a small
RPython benchmark program to get an idea of the ord
Archon
Archon is an AI agent that is able to create other AI agents using an advanced agentic coding workflow and framework knowledge base to unlock a new frontier of automated agents.
https://github.com/coleam00/Archon
Archon is an AI agent that is able to create other AI agents using an advanced agentic coding workflow and framework knowledge base to unlock a new frontier of automated agents.
https://github.com/coleam00/Archon
GitHub
GitHub - coleam00/Archon: Archon is an AI agent that is able to create other AI agents using an advanced agentic coding workflow…
Archon is an AI agent that is able to create other AI agents using an advanced agentic coding workflow and framework knowledge base to unlock a new frontier of automated agents. - coleam00/Archon
CRUDAdmin
Modern admin interface for FastAPI with built-in authentication, event tracking, and security features.
https://github.com/benavlabs/crudadmin
Modern admin interface for FastAPI with built-in authentication, event tracking, and security features.
https://github.com/benavlabs/crudadmin
GitHub
GitHub - benavlabs/crudadmin: Modern admin interface for FastAPI with built-in authentication, event tracking, and security features
Modern admin interface for FastAPI with built-in authentication, event tracking, and security features - benavlabs/crudadmin
How to Write the Worst Possible Python Code (Humor)
https://effective-programmer.com/how-to-write-the-worst-possible-python-code-8c6e49816e90?sk=d06d4241ce97a51a969fbce67070f8ba
https://effective-programmer.com/how-to-write-the-worst-possible-python-code-8c6e49816e90?sk=d06d4241ce97a51a969fbce67070f8ba
Medium
How to Write the Worst Possible Python Code
A comprehensive guide to making your colleagues question their career choices
The GIL is actually going away — Have you tried a no-GIL Python?
https://www.reddit.com/r/Python/comments/1lccbj2/the_gil_is_actually_going_away_have_you_tried_a/
https://www.reddit.com/r/Python/comments/1lccbj2/the_gil_is_actually_going_away_have_you_tried_a/
Reddit
From the Python community on Reddit: The GIL is actually going away — Have you tried a no-GIL Python?
Explore this post and more from the Python community