TL;DR; rewrite it in #Rust! To reduce energy use. https://www.youtube.com/watch?v=UAHYQNG1qYI Full podcast coming soon (with way more nuance included 😉), there are lots of things we can do as #Django / #Python tech people to build leaner
#python
The Python foundation had to withdraw funding because the trump administration's extreme requirements around DEI language
https://pyfound.blogspot.com/2025/10/NSF-funding-statement.html
✏️️ La Python Software Foundation enregistre un afflux de donateurs après avoir refusé une subvention fédérale. Et si le refus de PSF annonçait la fin des subventions conditionnées dans le monde open source ?....
🔗 Lire l'article sur Developpez.com: https://python.developpez.com/actu/377575/La-Python-Software-Foundation-enregistre-un-afflux-de-donateurs-apres-avoir-refuse-une-subvention-federale-Et-si-le-refus-de-PSF-annoncait-la-fin-des-subventions-conditionnees-dans-le-monde-open-source/
#️⃣ #Informatique #Python
@j3rn Toss-up between #Python and VB6.

News includes ReqLLM 1.0 with standardized LLM APIs, Codicil bringing semantic code understanding to #AI assistants, Tidewave Web expanding to #Python and more, playwright browser pooling, and #PostgreSQL WAL for DB notifications! #ElixirLang www.youtube.com/watch?v=tXp8...
Thinking Elixir Podcast 278: W...
News includes ReqLLM 1.0 with standardized LLM APIs, Codicil bringing semantic code understanding to #AI assistants, Tidewave Web expanding to #Python and more, playwright browser pooling, and #PostgreSQL WAL for DB notifications! #ElixirLang www.youtube.com/watch?v=tXp8...
Thinking Elixir Podcast 278: W...
ooooh... embeddings... #rstats #python #gdal🤔

I wanted to share my current project. It’s a command line interface for running jobs in the cloud (currently #Scaleway and #GCP) and is a simple way to run your MLOps or data pipelines. Any feedback is appreciated:
#MLOps #MachineLearning #DataScience #AI #Cloud #Python #Sourcehut
🚀 Best Short-Term Computer Courses with High Job Scope
1️⃣ Advanced Excel
2️⃣ Web Design
3️⃣ Python
4️⃣ SQL
5️⃣ C / C++
🎓 Learn job-ready skills at TCCI – Bopal Ahmedabad
#ComputerCourses #ShortTermCourses #Programming #Python #WebDevelopment #SQL #CareerGrowth #JobReady #TCCI #BopalAhmedabad #ComputerClasses
Nice one. Type hints in Python allow to list a number of literal values, similar to TypeScript union types and the syntax is actually somewhat more explicit.
To implement page up/down in https://codeberg.org/harald/gitlogui I have now:
def doPage(self, factor: Literal[-1] | Literal[1]) -> None:
step = factor * int(self.pageSize.get())
...
and I can be sure, when using mypy, that doPage is only ever called with either -1 or 1.
#python #typehint #strongTyping #gitlogui