MongoDB string split on update with mongosh
•
3 min read
Nobody doubts that MongoDB can split string for the update function. There is a common Software Ops task when you need to transform a string field in a datastore to an array split by delimiter symbol or vice versa. It could be helpful when you transform a string of comma/space/semicolon-separated items like tags, aliases, and…
-
There are many different tools to manage Python application environments Pip3, Anaconda, Poetry, Mamba, Miniforge and so on… The cool part is that developers have choices to make on how to manage their packages and dependencies. Today I am writing about an issue I encountered during Python environment update with miniforge. First will be a…
-
Every developer who tried to program on Python is charmed by its convenient syntax and feeling that language understands you from half of the word. However, we are not always programming in the language that has the most comfortable syntax either because of performance or existing codebase or other reasons. When you switch from Python…