https://realpython.com/intro-to-pyenv/
auhuman
Thursday, January 18, 2024
Thursday, December 14, 2023
xargs
- Run rm cmd recursively in all subdirectories. Navigate to target dir and run below command
- ls | xargs -I % sh -c 'cd %; pwd; rm -rf ; cd ..'
Wednesday, June 29, 2022
TMUX cheat sheet
Description | cmd |
---|---|
Scroll | Enter scroll mode : ctrl+b [ then up/down key to scroll finally q to quit |
New Window | ctrl+b c |
Rename Window | ctrl+b , |
Friday, May 28, 2021
Productivity Tools
- Form History - https://stephanmahieu.github.io/fhc-home/
- Shell Directory Management - https://github.com/mcwoodle/shell-directory-management/blob/master/README.md
- Browser Extensions
- https://addons.mozilla.org/en-US/firefox/addon/screenshot-capture-annotate/?utm_source=addons.mozilla.org&utm_medium=referral&utm_content=search
Monday, May 24, 2021
Wednesday, May 19, 2021
Updating Or committing packages recursively
for dir in ~/projects/git/*; do (cd "$dir" && git pull); done
Tuesday, May 18, 2021
Subscribe to:
Posts (Atom)