Or donc, #JeChercheUnJob
Idéalement, où mes 20+ années d'expérience dans "la tech" au sens large pourraient bénéficier à l'#environnement, l'#éducation, la #santé.
Il y a peu de domaines de la tech qui me font peur. J'ai fait du front, du back, de l'embarqué, du desktop, de l'intégration.
Je connais très bien l'écosystème #Java, un peu moins #Nodejs et #Python - et j'apprends vite.
Je me reconnais à 100% dans cette description des "généralistes experts" : https://martinfowler.com/articles/expert-generalist.html
PyCon AU is calling all Pythonistas to share their insights, stories, and innovations at our main conference AND exciting specialist tracks:
Data & AI
Scientific Python
Education
Whether you're a seasoned expert or a passionate newcomer — we want to hear from you!
Submissions close soon pycon.org.au/program
On a whim, thought I'd try upgrading my #WSL #Ubuntu instance to a later release in hopes that updating from #Python 3.2 would make #Marimo actually work. do-release-upgrade
actually worked pretty seamlessly, and then the new bullshit Canonical decided was a good idea reared its head. pip3 install marimo
? "THIS IS AN EXTERNALLY MANAGED PYTHON, install things through packages instead!" (there is no package).
Guess it's finally time to learn how to use #archlinux
Are you a software developer looking for a new #OpenSource role? Browse open positions from leading companies on #OSJH
https://opensourcejobhub.com/jobs/?q=software+developer&l=&utm_source=smm
#jobs #career #SoftwareDevelopment #FOSS #remote #hybrid #Python
I have a #Python file that does not have a *.py extension. I would like to tell my #NeoVim that it is a Python script, so that it can do proper syntax highlighting.
I know that I achieve this by adding some special comments to the file, that are interpreted by NeoVim. But I don't remember how to do it and how the feature is called.
All the involved terms are bad for asking Google. Can somebody give me a hint please?
New.
Securonix: Analyzing SERPENTINE#CLOUD: Threat Actors Abuse Cloudflare Tunnels to Infect Systems with Stealthy Python-Based Malware https://www.securonix.com/blog/analyzing_serpentinecloud-threat-actors-abuse-cloudflare-tunnels-threat-research/ #cybersecurity #infosec #Cloudflare #Python #malware
We’re happy to see the first review of Geocomputation with Python — thanks to everyone reading and sharing!
Read about the project: https://geocompx.org/post/2025/geocompy-bp2/
On the PSF Blog: A summary of the "An Uncontentious Talk about Contention" by Mark Shannon during the #Python Language Summit at #PyConUS 2025
https://pyfound.blogspot.com/2025/06/python-language-summit-2025-uncontentious-talk-about-contention.html
The @kde team join us on the evening of Thursday 26th at the @ecosia_blog to talk about the #EndOf10 project and where Python is being used in #kde
~ this event is Hybrid, so you can also join online
Sign up: https://www.meetup.com/pyladies-berlin/events/307804604
Keeping your machine for longer is just one of the ways you can reduce electronic waste and do something good for the planet
Great news!
#PyConAfrica’s Financial Grant is now open!
If you need tickets, travel grants, or accommodation support to attend #PyConAfrica2025, apply now and join us for an unforgettable experience. Don't miss this chance!
Plot the upper half of the unit circle with #Python #N3
#! /usr/bin/python3
import numpy as np
import matplotlib.pyplot as plt
x = np.linspace(-1, 1, 500)
y = np.sqrt(1 - x**2)
plt.plot(x, y, label=r'$y = \sqrt{1 - x^2}$', color='blue')
plt.fill_between(x, y, color='lightblue', alpha=0.5)
plt.title('Area Under $y = \sqrt{1 - x^2}$')
plt.xlabel('x')
plt.ylabel('y')
plt.axis('equal')
plt.grid(True)
plt.legend()
plt.show()
Did you know that some Python modules can double-up as handy command-line tools?
Read more https://trey.io/9v8gwb
a 5,4 metre #python is loose in a part of #Lincolnshire #England after several large #snakes were abandoned (4 have been captured by a rescue centre, but 1 remains outstanding)
It does not pose a threat to humans, but #police have advised #dog walkers to keep #dogs on leads, and for locals to call 999 if they see the #serpent
Just released: Python 3.14.0 beta 3!
All the good stuff of b2 but also:
Free-threaded Python is officially supported! (PEP 779)
Subinterpreters in the stdlib! (PEP 734)
Do you maintain a Python package? Please test 3.14.
If you find a bug now, we can fix it before October, which helps everyone. And you might find some places in your code to update as well, which helps you.
https://discuss.python.org/t/python-3-14-0-beta-3-is-here/95843?u=hugovk
On the PSF Blog: A summary of the "How can we make breaking changes less painful?" talk by Itamar Oren during the #Python Language Summit at #PyConUS 2025
https://pyfound.blogspot.com/2025/06/python-language-summit-2025-how-can-we-make-breaking-changes-less-painful.html
If you don't want to use our Wagtail Starter Kit, did you know you can make your own? Here's how: https://wagtail.org/blog/building-a-wagtail-starter-template/