Library/Application Support/Firefox/Profiles//
and add this snippet...
/* hides the native tabs
*/
#TabsToolbar {
visibility: collapse;
}
Restart FF
I'm don't think any of this stuff will be interesting to anyone else, but it's just a place for me to write down things I want to remember. :-)
#--- ## Replaces current node with latest, keeping installed global packages #--- function nvm-upgrade {CURR=$(nvm current) nvm install node --reinstall-packages-from=node nvm uninstall $CURR }
docker
, used when managing individual containers on a docker engine. It is the client command line to access the docker daemon APIdocker-compose
, used to manage a multi-container application. It also moves many of the options you would enter on the docker run
CLI into the docker-compose.yml
file for easier reuse. It works as a front end "script" on top of the same docker API used by docker
, so you can do everything docker-compose
does with docker
commands and a lot of shell scriptingdocker-machine
, uses containerization to manage multiple images and containers and volumes and such: a container is basically a lightweight virtual machine