VSCode used to have issues with sorting Python imports (2021), as described further down below, but this has since been fixed.
All you need to do to make VSCode use its builtin isort
on save is this in your settings.json
:
git branch -m master newname | |
git push origin newname | |
# Change "Default Branch" in settings/options in GitHub | |
git push origin :master |
" A good writeup of the .vimrc is here: | |
" http://dougblack.io/words/a-good-vimrc.html | |
syntax on | |
colorscheme badwolf | |
" Tab Handling | |
set tabstop=4 | |
set softtabstop=4 |
(See also installing Distroboxm, which is included in SteamOS 3.5 and newer: https://distrobox.it/ )
(See also installing Nix package manager: https://determinate.systems/posts/nix-on-the-steam-deck )
You can install Homebrew (a package manager for macOS and Linux) without disabling the read-only partition with sudo steamos-readonly disable
.
The package manager can be used alongside Flatpaks. Some software is only available on Flathub, and some software is only available on Homebrew.
To convert an image to ASCII art, use jp2a
. I found that using the Docker image was the most portable way to do this, especially as it doesn't require you to build the binary manually.
docker run -t --rm -v "$(pwd)":/app talinx/jp2a file.ext --color-depth=4 --width=35
docker run
tells docker to run an application.