Head of Quantum Instrumentation
Quantum Biology Institute
The Quantum Biology Institute (@QuantumBioOrg) is looking for a Head of Quantum Instrumentation!
See the full job description on jobRxiv: https://jobrxiv.org/job/quantum-biology-institute-27778-head-of-quantum-instrumentation/
#microscopy #optics #Python #quantumbiology #quantummechanics #ScienceJobs #hiring #research
https://jobrxiv.org/job/quantum-biology-institute-27778-head-of-quantum-instrumentation/?fsp_sid=4421
It's hard to keep up with @pydantic AI these days.
Their overnight (my timezone) release for adding MCPServerTool support (a builtin tool that allows your agent to use MCP servers.) which adds OpenAI and Anthropic native MCP support is super cool.
https://ai.pydantic.dev/builtin-tools/#mcp-server-tool
#Python Friday #302: Create a #LLM Client With Chat History - #ai
https://pythonfriday.dev/2025/10/302-create-a-llm-client-with-chat-history/
Possibly weirded out my long-suffering colleagues with this idiosyncratic observation last week, and feel like it belongs in a meme.
#RStats #Python #RIPDavidLynch

Zoominfo is hiring Data Services Analyst II
🔧 #python #sql
🌎 Bengaluru, India
⏰ Full-time
🏢 Zoominfo
Job details https://jobsfordevelopers.com/jobs/data-services-analyst-ii-at-zoominfo-com-aug-14-2025-8ed9ee?utm_source=mastodon.world&utm_medium=social&utm_campaign=posting
#jobalert #jobsearch #hiring
un projet #Python de CLI permettant de copier-coller du contenu de façon sécurisée entre un votre poste et un serveur distant (scp, ssh, par socket) : https://remoclip.newmatter.net/.
un tutoriel indiquant une façon d'utiliser #uv et #just en remplacement de #tox (ou #nox) afin de tester son application avec plusieurs versions de #Python :
https://daniel.feldroy.com/posts/2025-10-uv-just-for-testing-multiple-python-versions
Обработка музыки с помощью Python: от вайбкодинга до мастеринга в один клик
Продолжаю рассказывать, как я в одного делаю проект - сайт, радио и медиаплатформу для своей музыки. В первой части был фронт и админка, теперь - как я встроил мастеринг аудио через Python сервис , чтобы не бегать по разным сайтам и не возиться с Audacity. Ну и немного про вайбкодинг - куда ж без него.
https://habr.com/ru/articles/959890/
#cursor #cursor_ai #frontend #python #mastering
Ya esta disponible la publicación # 11 de la La Experimental:
👨💻 Documentación HTTP
🐍 Profiler de memoria Python
💾 Curación de datos para LLMs
🤖 Cliente unificado para APIs LLM
🐧 Monitoreo de sistema GNULinux
🌩️ Acortador de URL SelfHosted
📼 Introducción a LLMs
📄 Productividad Dev
💼 Comparativa salarial Tech
💡 Emulación de sistemas operativos clásicos
Link: https://open.substack.com/pub/laexperimental/p/le-11
#ia #python #tech #technology #selfhosting #job #linux #llm
9 years ago, I wrote a small, fairly bad, puzzle platformer in #pygame.
Yesterday evening, I used pygbag to get it to run on the web:
http://doscienceto.it/tileset/

PyTorch Monarch: o novo framework que transforma a programação distribuída numa tarefa de um só PC
🔗 https://tugatech.com.pt/t73344-pytorch-monarch-o-novo-framework-que-transforma-a-programacao-distribuida-numa-tarefa-de-um-so-pc
#backend #blog #clusters #framework #frontend #programação #python #pytorch #rust #servidores #velocidade
Random #python thing I just realized about f-strings. When interpolating a variable, you can append = to change the formatting to the repr version instead of the string version:
```
>>> from datetime import datetime
>>> now = datetime.now()
>>> f"{now}" #str() version
'2025-10-24 07:33:30.443638'
>>> f"{now=}" #repr() version
'now=datetime.datetime(2025, 10, 24, 7, 33, 30, 443638)'
>>>
```