python

Back Open Paginator
22.01.2026 21:27
r (@r@bsky.brid.gy)

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




Show Original Post


22.01.2026 21:27
NorthBayPython (@NorthBayPython@social.northbaypython.org)

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/nbp #Python #NBPy #WebsiteSoonIPromise




Show Original Post


22.01.2026 21:24
culturednyc (@culturednyc@mastodon.social)

I'm doing a review of basic , and was looking for something in to plot intervals on the number line. Didn't find anything, so I wrote this.

chesterjankowski.com/blog/plot




Show Original Post


22.01.2026 21:06
jobsfordevelopers (@jobsfordevelopers@mastodon.world)

ClickHouse is hiring Senior Software Engineer - Postgres

🔧 #c #golang #python #ruby #typescript #cicd #kubernetes #postgresql #terraform #seniorengineer
🌎 Remote; Canada
⏰ Full-time
🏢 ClickHouse

Job details jobsfordevelopers.com/jobs/sen
#jobalert #jobsearch #hiring




Show Original Post


22.01.2026 20:39
item (@item@hub.hubzilla.de)
А зашлите им денег, неплохой же xmpp-клиент, но что-то как-то совсем мало они собирают.
«Gajim receives €11.75 per week from 20 patrons.»

Питонистов с него вообще должно колбасить и переть (Python + Qt bindings). Всяко лучше чем веб-камщиц с OnlyFans кормить.
#Python #Qt #Gajim #xmpp #jabber @rur @cyrboost @Russia

RE: https://fosstodon.org/@gajim/115940295456789727


Show Original Post


22.01.2026 20:26
Reuven (@Reuven@fosstodon.org)

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: BambooWeekly.com





Show Original Post


22.01.2026 20:21
treyhunner (@treyhunner@mastodon.social)

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)




Show Original Post


22.01.2026 20:19
AndriiKuznietsov75 (@AndriiKuznietsov75@social.kyiv.dcomm.net.ua)

🐍👨‍💻🎦 Вебскрейпінг на #Python 👇

У відео показано, як збирати дані з сайтів, обробляти HTML і зберігати інформацію

youtube.com/watch?v=s8XjEuplx_U




Show Original Post


22.01.2026 20:10
n1 (@n1@fosstodon.org)

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.

imn1.xyz/posts/019_streamable_

#python #django




Show Original Post


22.01.2026 19:56
jaredwray (@jaredwray@mastodon.social)

SDK on its way! pypi.org/project/hyphen/




Show Original Post


22.01.2026 19:49
hasanaligultekin (@hasanaligultekin@me.dm)

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.

:medium: medium.com/@hasanaligultekin/w

#MachineLearning #DataScience #Python #ModelEvaluation #ai #medium #ML

@ai @programming @medium @towardsdatascience @pythonclcoding @chartrdaily @theartificialintelligence





Show Original Post


22.01.2026 19:45
hasanaligultekin (@hasanaligultekin@me.dm)

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

:medium: medium.com/@hasanaligultekin/b

#Python #RiskManagement #Quant #MonteCarlo #Finance #medium

@ai @programming @towardsdatascience @pythonclcoding @medium @chartrdaily





Show Original Post


1 ...606 607 608 609 610 611 612 613 614 615 616 ...1585
UP