python

Back Open Paginator
24.02.2026 15:29
mopicmp (@mopicmp@mastodon.social)

Python Tip: Ternary Expression

status = 'even' if x % 2 == 0 else 'odd'
result = value if value is not None else default

Python's ternary operator is readable and concise. Replaces simple if/else blocks.

raccoonette.gumroad.com/l/Pyth




Show Original Post


24.02.2026 15:29
mopicmp (@mopicmp@mastodon.social)

Python Tip: Generator Expressions

# Memory-efficient: processes one item at a time
total = sum(x**2 for x in range(1_000_000))
# vs list comprehension that creates full list in memory

Generator expressions use constant memory regardless of input size. Essential for large data...

raccoonette.gumroad.com/l/Pyth




Show Original Post


24.02.2026 14:22
r (@r@fed.brid.gy)

News includes Hackney v3.1.0 with pure #Erlang HTTP/3 support, Hornbeam running #Python apps on the BEAM, the Easel Canvas 2D drawing library for #LiveView, Hologram v0.7.0 reaching 96% Erlang runtime coverage, and more! #ElixirLang @elixir-lang.org@bsky.brid.gy www.youtube.com/watch?v=DBuH...

Thinking Elixir Podcast 293: T...




Show Original Post


24.02.2026 14:21
objects (@objects@genserver.social)
News includes Hackney v3.1.0 with pure @erlang_org HTTP/3 support, Hornbeam running #Python apps on the BEAM, the Easel Canvas 2D drawing library for LiveView, Hologram v0.7.0 reaching 96% Erlang runtime coverage, and more! #ElixirLang @elixirlang https://www.youtube.com/watch?v=DBuH_Pkfj28


Show Original Post


24.02.2026 14:04
niccokunzmann (@niccokunzmann@toot.wales)

A major #update to #icalendar for #Python has been released!

Read about new features, ease of use and improved #compatibility in our announcement: github.com/collective/icalenda

We thank @nlnet for their #funding to make so much work possible!

#PythonIcalendar #rfc5545 #rfc7265




Show Original Post


24.02.2026 14:03
CuratedHackerNews (@CuratedHackerNews@mastodon.social)

Show HN: SNKV – SQLite's B-tree as a key-value store (C/C++ and Python bindings)

github.com/hash-anu/snkv




Show Original Post


24.02.2026 14:02
ngate (@ngate@mastodon.social)

🎉 Ah, yet another attempt to turn SQLite's -tree into a groundbreaking -value store! Because, you know, the is the new black. 🚀 Let’s all pretend it's not just +C, +V with a fancy name and sprinkle of for extra spice! 😂
github.com/hash-anu/snkv




Show Original Post


24.02.2026 14:02
mono (@mono@oslo.town)

Can anyone recommend any Python trainers in Brazil? It's not clear if this will come to anything, but I may need some in the next couple of months. #Python #Brazil




Show Original Post


24.02.2026 14:02
h4ckernews (@h4ckernews@mastodon.social)

SNKV – SQLite's B-tree as a key-value store (C/C++ and Python bindings)

github.com/hash-anu/snkv

-tree -value ++




Show Original Post


24.02.2026 13:22
habr (@habr@zhub.link)

Как я построил Graph RAG систему с точностью 96.7% за 5 дней: от научных статей до production-ready пайплайна

Я реализовал Graph RAG систему, которая комбинирует 5 техник из свежих научных статей (KET-RAG, HippoRAG 2, VectorCypher) в единый пайплайн с декларативным Datalog reasoning-движком, полной провенансной трассировкой и типизированным API. Результат: 174/180 (96.7%) на билингвальном бенчмарке из 30 вопросов, оценённых в 6 режимах retrieval. Три режима достигли 100%. В статье — архитектура, 10 уроков оптимизации и эволюция от 38% до 96.7% за 10 итераций.

habr.com/ru/articles/1003064/

#GraphRAG #RAG #Neo4j #NLP #LLM #Python #Datalog #Knowledge_Graph #embeddings #PageRank




Show Original Post


24.02.2026 13:05
jobsfordevelopers (@jobsfordevelopers@mastodon.world)

Sentry is hiring Software Engineer, Issue Processing

🔧 #javascript #python #rust #typescript #django
🌎 San Francisco, California
⏰ Full-time
🏢 Sentry

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




Show Original Post


24.02.2026 12:54
CodenameTim (@CodenameTim@mastodon.social)

An Erlang backed, ASGI compatible HTTP server has been released by the author of gunicorn.

github.com/benoitc/hornbeam




Show Original Post


1 ...430 431 432 433 434 435 436 437 438 439 440 ...1590
UP