ROFL I was confused as to why my Nested Loops written in Python are not getting a similar result to what I am essentially transcribing into the Pyzo. However, after checking my indentation and if a line was aligned correctly with another one...I found that "totalRolls += count" wasn't aligned with "while True:".
This matters a lot, once I resolved that issue with my replication of the code it behaved as expected. This made me happy, as I understand the idea. Loops within looks can be used to determine probabilities for a defined action (like how many rolls it takes before you get a 6).
I wonder if there if this is related to an undiagnosed learning disorder that I don't have a name for.
🚀 How to Deploy #Funkwhale on #Debian #VPS
This article provides a guide demonstrating how to deploy Funkwhale on Debian VPS.
What is Funkwhale?
Funkwhale is a self-hosted, federated audio platform for streaming and sharing music & podcasts. It uses #ActivityPub so libraries can follow/feature content across instances (like Mastodon), and it offers a web UI plus ...
Continued 👉 https://blog.radwebhosting.com/deploy-funkwhale-on-debian-vps/?utm_source=mastodon&utm_medium=social&utm_campaign=mastodon.social #redis #selfhosting #certbot #selfhosted #letsencrypt #opensource #python #postgresql

Trying to play with #Evolution #tasks and #Ubuntu... here's a simple #Python script to create tasks: using the Task Widget at https://extensions.gnome.org/extension/3569/task-widget/ it's possible to show tasks in the top menu bar of Ubuntu.

Calling astype on #Python #Pandas series with unconvertible values?
Use errors='ignore' to skip the error:
s = pd.Series([10, np.nan, 30])
s.astype('int8') # raises IntCastingNaNError
s.astype('int8', errors='ignore') # keeps original dtype

It's fun that #FIPS made just makes it so you can't build #python.
Discord is hiring Senior Software Engineer, Developer Success
🔧 #cplusplus #python #rust #typescript #react #unity #azure #gcp #seniorengineer
🌎 San Francisco, Bay Area
⏰ Full-time
🏢 Discord
Job details https://jobsfordevelopers.com/jobs/senior-software-engineer-developer-success-at-discord-com-feb-10-2026-d7a449?utm_source=mastodon.world&utm_medium=social&utm_campaign=posting
#jobalert #jobsearch #hiring
AI And The Ship of Theseus https://lobste.rs/s/3dtgmr #python #vibecoding
https://lucumr.pocoo.org/2026/3/5/theseus/
Turbocharge Stop Missing Trick Plot With Python
Math.sin plots a rhythm
Leverages the sine function to create a smooth wave traced with a single character per column.
#python #pythontricks #codingtips #programmingtutorial #pythonsinewave #mathartpython #asciiwavepattern #terminalanimationidea #visualmathtutorial
https://www.youtube.com/watch?v=6Ju8-pxAy2Y
Excited for #JCON EUROPE 2026? See Michal Broz & Don Bourne at #JCON2026 in Cologne giving a #workshop about 'Think #AI is Only for #Python? Think Again. A Hands-On #Java AI Workshop That Will Change Your Mind!'
Are you ready to #revolutionize
🎟️ 2026.europe.jcon.one/tickets
Free for #JUG members

How do you use Python and its related technologies? Let us know in the 2026 Python Developers Survey! 🐍 #python #pythondevsurvey
https://surveys.jetbrains.com/s3/python-developers-survey-2026
Python Tip #64 (of 365):
Ensure your classes all have a sensible __repr__ method.
A __repr__ method controls the default string representation of your class instances.
Pretty much every object should have a nice string representation.
For every class you make, either:
1. create a __repr__ method
2. use a tool (like the dataclass decorator) to create a __repr__ method
3. inherit from a class that has a useful __repr__ method method.
https://pym.dev/customizing-string-representation-your-objects/
🧵 (1/2)
📰 Pandas vs. Polars: A Complete Comparison of Syntax, Speed, and Memory
Need help choosing the right Python dataframe library? This article compares Pandas and Polars to help you decide.
📰 Source: KDnuggets
🔗 Link: https://www.kdnuggets.com/pandas-vs-polars-a-complete-comparison-of-syntax-speed-and-memory
