You are here |
robr.dev | ||
| | | |
micro.webology.dev
|
|
| | | | This post was inspired by Andrea Grandi's My ZSH history post, but I modified it back to work with my customized BASH output instead ? history | awk '{print $4}' | sort | uniq --count | sort --numeric-sort --reverse | head -10 11063 git 7636 just 3280 cd 2575 workon 1512 ls 1061 subl 967 docker 887 cat 703 python 700 gittower I guess you could say I use git a lot. | |
| | | |
www.mackorone.com
|
|
| | | | ||
| | | |
janakiev.com
|
|
| | | | Python's built-in venv module makes it easy to create virtual environments for your Python projects. Virtual environments are isolated spaces where your Python packages and their dependencies live. This means that each project can have its own dependencies, regardless of what other projects are doing. | |
| | | |
blog.ganssle.io
|
|
| | An explanation of a few ways to make sure your tests use the version of the package that your users will install. |