Честно про вайб-кодинг с нуля для гуманитария
Статья для гуманитариев, решивших освоить вайб-кодинг с нуля. Автор, юрист без опыта программирования, делится 6-месячным опытом работы с Python, Excel и LLM. Рассказывает о трудностях, лайфхаках и результатах, предостерегая от иллюзий и вдохновляя на старт в IT.
https://habr.com/ru/articles/942700/
#вайбкодинг #программирование_для_начинающих #гуманитарии_в_ит #python #excel #llm #автоматизация #нейросети
Me too. I watched the #python documentary on a train ride. Well made. It gives a high-level overview over Python's history and lets core contributors talk about challenges, fun, and opinions. I particularly liked the part about #pyladies.
via @khinsen
https://scholar.social/@khinsen/115121947050484931
Dear community,
The [#Tyssue library](https://joss.theoj.org/papers/10.21105/joss.04877) was created around 2015 (ten years already!) as a refactoring of code used in a publication with Magali Suzanne's team [Nature paper (open access)](https://www.nature.com/articles/nature14152)
It has had some use for me and some other people, with sixty stars in github
I don't have time to care for tyssue any more, due to _ gestures around _
Below one or two post on what has to be done
Cross posted to bsky
[入門]Pythonミリしらの僕がUnityでAIと一緒にAIを作ってみた。#1
https://qiita.com/manato_konishi/items/95db780d34e50baca38b?utm_campaign=popular_items&utm_medium=feed&utm_source=popular_items
#qiita #Python #Unity #機械学習 #AI #レアゾンHD
@almenal99 @Geeky_sebastian I will say, my personal concern is that if uv becomes dominant enough, the alternative tools might stop being maintained, and people might be forced into using uv because there wouldn't be any viable alternatives in that case. But it doesn't seem like we're anywhere close to that happening. Still, it's good to have *some* people doing things without uv.
(P.S. Mastodon thinks your toots are in Dutch, apparently)
@alex Ah, gotcha. Well, I do see how aiding debugging and identification/searchability is a benefit, I just have a hard time imagining a situation where I'd consider it worth bringing in an external dependency just for that. (Opinions will vary of course)
un site qui récapitule les versions et échéances de version de plein de langages, bibliothèques, frameworks (même si on y trouve pas encore beaucoup de frameworks #Python) et services cloud : https://endoflife.date/python
One way to annotate a plot in #Python using matplotlib

Why use the Venture Capital funded uv package manager (with the unavoidable enshittification) when there are suitable alternatives like poetry & pyenv? #python
✨📄 New blog post: An Interview with Felienne Hermans 📄✨
We caught up with keynote speaker @Felienne to chat about her journey into #programming and #Python’s influence along the way, creating Hedy, challenges & hopes for the Python ecosystem, and what she’s most looking forward to at #PyConUK2025 🐍✨
📖 Read the interview here: https://2025.pyconuk.org/2025/08/keynote-speaker-interview-felienne/
A huge thank you to Felienne for taking the time to share your thoughts with us 💜
#SoftwareEngineering #development #manchester
I know I live on a different planet to many but, the only Python packaging problem I actually have is when I need to use two different versions of the same package at the same time. Solve that and we'll talk. #python
@alex Well, maybe part of the problem is that I don't understand what kind of situation your package is supposed to be useful for, so I might be off base here, but... making my best guess, if the point is to deterministically generate a long string of bytes without having to store it, I'd use this:
prng = random.Random(seed)
data = prng.randbytes(number_of_bytes)