🛠️ Lenswalker dev update
Today's session:
• Fixed a sneaky memory leak in logout handling
• Added CI/CD pipeline
• 24 new tests for blocking & reporting
• Code cleanup: shared helpers, unified email templates
The codebase is getting more robust every day.
Still looking for testers for our real-world photo RPG! Walk → gather mana → photograph → discover. DM if interested ✨
#gamedev #indiegame #indiedev #webdev #typescript #python #buildinpublic #gaming
Как 17-летний писал RAG-алгоритм для хакатона AI for Finance Hack: ретроспектива
Привет, Хабр! Мой путь в мире IT официально начался относительно недавно: в октябре 2025 года. До этого программирование вообще не выходило за рамки увлечений. Но однажды я решил испытать удачу и выйти на тропу приключений, после которой я уже не вернулся прежним...
https://habr.com/ru/articles/986180/
#data_science #python #ai #rag #github #соревнование #хакатон #райффайзенбанк #machine_learning #ai_engineering
RE: https://mastodon.social/@decathorpe/115766219553352489
hot off the press: `ingredients` v0.2.0
https://codeberg.org/decathorpe/ingredients/releases/tag/v0.2.0
Notably, the project now includes first-party Python bindings (available from PyPI as "crate-ingredients").
This was the last missing puzzle piece for future integration in packaging tools, i.e. `rust2rpm`.
Probability Calibration with Python
Make model scores behave like real probabilities.
Many classifiers rank well but give bad probabilities (0.9 does not mean “90%”). This post shows how to test calibration (reliability curves, Brier score) and fix it with Platt scaling or isotonic regression in Python.
https://hasanaligultekin.medium.com/probability-calibration-with-python-6ee602760ab6
#MachineLearning #Python #ModelEvaluation #DataScience #MLOps
@programming @ai @towardsdatascience @pythonclcoding
@chartrdaily
https://medium.com/@hasanaligultekin
V - S1 EP17 Lab 4 - Machine Learning in Python - Why use Del Keyword on - Dictionary in Python #statistics #machinelearningtutorial #datascience #jupyternotebook #mlforbeginners #datascienceforbeginners #vscode #python #machinelearningbasics #softwaredeveloper #dataengineering #PythonForDataScience #jupyterlabs #learnpython #pythoncoding #algorithims #learntocode #machinelearningmodels #machinelearning #codingforbeginners
@diazona @mattesilver “Get it wherever you get your p̶o̶d̶c̶a̶s̶t̶s̶ Python packages!”
How does one spelunk #Python history? I see that breakpoint() was added all the way back in 3.7, but hasn't been improved on at all.
I can't be the first person who wanted to do "breakpoint(x,y)" to start the debugger and immediately print out the values of x and y, instead of making me type each in the debugger every time I got to this spot.
Where can I find the discussion of what breakpoint() should and should not be able to do?
Sorting a #Python dict by value? Instead of:
sorted(d.items(), key=lambda t: t[1])
Use itemgetter. It's cleaner AND ~25% faster:
from operator import itemgetter
sorted(d.items(), key=itemgetter(1))
Sort by value, then by key:
sorted(d.items(), key=itemgetter(1, 0)) # value,key

This Wednesday! #Boston #Python
https://www.meetup.com/bostonpython/events/312870157/
I improved the reflow further, by debouncing unnecessary configure events and only reflowing at most every `x` milliseconds, where `x` can be passed to the constructor. Currently for the tag list widget, the reflowing is set to happen with a debounce of 50ms.
#python #tkinter #gui #xiaolongdictionary #canvas #programming #coding
Running into a weird numpy "overflow error encountered in multiply" in Blender, using "numpy.linalg.norm" on float32 values (they're not bigger than 1.0, but could be). Never seen it before, and it crashes Blender consistently.
Has anyone else run into this, with a workaround?
Advanced List Comprehensions with Multiple Conditions
Filter and transform data in one elegant expression
List comprehensions can include multiple conditions and nested structures for powerful data transformations
#python #pythontricks #codingtips #programmingtutorial #pythonlistcomprehensiontutorial #pythonadvancedcomprehensiontutorial #pythondatatransformationtutorial #pythonfiltertransformtopic #pythonelegantexpressionidea #pythonnestedcompre...
https://www.youtube.com/watch?v=QvA59CAW6sE