Curso en Palma de Mallorca GRATIS.
Cualquier duda, en la zona de comentarios...
#ia #AI #Formación #palmademallorca #palma #Curso #Python #javascript #script

#python #KI
Kleiner Mitschnitt von "meinem" UFO-Spiel. Das Python-Skript wurde aus meinem Text-KI-Prompt erstellt.
Kanone unten Links . UFO-Position ist random. Flugbahn ist schiefer Wurf. Habs mal mit 45° und 300 probiert. Das ging daneben
Download: Script und Prompt
Der KI-Prompt dient zu gleich als Anleitung
https://gist.github.com/dewomser/fd3bd23746d0dc5bab645e738ef90083
Thank you to everyone who attended my presentation today at #PyCon 2025! I l talked about my work on the open-source pyCUFSM, and particularly about how, by transforming powerful academic research software into trustworthy and easy-to-use #Python packages, we can make highly efficient structural designs accessible to junior engineers. pyCUFSM is specifically for cold-formed steel or aluminium design, but the same principles apply throughout the structural and civil #engineering fields.
If you're interested, you can find my slides here:
http://dx.doi.org/10.13140/RG.2.2.28961.26723
#PythonBPF - Writing #eBPF Programs in Pure #Python
https://xeon.me/gnome/pythonbpf/
Varun R Mallya writes: ""Python-BPF offers a new way to write eBPF programs entirely in Python, compiling them into real object files. This project is open-source and available on GitHub (https://github.com/varun-r-mallya/python-bpf ) and PyPI (https://pypi.org/project/pythonbpf/ ). I wrote it alongside R41k0u.
[…]
Before Python-BPF, writing eBPF programs in Python typically involved embedding C code within multiline strings, often using libraries like bcc. eBPF allows for small programs to run based on kernel events, similar to kernel modules.
[…]
Python-BPF brings the true eBPF experience to Python by allowing the exact same functionality to be replaced by valid Python code. This is a significant improvement over multiline C strings, offering support from existing Python tools.
[…]""

📰 Django News - Djangonaut Space 2025 Session 5 - Sep 12th 2025
https://django-news.com/issues/302
un retour d'expérience sur le module asyncio et une analyse sur les difficultés à intégrer des mécaniques asynchrones dans du code #Python ; notamment lorsqu'il s'agit de proposer une API synchrone et asynchrone pour une bibliothèque
https://tonybaloney.github.io/posts/why-isnt-python-async-more-popular.html
une CVE assez importante pour des versions pas si anciennes de setuptools :
https://www.cvedetails.com/cve/CVE-2025-47273/
pour les personnes utilisatrices de #reddit et de #Python : une communauté PythonFr sur Reddit vient de se relancer 🎉
https://www.reddit.com/r/PythonFr/s/iORP44Rpzb
#python #datascience #machinelearning #AI #technology
#health #healthcare #breastcancer
#cancer #research
#datavisualization
#interpretation
The Importance of Human-in-the-Loop Data Visualization in Exploration, Evaluation and Interpretation of Binary Classification: HealthTech Machine Learning Study
Demonstrate the great value of (X)AI-inspired visual analytics with Python

We are privileged to have Supercell host our next #PyData #Helsinki meetup on 22 September! Sign up at
https://www.meetup.com/pydatahelsinki/events/310561378/?isFirstPublish=true
#Python #AI #DataScience #Finland
I've dabbled in #rust and alot of my favorite projects these days are in Rust, like #niri I suck as an application developer. But backend stuff that nobody sees is my art. Because I'm an architect. If I need down to metal language, I use #pascal. For more backend-ey stuff I use #python because #javascript sucks, but I'm LOVING #lisp as a pocket knife that can do everything. But all these beautiful TUI apps are in Rust. They are just beautiful. And I avoid GUI apps when possible.
I did find this a bit confusing in #Python...
```
list = [
'a',
'b'
'c'
]
['a', 'bc']
```