python

Back Open Paginator
01.03.2026 21:06
ngate (@ngate@mastodon.social)

🚨 Breaking news! 🚨 A brave soul has distilled the essence of into a mere 200 lines of , heroically defying the tyranny of libraries and dependencies. Prepare to be dazzled by a script so minimal, it trains on baby names like it's the 19th century 📜—because apparently, is for the weak. 🤦‍♂️💡
growingswe.com/blog/microgpt




Show Original Post


01.03.2026 20:56
r (@r@fed.brid.gy)

Release candidate 10.8.2.rc0 of passagemath, the comprehensive #OpenSource #Mathematics system in #Python, the pip-installable modularized fork of #SageMath. github.com/passagemath/...

Release passagemath-10.8.2.rc0...




Show Original Post


01.03.2026 20:56
r (@r@bsky.brid.gy)

Release candidate 10.8.2.rc0 of passagemath, the comprehensive #OpenSource #Mathematics system in #Python, the pip-installable modularized fork of #SageMath. github.com/passagemath/...

Release passagemath-10.8.2.rc0...




Show Original Post


01.03.2026 20:11
dff (@dff@fosstodon.org)

3/3 #BSD offers libcitrus. #musl C library includes support and gettext-tiny makes use of musl to provide a lightweight alternative for embedded systems. There are #C, #Perl and #Python versions of msgfmt. I'm learning more about the format by writing my own msgfmt utility. #DFD2026




Show Original Post


01.03.2026 19:50
owenrlamont (@owenrlamont@fosstodon.org)

I just released ryl 0.3.5 to PyPi and Crates.io - (now tested against several larger repos that were heavy yamllint users) and resolved several bugs and behaviour discrepancies with yamllint. #python #rust #yaml





Show Original Post


01.03.2026 19:46
treyhunner (@treyhunner@mastodon.social)

Python Tip #60 (of 365):

Be cautious of "if" expressions in comprehensions

An "if" expression in a "for" loop can look confusing:

sanitized = [n if n > 0 else 0 for n in counts]

That "else" isn't part of the comprehension. It's just inline "if" expression.

I find this a bit more readable:

sanitized = [
n if n > 0 else 0
for n in counts
]

But that could still be misunderstood.

🧵(1/2)




Show Original Post


01.03.2026 19:43
theZosia (@theZosia@mastodon.com.pl)

Hej, leci z nami ktoś z doświadczeniem z łączeniem #SQLite i #Python 'a?

#SQL




Show Original Post


01.03.2026 19:39
ngate (@ngate@mastodon.social)

🚀 Pyrefly: the trailblazing type checker that'll make your shine like a supernova! If you're eagerly waiting to compare empty containers while flying through type hints at light speed, has got you covered. 💫 Who knew could be this thrilling? 🙄
pyrefly.org/blog/container-inf




Show Original Post


01.03.2026 19:39
h4ckernews (@h4ckernews@mastodon.social)

Python Type Checker Comparison: Empty Container Inference

pyrefly.org/blog/container-inf




Show Original Post


01.03.2026 19:24
mopicmp (@mopicmp@mastodon.social)

Python Tip: pathlib > os.path

from pathlib import Path
config = Path.home() / '.config' / 'app.json'
if config.exists():
data = config.read_text()

pathlib provides an object-oriented filesystem API. Cleaner than os.path string juggling.

raccoonette.gumroad.com/l/Pyth




Show Original Post


01.03.2026 19:24
mopicmp (@mopicmp@mastodon.social)

Python Tip: any() and all()

nums = [2, 4, 6, 8]
all_even = all(n % 2 == 0 for n in nums) # True
has_big = any(n > 5 for n in nums) # True

any() and all() short-circuit on generators. Elegant replacement for loop-based checks.

raccoonette.gumroad.com/l/Pyth




Show Original Post


01.03.2026 19:17
dataplane (@dataplane@noc.social)

The Internet Last Week

* US/Israel Attacks on Iran Internet effects
infosec.exchange/@ProjectAinit
noc.social/@cloudflareradar/11
mastodon.social/@IODA/11614865
infosec.exchange/@dougmadory/1
* NDSS Symposium 2026
ndss-symposium.org/ndss2026/
* Various US DoD route withdrawals
stat.ripe.net/widget/routing-h
stat.ripe.net/widget/routing-h
bgp.he.net/AS6034#_prefixes
stat.ripe.net/widget/routing-h
* Python infrastructure outage
status.python.org/incidents/r4

#Iran #NDSS2026 #USDoD #Python




Show Original Post


1 ...401 402 403 404 405 406 407 408 409 410 411 ...1591
UP