Working on a small #python script to generate static preview images for gpx routes. Using my latest adventure at Lake Garda to test it. Already works quite well 💪

Of course! I should use copy2 instead of copy. 😩
https://docs.python.org/3/library/shutil.html#shutil.copy2
Cool, #acast blocks my #python-library from fetching podcasts. #enshitification
Idk, isn't this what they're supposed to do, let ppl download stuff? 🤬
#Python 2 on #Fedora 42 using #toolbox: https://davemq.github.io/2025/11/11/python2-on-fedora-42.html
I've been working for the last couple of years on a new degree program at the college where I work, BA in Data Analytics. It required becoming familiar with the state Department of Education bureaucracy. But it finally paid off as the state just approved the new degree so we can begin enrolling students. I'll be serving as the program director. #PublicHigherEd #Sociology #DataAnalytics #Python
Hmmm, the thing I like about #Tcl is that you can do the whole "data is code" thing.
You can get close in #python with the shlex module.
#raku will probably get you that, too.
MongoDB is hiring Staff Engineer
🔧 #cplusplus #python #rust #aws #azure #gcp #kubernetes #mongodb
🌎 Palo Alto, California
⏰ Full-time
🏢 MongoDB
Job details https://jobsfordevelopers.com/jobs/staff-engineer-at-mongodb-com-jul-9-2025-d34a01?utm_source=mastodon.world&utm_medium=social&utm_campaign=posting
#jobalert #jobsearch #hiring
S1 EP7 T7 - Machine Learning in Python Uninstall a Package Safely in Python VSCode Notebook #python #dataengineering #softwaredeveloper #jupyterlabs #jupyternotebook #codingforbeginners #machinelearningbasics #datascience #machinelearningtutorial #datascienceforbeginners #mlforbeginners #PythonForDataScience #pythoncoding #statistics #algorithims #machinelearning #learnpython #aiexplained #machinelearningmodels #vscode #aiforbeginners
Does anyone that uses `click` know if there's a way to add color to the help for a given command?
Announcing the Winners of the 2025 Posit Table Contest! 🏆
The data science community delivered incredible work using table tools like gt, Reactable, and Quarto. Submissions highlighted how R & Python practitioners are turning complex data into beautiful, effective communication.
Huge congrats to the Grand Prize winner and all special category honorees!
Check out the innovation: https://posit.co/blog/2025-table-contest-winners/
#DataScience #RStats #Python #DataViz
Opinions sought for #Python coverage reporting! Are separate statement and branch coverage totals useful? Is the "excluded" column useful? https://github.com/coveragepy/coveragepy/issues/2081 Discussion on the issue will be helpful.
We could add two columns, we could also remove one. How do you navigate the stats to make use of them?

For a long time, a hassle of MicroPython's usual object representation on 32 bit micros has been the loss of 2 bits of floating point precision (mantissa)
I've just put in a PR to fix this, based very loosely on a paper on self-tagging floats (https://arxiv.org/abs/2411.16544). with the new object representation, called "REPR_E", the full precision of floats becomes available, but floats with large or small exponents are boxed (require memory allocations), while "usual" floats are unboxed.
Besides the complexity and unpredictability of memory use, another trade-off is that the "small int" becomes 30 bits instead of 31.
Let's see how it survives contact with reality. https://github.com/micropython/micropython/pull/18401
#microPython #python #embedded