This first time speaker at #PyTexasConferene2026 is going to show you how to improve your #python performance, catch bugs in automated workflows, and more!
Who do you think it might be?
https://www.pytexas.org/2026
*A drunk LLM driver enters GH*
> Joined 2 weeks ago
*Sends some "ai" slop, gets rejected*
*Automates harassing the maintainers*
Scene.
github.com/matplotlib/m...
#Python
---
Did they train "ai"-bullying on GH rage posts?
RE: https://bsky.app/profile/did:plc:lpx4s2ddgn54cocsxs7q3n4a/post/3meog255lxs2r
[PERF] Replace np.column_stack...
*A drunk LLM driver enters GH*
> Joined 2 weeks ago
*Sends some "ai" slop, gets rejected*
*Automates harassing the maintainers*
Scene.
github.com/matplotlib/m...
#Python
---
Did they train "ai"-bullying on GH rage posts?
RE: https://bsky.app/profile/did:plc:lpx4s2ddgn54cocsxs7q3n4a/post/3meog255lxs2r
[PERF] Replace np.column_stack...
Hey everyone, I'm trying to implement a "slice" function but I'm not sure how to go with negative steps
Let's say we have (slice start end [step])
And
(slice alphabet 0 10) returns abcdefij
What should this
(slice alphabet 0 10 -1) return?
FWIW, #Python returns nothing for alphabet[0:14:-1]
#Python quiz! What's the result of this code?
n = 6
n -= n >= 2
print(n)
Lessons from this week's removal of the #pkg_resources module:
- If you don't use the `--no-build-isolation` argument of `pip install`, then `--require-hashes` is only partly effective and your builds may break whenever incompatible changes are made to #setuptools or other build dependencies.
- If you use `--no-build-isolation`, you need multiple `pip install` calls: first for all the needed build dependencies (a.k.a. `setup_requires`), then for the packages you actually want.
Notepad++: счетчики выделенных слов в StatusBar (python скрипт)
Программист часто копирует и вставляет, переименовывает и рефакторит.Вот бы сразу видеть в статусной строке количество переменных или функции в редактируемом файле . Увы, стандартный поиск (Ctrl+F) требует лишние клики. Мой небольшой Python-скрипт для Notepad++ по дабл-клику отображает в Status-Bar количество вхождений , частичных или полных, с учетом регистра и без.
https://habr.com/ru/articles/995078/
#notepad++ #counter #highlight #счетчик #подсветка_синтаксиса #подсветка_кода #удобство_использования #редактор_кода #plugin #python
Instead of choosing which #Python function to run with if/elif/else, use a dispatch table — a dict with functions as values:
from operator import add, sub, mul
ops = {'+':add, '-':sub, '*':mul}
s = input('Enter +, -, or * : ')
r = ops[s](10, 20)
print(f'10 {s} 20 = {r}')

Roblox is hiring Senior Software Engineer, Data Platform - Foundation AI
🔧 #python #aws #kubernetes #seniorengineer
🌎 San Mateo, California
⏰ Full-time
🏢 Roblox
Job details https://jobsfordevelopers.com/jobs/senior-software-engineer-data-platform-foundation-ai-at-roblox-com-dec-19-2025-962239?utm_source=mastodon.world&utm_medium=social&utm_campaign=posting
#jobalert #jobsearch #hiring
Dict Hash Collision DOS Slows Lookups From 1ms To 47 Seconds?!
HASH COLLISION DISASTER! Attacker crafts colliding keys! Dict becomes linked list! O(1)→O(n) lookup! 47 seconds per request! Complete outage! 470K users logged out! $2.3M lost! Infrastructure FIRED!
#python #pythondisaster #hashcollision #dosattack #dictperformance #productionbug #pythonshorts #pythonwtf #o(n)lookup #careerending #sessionstorage #algorithmiccomplexity
https://www.youtube.com/watch?v=f6WZj-_xj5c
Some concrete thoughts: https://dev.to/adamghill/checking-django-settings-12g4.
I have prototype code for this, but wanted to get feedback about the ideas first. Might post in the Django forum eventually…
Hi! We've just released #Slint 1.15.1, a patch release that fixes a handful of bugs that slipped the last release.
Slint is a native UI toolkit for embedded and desktop apps.
See our change log for a complete list of changes.
https://github.com/slint-ui/slint/releases/tag/v1.15.1
#cpp #cplusplus #rustlang #python