Golfing APL/K in 90 Lines of Python https://lobste.rs/s/zxbykd #apl #python
https://aljamal.substack.com/p/golfing-aplk-in-90-lines-of-python
Just released version 1.13 of slixmpp, a #python library for the #XMPP messaging protocol!
https://blog.mathieui.net/slixmpp-1-13.html
#presentación : me llamo Eduardo vengo de X una red muy sesgada a mi parecer, quisiera ver una red social verdaderamente libre; me gusta la #programación, la #filosofia y un tanto la política.
Жду электрички, пью кофе и коду.
Еду в электрички и коду.
#neovim #Lazyvim #python #PyCharm #linux #kde #Qt #code #development
#кофе #электричка
Notes for February 2-7
Half my working week was spent at an internal company thing, so I decided to make the best of my weekend and start cutting down on coding a bit.(...)
#agents #ai #docker #golang #notes #productivity #python #swift #weekly

How to Install and Run Matrix Synapse Chat Server on Debian VPS
#certbot #chat #debian #letsencrypt #matrix #nginx #opensource #python #selfhosting #selfhosted #vps #Cloud #Guides #VPS
How to Install and Run Matrix ...
New #physics #python #electrodynamics post. Deeper dive into Faraday's law - using the changing magnetic vector potential to calculate the electric field to show emf = -dPhi/dt
https://rjallain.medium.com/the-boom-moment-using-python-to-show-faradays-law-always-works-2f79e5941cf0?sk=c0a11665abb669f1671ac91a762c9119
Databricks is hiring Senior Specialist Solutions Engineer
🔧 #java #python #scala #api #rest #aws #azure #cicd #gcp #kafka #sql #seniorengineer
🌎 Stockholm, Sweden
⏰ Full-time
🏢 Databricks
Job details https://jobsfordevelopers.com/jobs/senior-specialist-solutions-engineer-at-databricks-com-dec-23-2025-0edb95?utm_source=mastodon.world&utm_medium=social&utm_campaign=posting
#jobalert #jobsearch #hiring
@guix is on the way to Python 3.12 - fasten your seatbelt, it would be fun!
https://codeberg.org/guix/guix/milestone/35232
Plex
Plex is a refined port of the amazingly versatile XBMC (Xbox Media Center) software for Intel Macs. (...)
https://taoofmac.com/space/apps/plex?utm_content=atom&utm_source=mastodon&utm_medium=social

"Gunicorn has been serving Python web applications since 2010. It's downloaded millions of times per month and runs in production at companies of all sizes."
And if you're a user, you can and should sponsor the volunteers developing it:
https://gunicorn.org/sponsor/
#OpenSource #Python #Gunicorn
Python Tip #36 (of 365):
When accepting any number of objects to a function, consider when to accept an iterable and when to use * instead.
Accepting an iterable:
def run(arguments):
return subprocess.run(arguments, capture_output=True, text=True)
Accepting an arbitrary number of arguments by using *:
def run(*arguments):
return subprocess.run(arguments, capture_output=True, text=True)
🧵(1/2)