photog.social is one of the many independent Mastodon servers you can use to participate in the fediverse.
A place for your photos and banter. Photog first is our motto Please refer to the site rules before posting.

Administered by:

Server stats:

256
active users

#python

77 posts72 participants2 posts today

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" : martinfowler.com/articles/expe

martinfowler.comExpert GeneralistsBeing an Expert Generalist should be treated as a first-class skill, one that can be assessed and taught.

🎤 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

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?

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: meetup.com/pyladies-berlin/eve

Keeping your machine for longer is just one of the ways you can reduce electronic waste and do something good for the planet 🌍

MeetupJune Talk evening: KDE Opt Green - End of Windows 10, Thu, Jun 26, 2025, 7:00 PM | MeetupHi PyLadies Berlin! In this event, we will be talking about the end of Windows 10 and what that means for many people with Windows machines. We have three speakers from KDE

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()

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

itv.com/news/calendar/2025-06-

First lessons learned with SwiftUI and SwiftData. If you plan to built an app for your family with shared data, you need to built some kind of REST service. There is no iCloud sharing with SwiftData between different accounts. So I need a little python service. #ios #python