hello!
happy thursday! there's 3ish weeks (give or take a day) until we'll be closing talk submissions for this year. we'd definitely like to hear from you (also you, in case you're reading)!
details & forms etc: pretalx.northbaypython.org/nbpy-2026/cfp #Python #NBPy #WebsiteSoonIPromise
North Bay Python 2026
hello!
happy thursday! there's 3ish weeks (give or take a day) until we'll be closing talk submissions for this year. we'd definitely like to hear from you (also you, in case you're reading)!
details & forms etc: https://pretalx.northbaypython.org/nbpy-2026/cfp #Python #NBPy #WebsiteSoonIPromise
I'm doing a review of basic #algebra, and was looking for something in #python #matplotlib to plot intervals on the number line. Didn't find anything, so I wrote this.
https://chesterjankowski.com/blog/plotting-intervals-on-the-number-line/
ClickHouse is hiring Senior Software Engineer - Postgres
🔧 #c #golang #python #ruby #typescript #cicd #kubernetes #postgresql #terraform #seniorengineer
🌎 Remote; Canada
⏰ Full-time
🏢 ClickHouse
Job details https://jobsfordevelopers.com/jobs/senior-software-engineer-postgres-at-clickhouse-com-nov-20-2025-d9714c?utm_source=mastodon.world&utm_medium=social&utm_campaign=posting
#jobalert #jobsearch #hiring
«Gajim receives €11.75 per week from 20 patrons.»
Is the US falling behind China in research? The Leiden Institute recently published its research rankings — and in the latest Bamboo Weekly, we used Claude Code to write #Python #Pandas to analyze this data set.
Learn more about AI, data analysis, and the future of research: https://BambooWeekly.com

Python Tip #22 (of 365):
Before using break in a loop, consider whether there's a more specialized tool you could use.
Instead of:
found = False
for item in iterable:
if item == target:
found = True
break
You can do:
found = target in iterable
To find the first match:
for item in iterable:
if condition(item):
value = item
break
You could do:
value = next(
item
for item in iterable
if condition(item)
)
🧵(1/3)
🐍👨💻🎦 Вебскрейпінг на #Python 👇
У відео показано, як збирати дані з сайтів, обробляти HTML і зберігати інформацію
https://www.youtube.com/watch?v=s8XjEuplx_U
This is my article about my fresh experience - streaming log entriet to the browser. First the article explains it on a simple case of Pydhon built-in classes and later on a robust Django example comes in (which was my use-case).
Hope is helps/inspires someone.
https://imn1.xyz/posts/019_streamable_log_in_browser.html
#Python SDK on its way! https://pypi.org/project/hyphen/
What Is F1 Score in Machine Learning? A Practical Guide
A simple way to balance precision and recall when accuracy is misleading.
This post explains F1 with a clear confusion-matrix view, when it matters (imbalanced classes), and how to interpret trade-offs—plus a small Python example.
#MachineLearning #DataScience #Python #ModelEvaluation #ai #medium #ML
@ai @programming @medium @towardsdatascience @pythonclcoding @chartrdaily @theartificialintelligence
Build a Monte Carlo Risk Simulator (Simple Scenario Engine) — Python Solution
A simple scenario engine for VaR, CVaR, and stress testing.
This post shows how to generate return scenarios, compute VaR/CVaR, and run simple stress tests—plus the checks that make the results believable (distribution fit, tails, and sensitivity).
#Python #RiskManagement #Quant #MonteCarlo #Finance #medium
@ai @programming @towardsdatascience @pythonclcoding @medium @chartrdaily