SQL-tString
SQL-tString allows for f-string like construction of sql queries.
https://github.com/pgjones/sql-tstring
SQL-tString allows for f-string like construction of sql queries.
https://github.com/pgjones/sql-tstring
GitHub
GitHub - pgjones/sql-tstring: SQL-tString allows for f-string like construction of sql queries
SQL-tString allows for f-string like construction of sql queries - GitHub - pgjones/sql-tstring: SQL-tString allows for f-string like construction of sql queries
Using Python to Automate 3D Workflows with OpenUSD
The post explains how Python’s scripting capabilities can automate and streamline 3D workflows using OpenUSD, making tasks like data transformation, validation, and scene creation more accessible and efficient. It highlights NVIDIA’s tools, SDKs, and learning resources that empower developers to build, validate, and optimize complex 3D scenes with Python in the OpenUSD ecosystem.
https://developer.nvidia.com/blog/using-python-to-automate-3d-workflows-with-openusd/
The post explains how Python’s scripting capabilities can automate and streamline 3D workflows using OpenUSD, making tasks like data transformation, validation, and scene creation more accessible and efficient. It highlights NVIDIA’s tools, SDKs, and learning resources that empower developers to build, validate, and optimize complex 3D scenes with Python in the OpenUSD ecosystem.
https://developer.nvidia.com/blog/using-python-to-automate-3d-workflows-with-openusd/
NVIDIA Technical Blog
Using Python to Automate 3D Workflows with OpenUSD
Universal Scene Description (OpenUSD) offers a powerful, open, and extensible ecosystem for describing, composing, simulating, and collaborating within complex 3D worlds.
LlamaFirewall
The framework to detect and mitigate AI centric security risks.
https://meta-llama.github.io/PurpleLlama/LlamaFirewall/
The framework to detect and mitigate AI centric security risks.
https://meta-llama.github.io/PurpleLlama/LlamaFirewall/
meta-llama.github.io
LlamaFirewall | LlamaFirewall
Description will go into a meta tag in <head />
Enhancing the Python ecosystem with type checking and free threading
Meta describes its efforts to enhance the Python ecosystem by advancing type checking and introducing free-threading capabilities, aiming to improve code reliability and performance at scale. The post highlights the technical challenges, solutions, and community collaboration involved in making Python more robust and concurrent for large-scale applications.
https://engineering.fb.com/2025/05/05/developer-tools/enhancing-the-python-ecosystem-with-type-checking-and-free-threading
Meta describes its efforts to enhance the Python ecosystem by advancing type checking and introducing free-threading capabilities, aiming to improve code reliability and performance at scale. The post highlights the technical challenges, solutions, and community collaboration involved in making Python more robust and concurrent for large-scale applications.
https://engineering.fb.com/2025/05/05/developer-tools/enhancing-the-python-ecosystem-with-type-checking-and-free-threading
Engineering at Meta
Enhancing the Python ecosystem with type checking and free threading
Meta and Quansight have improved key libraries in the Python Ecosystem. There is plenty more to do and we invite the community to help with our efforts. We’ll look at two key efforts in Python’s p…
ACI
An open source platform that connects your AI agents to 600+ tool integrations with multi-tenant auth, granular permissions, and access through direct function calling or a unified MCP server.
https://github.com/aipotheosis-labs/aci
An open source platform that connects your AI agents to 600+ tool integrations with multi-tenant auth, granular permissions, and access through direct function calling or a unified MCP server.
https://github.com/aipotheosis-labs/aci
GitHub
GitHub - aipotheosis-labs/aci: ACI.dev is the open source platform that connects your AI agents to 600+ tool integrations with…
ACI.dev is the open source platform that connects your AI agents to 600+ tool integrations with multi-tenant auth, granular permissions, and access through direct function calling or a unified MCP ...
Python type hints: mixin classes
The article explains how to properly add Python type hints to mixin classes, addressing common challenges with attributes that mixins assume exist in their base classes. It shows solutions using subclassing or protocols to satisfy type checkers like Mypy without compromising runtime behavior or type safety.
https://adamj.eu/tech/2025/05/01/python-type-hints-mixin-classes/
The article explains how to properly add Python type hints to mixin classes, addressing common challenges with attributes that mixins assume exist in their base classes. It shows solutions using subclassing or protocols to satisfy type checkers like Mypy without compromising runtime behavior or type safety.
https://adamj.eu/tech/2025/05/01/python-type-hints-mixin-classes/
adamj.eu
Python type hints: mixin classes - Adam Johnson
In Python, a mixin class is a class that is not intended to be used directly, but instead “mixed in” to other classes through multiple inheritance. Mixins are not really a language feature but more of a conventional pattern allowed by Python’s multiple inheritance…
Making PyPI's test suite 81% faster
See how we slashed PyPI’s test suite runtime from 163 to 30 seconds.
https://blog.trailofbits.com/2025/05/01/making-pypis-test-suite-81-faster
See how we slashed PyPI’s test suite runtime from 163 to 30 seconds.
https://blog.trailofbits.com/2025/05/01/making-pypis-test-suite-81-faster
The Trail of Bits Blog
Making PyPI's test suite 81% faster
See how we slashed PyPI’s test suite runtime from 163 to 30 seconds.
The techniques we share can help you dramatically improve your own project’s
testing performance without sacrificing coverage.
The techniques we share can help you dramatically improve your own project’s
testing performance without sacrificing coverage.
RealtimeVoiceChat
Have a natural, spoken conversation with AI!
https://github.com/KoljaB/RealtimeVoiceChat
Have a natural, spoken conversation with AI!
https://github.com/KoljaB/RealtimeVoiceChat
GitHub
GitHub - KoljaB/RealtimeVoiceChat: Have a natural, spoken conversation with AI!
Have a natural, spoken conversation with AI! Contribute to KoljaB/RealtimeVoiceChat development by creating an account on GitHub.
dataframely
A declarative, native data frame validation library
https://github.com/Quantco/dataframely
A declarative, native data frame validation library
https://github.com/Quantco/dataframely
GitHub
GitHub - Quantco/dataframely: A declarative, 🐻❄️-native data frame validation library.
A declarative, 🐻❄️-native data frame validation library. - Quantco/dataframely
Function calling using LLMs
While LLMs excel at generating cogent text based on their training data, they may also need to interact with external systems. Function calling allows them to construct such calls. The LLM does not execute these calls directly, instead it creates a data structure that describes the call, passing that to a separate program for execution and further processing. The LLM's prompt includes de...
https://martinfowler.com/articles/function-call-LLM.html
While LLMs excel at generating cogent text based on their training data, they may also need to interact with external systems. Function calling allows them to construct such calls. The LLM does not execute these calls directly, instead it creates a data structure that describes the call, passing that to a separate program for execution and further processing. The LLM's prompt includes de...
https://martinfowler.com/articles/function-call-LLM.html
martinfowler.com
Function calling using LLMs
Allowing an LLM to formulate calls to external systems
Asyncio Demystified: Rebuilding it From Scratch One Yield at a Time
The article demystifies Python’s asyncio by rebuilding its core concepts from scratch, starting with basic generators and coroutines, then constructing a cooperative multitasking scheduler, and finally integrating non-blocking I/O using custom awaitable Future objects. Through step-by-step code examples, it shows how Python’s async/await syntax is just syntactic sugar over these primitiv...
https://dev.indooroutdoor.io/asyncio-demystified-rebuilding-it-from-scratch-one-yield-at-a-time
The article demystifies Python’s asyncio by rebuilding its core concepts from scratch, starting with basic generators and coroutines, then constructing a cooperative multitasking scheduler, and finally integrating non-blocking I/O using custom awaitable Future objects. Through step-by-step code examples, it shows how Python’s async/await syntax is just syntactic sugar over these primitiv...
https://dev.indooroutdoor.io/asyncio-demystified-rebuilding-it-from-scratch-one-yield-at-a-time
IO.IO
Asyncio Demystified: Rebuilding it From Scratch One Yield at a Time
Understand how asyncio works in Python by building a lightweight version from scratch using generators and coroutines.
Polycompiler: Merge Python and JavaScript code into one file that runs in both
https://github.com/EvanZhouDev/polycompiler
https://github.com/EvanZhouDev/polycompiler
GitHub
GitHub - EvanZhouDev/polycompiler: Merge Python and JS code into one file that can be run in both languages.
Merge Python and JS code into one file that can be run in both languages. - EvanZhouDev/polycompiler
Vibe Coding with Django, React and Cursor: My Experience and Takeaways
Cory Zue shares his experience with "vibe coding," a new approach to software development using AI tools, and how he built a Django/React app calleddjobs.devin just two days. He emphasizes the importance of planning, iterating, and reviewing code when working with AI, and shares tips for effectively using tools like Cursor and managing rules files.
https://www.youtube.com/watch?v=ELiiMX_o2LI
Cory Zue shares his experience with "vibe coding," a new approach to software development using AI tools, and how he built a Django/React app calleddjobs.devin just two days. He emphasizes the importance of planning, iterating, and reviewing code when working with AI, and shares tips for effectively using tools like Cursor and managing rules files.
https://www.youtube.com/watch?v=ELiiMX_o2LI
YouTube
Vibe Coding with Django, React and Cursor: My Experience and Takeaways
This is a casual conversation and overview of how I vibe-coded an MVP for a job board using Django, React, and Cursor. I talk about my strategy, demonstrate my process and the chats I had, and then give some of my takeaways based on the experience.
The app…
The app…