IN-Decent

Re-decentralizing internet with free software

Recent posts

Jan 9, 2021
Auto-correct Typos in Git Commands Git by default will suggest corrections for commands with typos as below. git sttas git: 'sttas' is not a git command. See 'git --help'. The most similar command is status It also has a feature to run the suggestion automatically.…
Dec 14, 2020
Use Tmux to Improve Shell Productivity tmux is a terminal multiplexer and can be very useful in when connecting to remote servers with flaky connectivity. Programs keep running even after disconnect and can be re-attached to the existing session and continue working without starting over.…
Dec 14, 2020
Dockerfile Copy and Assign Ownership in a Single Step Using COPY or ADD command to add a file and then changing ownership for the files introduces an extra layer and can take a long time when changing ownership for a lot of files.…
Jul 17, 2020
dbm: A Fast Simple Key Value Store for Python Quick and easy way to persist key value strings in Python without any dependencies.
Jul 17, 2020
Manage and Sync Dotfiles With Git Using Git to make managing dotfiles a painless affair.