Dipssi
Dipssi @Dipssi336945 ·
Never Knew about RSS before but after reading blogs , chatting with llms, it's just something which is in XML format , accessed by anyone has a universal standard and can be easily maintained instead of API docs Sounds like a chance to be lazy!! #buildinpublic #python #RSS #AI
23
Reuven M. Lerner
Reuven M. Lerner @reuvenmlerner ·
Want your #Python function to take any number of positional args? Use *args: - Can be any name, but args is traditional - The * is only in the function definition - It's a tuple - Don't grab elements by index; iterate over them - It might be empty - Pronounce it "splat args"
1
178
Techbuddies
Techbuddies @Techbuddie0823 ·
If your Django app feels fast locally but crawls in production, it might be N+1 queries. This guide shows you exactly how to spot them with Debug Toolbar and kill them with select_related vs prefetch_related: techbuddies.io/2026/03/26/how… #Django #Python #webdev
How to Fix Django N+1 Queries: A Practical Step‑by‑Step Guide - techbuddies.io

Introduction: Why Django N+1 Queries Kill Performance When I first started working with Django, the N+1 queries problem felt like a hidden tax on every page I built. Everything looked fine in...

From techbuddies.io
3
Abbas Ali
Abbas Ali @Abbas_Ali02 ·
Day 78: Python problem-solving. 4Sum. Got stuck thinking time complexity could be improved. Turns out O(n³) is expected. Fix two elements → use two pointers. Handle duplicates carefully. Pattern recognition matters more. #Python #DevOpsJourney #DSA
13
Monavio
Monavio @Monavioapp ·
Stack decision that paid off: Python for Cloud Functions. Finance parsing needs strong string manipulation, date handling, and math libraries. Python has all three, plus the best Gemini SDK. Not everything needs to be TypeScript. #fintech #python
5
Reuven M. Lerner
Reuven M. Lerner @reuvenmlerner ·
Mutable builtins in #Python cannot be dict keys. But your (mutable) classes can! class C: def __init__(self, x): self.x = x c = C(10) d = {c:10} # No error! print(d[c]) # prints 10
337
Nimrod Lahav
Nimrod Lahav @Nimrod_Lahav ·
Replying to @openclaw
@openclaw users: LiteLLM 1.82.7-1.82.8 compromised with credential stealer. Check now: pip show litellm If affected → rotate ALL API keys, SSH keys, cloud creds NOW. This runs on every Python start. Your secrets may already be exposed. Thread 🧵�� #LiteLLM #Security #Python
1
98
Charles Lima
Charles Lima @charleslima015 ·
Day 1/Day 20: Learning Python Finished the Python Basics chapter from Automate the Boring Stuff with Python. Start Small but be consistent #Python #30Daysofcode
5
Reuven M. Lerner
Reuven M. Lerner @reuvenmlerner ·
You can't use a list as a #Python dict key: mylist = ['a', 'b'] d = {mylist: 10} # TypeError! Why not? Dicts run "hash" on a key to choose a pair's storage location. To avoid pairs getting lost, mutable builtins (list, set, dict) cannot be used as dict keys.
1
408
Moosa Kazim
Moosa Kazim @GM_MK007 ·
Day 55 of my Data Engineering journey 🚀 Today I learned branching in Apache Airflow: • Task dependencies • BranchPythonOperator • Conditional workflows • Dynamic execution Pipelines don’t have to be linear. Day 55 ✅ #DataEngineering #Airflow #Python #LearningInPublic
9