Hey, #lazyWeb, what's your favorite #Python or #Javascript library for programmatically setting ID3 tags? (Ya know, like in MP3 files.)
Not interested in GUI tools, just libraries, please and thanks!
🎤 Create custom voice agents in under 10 minutes using #Python with STT, LLM and TTS pipelines like #Deepgram, #OpenAI GPT-4o and #Cartesia Sonic. Supports realtime speech-to-speech with models like OpenAI Realtime API for lifelike conversations. Multilingual semantic turn detection in 13 languages including English, German and Spanish with <25ms latency on CPU. Automatic interruption handling and VAD for natural turn-taking outperforms platforms like #Vapi. 📚 https://docs.livekit.io
@stuartl @TomSwirly @felix I believe I've seen a project that checks some type annotations at runtime, but it does have some trouble with things like lists for exactly that reason.
マイクロソフト、MCPやA2Aプロトコルに対応したAIエージェント開発を容易にする「Microsoft Agent Framewok」プレビュー公開
https://www.publickey1.jp/blog/25/mcpa2aaimicrosoft_agent_framewok.html
#publickey1 #NET #Java #プログラミング言語 #機械学習_AI #開発ツール #Python
The effort to rewrite everything in #python was underway already and no one told me!
cmdix supports this long list of gnu/linux/bash cli commands, but the readme give it no SEO visibility on pypi!
https://github.com/jaraco/cmdix/blob/main/pyproject.toml#L81
Today I have mostly finished rewriting the server-side Python code for a small local service in Erlang, because Python is now Just Too Painful To Deploy.
Current status: Attempting to understand the JS/jQuery code I cobbled together for the front-end 12 years ago.
#Python #Erlang #JavaScript #JQuery #IHateWritingFrontEndCode
Do you keep a gaming backlog too? How and where do you store it?
I decided to have my own to control my own data! Here is my post about it:
🌐 https://gridranger.frama.io/gaming-backlog
And the backlog itself:
💽 https://gridranger.frama.io/backlog
#gaming #backlog #statistics #python #pelican #plugin #blogging #indieweb #retrogaming #backloggery #gremlin
Show HN: Pyscn – Python code quality analyzer for vibe coders
Link: https://github.com/ludo-technologies/pyscn
Discussion: https://news.ycombinator.com/item?id=45481298
Pillow y Matplotlib tienen propósitos diferentes, pero complementarios
Comparar Imagen vs Gráfico:
#Python #Pillow #Matplotlib Imagen Imagenes curso #Anzoategui #Lecheria
Everyone knows how to compute variance... right? 🤔
But the textbook formula can be wildly wrong on computers ⚠️
Here is why and how to fix it in practice 👇
https://xuefeng-xu.github.io/blog/variance.html
Show HN: Pyscn – Python code quality analyzer for vibe coders
https://github.com/ludo-technologies/pyscn
When implementing the xkcd-221 algorithm, should random() return 0.4 (feels like 4) or 0.666...? (4/6 assuming 6 sided-dice) #python #xkcd
```python
def random(self): # real signature unknownable, mysterious
""" random() -> x in the interval [0, 1). """
return 0.4
```