-
Using Python on Windows does not come as naturally as on Unix-like systems, so any help is appreciated. I wrote a batch script to automate creation, setup and deletion of Python virtual environment. This can come in handy when you want to test something in a clean env, or to … -
Execute the same git subcommand in all local repositories
If you work with more than one git project simultaneously, you often need to do the same maintenance tasks in each cloned repository: check if there are some changes waiting to be pushed, check remote URLs for all repos (e.g. when considering to switch from HTTPS authentication with GitHub … -
Portable development setup for Python on Windows
WinPython https://winpython.github.io/ All-in-one distribution which comes with many difficult-to-build packages preinstalled. And their ...-Zero version is great for thumb drives! Pip works just fine, but installing packages that require C compiler is always a pain on Windows. May be I should look into conda and see if …