Python Tip: match/case (Structural Pattern Matching)
match command.split():
case ['go', direction]:
move(direction)
case ['pick', 'up', item]:
grab(item)
case _:
print('Unknown command')
Python 3.10 match/case goes beyond switch statements. It destructures and binds variables.
https://raccoonette.gumroad.com/l/Python-for-Beginners-From-Zero-to-Your-First-Projects
#Python #CodingTips #Programming
There is a silver lining to the whole #python #chardet debacle. If it is legal to throw a pile of code at an LLM, and tell it to write a new version of that code that is not a derivative then that gives us a lot of options too.
GPL compatible #ZFS? no problem! #ReactOS from the leaked NT/2k sources? No problem!
Maybe this is a golden age for the collapse of proprietary software after all. If they can do an end run around the #GPL we can do an end run around the #EULA.
🐧 Filecraft – automate file management tasks
Filecraft is a command line utility designed to automate common file organisation tasks. It's written in Python and Go. The post Filecraft – automate file management tasks appeared first on LinuxLi...
📰 Source: LinuxLinks
🔗 Link: https://www.linuxlinks.com/filecraft-automate-file-management-tasks/
I've written a post about some new changes I've made to BlogMore, the static site generator I'm experimenting with. https://blog.davep.org/2026/03/07/more-blogmore.html
#ssg #python #programming #ai #agent #github #copilot
I now hunt the great hairy mammoth. Learn to enchant a great snake to send messages in its realm: https://cromwell-intl.com/open-source/python-social-media-automation/?s=mc #OpenSource #Python #TwitterMigration

Робот с видеонаблюдением и отслеживанием объекта
Введение Данный проект, является логическим продолжением развития темы " Солнечный трекер на Arduino ". Используя базу солнечного трекера (его конструкцию) и web-камеру можно собрать роботизированную конструкцию, которая будет отслеживать в режиме реального времени назначенный маркер или группу маркеров в определённой области пространства. Распознавать маркеры можно по разным критериям: выбранному цвету, текстуре, форме и т.д. Я выбрал второй вариант. Делаю фото объекта web-камерой, с выбранным однородным цветом, которую буду использовать на роботе. Подготовка ПО Для корректной работы программы вам нужно: 1. Установить Python https://www.python.org/ 2. Установить модули numpy, opencv и pyserial используя инструмент pip https://pypi.org/project/numpy/ https://pypi.org/project/opencv-python/ https://pypi.org/project/pyserial/ 3. Установить Arduino ide https://learnlange.blogspot.com/p/blog-page_28.html Сборка робота Система представляет стационарную установку с двумя степенями свободы, которые позволяют вращаться в пространстве цилиндрической формы. На верхней части системы закреплена USB web-камера (её можно заменить на smart камеру или ip камеру). Для быстрого создания прототипа использую образовательный набор КЛИК: базовый и ресурсный Поворотные механизмы реализованы с использованием DC моторов с понижающей передачей.
https://habr.com/ru/articles/1007628/
#python #opencv #pyserial #arduino #робототехника #компьютерное_зрение #роботы #отслеживание #с++
La Fragmentation Stratégique du Paysage Développeur
https://peer.adalta.social/w/prA8hKJDyJ8qagsUj9qnRZ
#europass #geogebra #python #math #mathematics #MathSky
http://mikkorahikka.blog/2026/03/07/europass-course-in-helsinki/
The Polyglot Platform Wars Intensify
https://peer.adalta.social/w/ubf2VY2M2ZA4xDvVn7rDN9
Fragmentierung als strategische Stärke
https://peer.adalta.social/w/jACv625BGw3Em2LKQ8SVpm
🎉 pytest-docs-l10n is published!
🚀 Preview:
https://projects.localizethedocs.org/pytest-docs-l10n
🌐 Crowdin:
https://localizethedocs.crowdin.com/pytest-docs-l10n
🐙 GitHub:
https://github.com/localizethedocs/pytest-docs-l10n
#Crowdin #GitHub #Sphinx #Python #Pytest #Testing
Hab gestern vorschritte gemacht das #unPhone in #MicroPythonOS zu unterstützten:
https://github.com/MicroPythonOS/MicroPythonOS/pull/74
Hänge bei der Einbindung des Touch Screen als Eingabegerät.