Find the sketch-a-day archives and tip jar at: https://abav.lugaralgum.com/sketch-a-day
Code for this sketch at: https://github.com/villares/sketch-a-day/tree/main/2026/sketch_2026_02_08 #Processing #Python #py5 #CreativeCoding

Sick of google slides and every other bloated presentation tool so i built a lightweight one into EduLite
Markdown in, slides out.
The whole point is accessibility and heavy caching/export-ability for offline use
Works on my local machine for my own use right now, I hope to get it easily self-hostable and deployed one day!

oof here's a cursed question:
how does one make a #python dataclass with a subclass that changes *only* the default values of its fields, without adding new ones? is that doable?
Как менялся сон моих детей: анализ 5 лет данных о сне
Как менялся сон моих детей: анализ 5 лет накопленных данных За 5 лет жена скрупулезно записывала сон наших дочерей. Я взял эти данные и проанализировал: как меняется сон с возрастом, сколько спят дети на самом деле, и правда ли нормы ВОЗ работают. Оказалось, что наши дети спят по-разному, но оба — в пределах нормы. И даже в одинаковом возрасте их паттерны сна удивительно похожи! В статье: 📈 графики, 📊 статистика и главный вывод для родителей. #анализданных #родительство #детскийсон #python #датасаенс
https://habr.com/ru/articles/994224/
#детский_сон #анализ_данных #Python #родительство #трекинг_сна #Jupyter_Notebook #визуализация_данных #возрастные_нормы #развитие_детей #статистика_сна
#Python #Developers #Survey asking about my hobbies...

Got a npc test-model navigating around a web of waypathing edges I drew in blender. It finally works!
SoFi is hiring Staff IAM Engineer, Non-Human Identity
🔧 #python #api #aws #azure #cicd #gcp #jwt #kubernetes #terraform
🌎 Cottonwood Heights, Utah; Frisco, Texas; Helena, Montana; New York City, New York; San Francisco, California; Seattle, Washington
⏰ Full-time
🏢 SoFi
Job details https://jobsfordevelopers.com/jobs/staff-iam-engineer-non-human-identity-at-sofi-com-dec-11-2025-1ccd0c?utm_source=mastodon.world&utm_medium=social&utm_campaign=posting
#jobalert #jobsearch #hiring
I hear that #Python folk are going to enjoy their Monday.
https://setuptools.pypa.io/en/stable/history.html#v82-0-0
Yep, #setuptools removed pkg_resources.
Thanks to Eli Schwartz for the advance warning. We're going to mask it in #Gentoo.
liberachat is like AI LLM's, except in here you join a channel (#python e.g.) and then you politely ask a question..and then magically you get answers including other perspectives. Fun fact: you can even meet those agents in reallife at conferences, do drinks etc! ❤️
Shell und Programmieren
Aktuelle Version rust 1.88 nutzen, wie?
https://forum.ubuntuusers.de/topic/aktuelle-version-rust-1-88-nutzen-wie/
08.02.2026 um 19:45 Uhr
#ubuntuusers #forumuu #linux #opensource #fragenistmenschlich #programming #coding #shell #bash #dash #sh #python #terminal #skript
Python Tip #37 (of 365):
Avoid overusing the term "method".
In Python, the words "function" and "method" are not interchangeable.
All methods are functions, but not all functions are methods.
For example, here we're passing a string to the len function:
>>> message = "This is Python"
>>> len(message)
18
And here we're calling the lower method on the same string:
>>> message.lower()
"this is python"
🧵(1/4)
Transition done. Running on bare metal Starlette and SQLalchemy things are way more flexible. Definitely more code to write, but its better maintainable. Writing an authentication atop the Starlette middleware was easy. But the guardrails of fastapi are off: means more responsibility. Lesson learned: FastAPI is great for font-backend separated stuff but overkill for HATEOAS apps.