#til Adding a semicolon at the end of the last line of a #Jupyter cell supresses output - Useful if we just want the side effects (e.g. drawing a plot)

Từ 2 tuần xuống còn 15 phút: Kiến trúc hệ thống di chuyển dữ liệu hiệu suất cao.
Sử dụng S3 để lưu file, Redis làm bộ nhớ tạm (có checkpoint & nén dữ liệu), Celery xử lý bất đồng bộ với 8 worker song song, chia nhỏ dữ liệu linh hoạt theo tài nguyên hệ thống.
Xử lý 1 triệu bản ghi trong 20 phút – không crash, phục hồi tự động, theo dõi thời gian thực.
#DataMigration #SystemDesign #Redis #Celery #Scalability #DevOps #Python #Backend #LậpTrình #KiếnTrúcHệThống #XửLýDữLiệu #TốiƯuHiệuSuất #D
Developing a Python app using Azure Cosmos DB
#Azure #CosmosDB #Python #NoSQL
https://github.com/Azure-Samples/azure-cosmos-db-python-getting-started
We use Azure DevOps at work. I have active stories across 4 different project boards. I use Obsidian for keeping more detailed notes.
I need a "single pane of glass" to work in. In my daily notes section, I can now add a note with a reference to a DevOps story. I wrote a Python program which then runs through Power Automate at the end of each day, and updates my comments directly to each referenced DevOps story. It's still a bit clunky, but it works for me.
#Obsidian #PowerAutomate #Python
Experimenting with multiple starting points (and the dark background). Maybe tomorrow I'll try to animate these a bit... 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/2025/sketch_2025_12_21 #Processing #Python #py5 #CreativeCoding

V - S1 EP12 Lab 3 - Machine Learning in Python - Accidental Class Variable - Shadowing in Python #vscode #jupyternotebook #PythonForDataScience #mlforbeginners #machinelearning #pythoncoding #learnpython #dataengineering #machinelearningmodels #codingforbeginners #statistics #machinelearningtutorial #datascienceforbeginners #machinelearningbasics #algorithims #jupyterlabs #softwaredeveloper #datascience #aiexplained #python
Content warning:morshutalk-v2 dev thread I guess?
(Larger updates are prob going to be blog posts once things are off the ground and things are Allegedly Functional, but for now this'll do)
Today's "progress" (if I can even call it that) mostly just consists of getting the absolute basics down for how to structure things, refreshing myself on how to Python, and also pulling over the tiny bits of code that won't be changed from morshutalk-output (being the .wav file write). Still need to look into alternatives for a bunch of the packages, I want to try and use stuff that's up-to-date and doesn't rely on deprecated features like audioop.
I think I'm only going to have morshutalk-v2 support outputting the raw wav file, and/or convert it to opus (in an .ogg container) or, failing that, aac. Whether I'll have it always do both or not IDK, it depends on whether I can skip writing the wav file and can pass the appropriate bytearray into the encoder.
On Linux that's fairly easy so long that opusenc is installed, since I can just use subprocess to do a system call within the python code. But I really want to try and avoid doing anything like that - if I can get a mostly-straightforward transcode into opus or aac or whatever I'd be much happier, I want to try and avoid any system-level dependencies if possible. Mostly as an exercise in portability, and also to avoid any weirdness that'd come with versioning outside of my control.
But "technically functional" is better than "not functional" at least. The actual morshu-v2 class and all that doesn't exist yet, since that all has to wait for me to identify what libs are viable replacements for what the OG version of morshutalk uses, and what I can wrap into native Python code (if possible and if not painful to do so).
@eddietonkoi has taken nerdom up a notch. In this article, he explains why and how he created his own spelling and structure checker for his wife’s manuscripts using Regular Expressions and Python. I could not love this more.
https://www.podfeet.com/blog/2025/12/editing-pipeline-structur-spelling-eddie-tonkoi/
Denkt daran, ein paar Euro wenn möglich, in die Kaffeekasse von wichtigen Softwareprojekten mit #Django oder der #PSF / #Python oder bei #Tor oder oder oder oder einzuwerfen. Im Grunde egal – eben bei eurem Freie Software-Universum und den Tools, die ihr regelmäßig nutzt.
Dank des Orangen Mannes sind viele Unterstützungen durch die USA ausgelaufen und Europa hat es nicht auf den Deckel gebracht, da einzustehen. Jetzt müssen wir ran.
The recording of the Q&A from my EmacsConf 2025 presentation is now published, where we talk about Emacs in general and the setup I use for Python development. Live and improvised 😀
https://youtu.be/JIpcbE1XrKI?si=dALsqpkh4tmuvrhu
Improvisando com FoxDot | taconi | Algorave Brasil 2025/12/20
https://bolha.tube/w/hx3yneu6ZviSpQ8dd4jZo5
How does passing an option value with spaces work in various option parsing software (in context of shell & #commandLineInterface)?
Expectation is that the option will have the entire string passed intact. This came up due to https://github.com/sahib/rmlint/issues/747 .
#Python "argparse" & #Perl "Getopt::Long" are what I personally care for; may check self; did not have to think about this before.