Das ist eine #Python-Anwendung, die nach dem Start einen lokalen Webserver ausführt und den Browser öffnet. Hier kann man sich dann anschließend mit seiner Instanz verbinden.
Sobald die Anwendung stabiler läuft, erstelle ich einen Toot und lade euch zum Testen ein.
For organizations in healthcare, public sector, education, or research, this is a concrete example of how Plone delivers reliability without vendor lock-in.
👉 Read the full case study: https://plone.org/why-plone/they-use-plone/irccs
#Plone #OpenSourceCMS #HealthcareIT #DigitalPlatforms #PublicSector #EnterpriseCMS #Python
Phidippus audax
PH Rita Clare
Oregon, United States
2016-04-01 17:36:39 UTC
http://www.inaturalist.org/observations/4038798
#iNaturalist #Nature #Wild #Python #FedivEarth #Environment



I kinda fell into the #Meshtastic hole again, repeatedly, over the last week or so. Still not fully comprehending the whole thing, but I've at least been able to talk to someone a couple of kilometers away, so I'm making some progress 🙂 Here's a weird photo of my current client base setup - a #Lilygo #TBeam Supreme with a large 868 MHz antenna that I'm not 100% works, and a smaller 2 GHz wifi antenna. All hanging in some sort of limbo in my living room.
Spun up a #Prometheus instance on the basement #Kubernetes cluster, wrote a Meshtastic node exporter in #Python that would make seasoned developers cry, but it did the trick and I've got somewhere to check when testing antennas and moving the setup. Maybe I'll find the perfect spot and hardware combo before the #apocalypse.

S1 EP16 Lab 8 - Machine Learning in Python - Remove Items in a Set - with Remove Method #algorithims #machinelearningbasics #datascienceforbeginners #PythonForDataScience #machinelearning #codingforbeginners #learntocode #vscode #machinelearningmodels #dataengineering #learnpython #softwaredeveloper #statistics #pythoncoding #machinelearningtutorial #jupyterlabs #datascience #jupyternotebook #mlforbeginners #python
🐍 Python + Windows + Lecteurs mappés = 💥
Le bug qui m'a pris 4 versions
❌ Path.mkdir() → G:\\
✅ os.makedirs() → G:\
Sur Windows, pathlib crée un double backslash
avec les lecteurs (G:, H:, ...)
Debug story complète 👉 https://www.syslibre.fr/blog/migration-robotask-python-dpd.html
After NumPy v2 sprint, next in a row - pyproject migration has nearly reached its final destination, started on 2025-06-29
About 30+ packages left to migrate where the python-build-system (setup.py only build) is in direct use
https://codeberg.org/guix/guix/milestone/20775
#Guix on the way to modernise packaging logic for #Python
The upcoming would be Python 3.11 -> 3.12 -> 3.13 -> 3.14
https://codeberg.org/guix/guix/milestone/35232
Trying to catch up to the cadence with #ScientificPython
https://scientific-python.org/specs/spec-0000/
Monday morning is when I get distracted by the projects and other info in the @adafruit Python on Microcontrollers newsletter, which is so much more than just Python on Microcontrollers! If you have any interest in microcontrollers and fun projects, it is definitely worth signing up for it.
#homeautomation #microcontrollers #python #circuitpython #micropython
Seeing more and more adoption for uv in the #python community. I've used it some and should probably go more full in to really get a grasp on it. Still funny how a Python dependency manager is written in rust instead.
Why is #Python's join() a STRING method, not a list method?
x = 'this is a test'.split()
'*'.join(x)
':::'.join(x)
Not:
x.join('*')
Why not? The argument can be any string-returning iterable:
'*'.join('abcde')
'*'.join(str(x) for x in range(5))
'*'.join(open('filename.txt'))
