Is it possible to recreate #OpenClaw using #PydanticAI ?
#python #agentai @samuelcolvin @karpathy

Ich würde gerne mal "KI"-Unterstützung beim Schreiben von Python-Scripten ausprobieren, dabei aber ungern auf die großen, bekannten LLMs setzten. Gibt's da etwas, das (zumindest einigermaßen) dem FLOSS-Gedanken folgt und das man unter Linux lokal laufen lassen kann? Und brauchbare Ergebnisse liefert? 🤔
Und schön wär's, wenn's mit VSCodium zusammenspielen würde.
Python Tip: str.removeprefix/removesuffix
filename = 'test_utils.py'
module = filename.removesuffix('.py') # 'test_utils'
name = module.removeprefix('test_') # 'utils'
Python 3.9+ added removeprefix() and removesuffix(). No more error-prone string slicing.
https://raccoonette.gumroad.com/l/Python-for-Beginners-From-Zero-to-Your-First-Projects
#Python #CodingTips #Programming
Python Tip: itertools.chain()
from itertools import chain
lists = [[1,2], [3,4], [5,6]]
flat = list(chain.from_iterable(lists))
# [1, 2, 3, 4, 5, 6]
chain.from_iterable() flattens nested iterables without creating intermediate lists....
https://raccoonette.gumroad.com/l/Python-for-Beginners-From-Zero-to-Your-First-Projects
#Python #CodingTips #Programming
Interesting post from @stanfromireland with an annotated chart showing the growth CPython's source code over the decades:
https://blog.python.org/2026/03/cpython-codebase-growth/
#Python #CPython #history
Season 1 Lesson 7 Part 7 - Your First Steps - Finding and Counting - Strings in Python#dataanalysis #dataengineer #learncoding #pythoncode #pythonprogramming #softwaredeveloper #codingtutorial #python #jupyternotebook
Aircall is hiring Software Engineer - Paris hybrid
🔧 #python #ruby #typescript #react #serverless #node #api #graphql #rest #aws #postgresql #redis
🌎 Paris, France
⏰ Full-time
🏢 Aircall
Job details https://jobsfordevelopers.com/jobs/software-engineer-paris-hybrid-at-aircall-io-dec-31-2025-7ac758?utm_source=mastodon.world&utm_medium=social&utm_campaign=posting
#jobalert #jobsearch #hiring
Inpired by Wiggly Paint (https://internet-janitor.itch.io/wigglypaint)
- See also https://beyondloom.com/blog/onwigglypaint.html
Find the sketch-a-day archives and tip jar at: https://abav.lugaralgum.com/sketch-a-day
Code for this sketch at: https://github.com/villares/sketch-a-day/tree/main/2026/sketch_2026_03_09 #Processing #Python #py5 #CreativeCoding
🐧 Arf – fzf Pacman wrapper and AUR helper
Arf is an fzf Pacman wrapper and AUR helper written in Python. The post Arf – fzf Pacman wrapper and AUR helper appeared first on LinuxLinks.
📰 Source: LinuxLinks
🔗 Link: https://www.linuxlinks.com/arf-fzf-pacman-wrapper-aur-helper/
today I learned how to get the following things to work together:
1) codium
2) pyrefly #python language server
3) python running from a given project's uv venv
4) ...such that all its libraries/dependencies import properly
#dev #developers
This is a good post about #ruby vs #python https://norvilis.com/ruby-vs-python-why-i-choose-happiness-over-hype/
Tip for AI agent builders: use SQLite for persistent state, not files.
Why:
- ACID transactions (survives crashes)
- SQL queries (find blocked tasks instantly)
- Single file (trivially portable)
- Built into Python (no pip install)
- Audit trail with trigger-based logging
I track 97 tasks across 6 statuses with ~50 lines of Python.