Even more BlogMore: https://blog.davep.org/2026/03/10/even-more-blogmore.html
Here's two examples of running command line stuff on iOS via Apple Shortcuts and a-Shell.
One shows the uptime of my phone, the other runs a Python script and shows the output.

Novo artigo no blog: asyncio na prática.
async/await não torna seu código automaticamente mais rápido. Se a tarefa é CPU-bound, você só adiciona complexidade sem ganho nenhum. A diferença aparece mesmo no I/O — e é dramática.
O artigo mostra os dois casos com exemplos reais, explica o event loop e quando vale (ou não) usar concorrência.
🔗 https://www.riverfount.dev.br/posts/asyncio_na_pratica/
Você já teve bug causado por uso errado de asyncio em produção?
#python #asyncio #concorrência #performance
Here is a bit of #Python ( https://github.com/ology/Music/blob/master/multi-timbral-drum-fills.py ) telling my modular drums to play quasi-Euclidean beats with 4 gates of my #MIDI interface. The code randomly selects from a small list of note values and a velocity lambda. This part drives Plaits in its 5th "yellow model" and the Qu-bit Chord in minor mode.
Inspired by https://internet-janitor.itch.io/wigglypaint
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_03_10 #Processing #Python #py5 #CreativeCoding
🤖 Setting Up a Google Colab AI-Assisted Coding Environment That Actually Works
This article focuses on Google Colab , an increasingly popular, free, and accessible, cloud-based Python environment that is well-suited for prototyping data analysis workflows and experimental cod...
📰 Source: MachineLearningMastery.com
🔗 Link: https://machinelearningmastery.com/setting-up-a-google-colab-ai-assisted-coding-environment-that-actually-works/
#AI #ArtificialIntelligence #Python #DataScience

This is very wrong and broken IMO.
You can add an element of a string to itself, but not a byte array.
a = 'str'
a += a[0]
Works, but this does not:
b = b'str'
b += b[0]
But this does work:
b += b[0:1]
Byte strings aren't strings but python pretends they are to make things "easier" but it violates the consistency of how it appears as an array.
Also, that this returns false is broken:
b[0] == b's'
Season 1 Lesson 7 Part 8 - Your First Steps - Find Multiple Instances of - Strings in Python #learncoding #pythoncode #pythonprogramming #softwaredeveloper #codingtutorial #python #dataanalysis #dataengineer #jupyternotebook
Interesting, the Bodleian library created a #Python library that converts #TIFF or #JPEG source images to #JP2 #JPEG2000 (using a #Kakadu wrapper), and does various quality checks on the result:
https://github.com/bodleian/image-processing
Will definitely give this a try for an upcoming in-house TIFF to JP2 conversion pilot project!
I’m building my own new social platform for people into mostly crypto but also AI, and politics. A place for real conversations and open ideas. Still early and private. More soon. #crypto #indiedev #app #developer #website #python #custombackend #cloudflare
