- https://iterm2.com/
- https://ohmyz.sh/
- https://brew.sh/
- fzf, a command-line fuzzy finder, https://github.com/junegunn/fzf
- ripgrep, recursively searches directories for a regex pattern while respecting your gitignore, https://github.com/BurntSushi/ripgrep
- rga, like ripgrep, but also search in PDFs, E-Books, Office documents, zip, tar.gz, etc., https://github.com/phiresky/ripgrep-all
- fd, an alternative to 'find', https://github.com/sharkdp/fd
- exa, a modern replacement for ‘ls’, https://github.com/eza-community/eza
- tldr, aollaborative cheatsheets for console commands, https://github.com/tldr-pages/tldr
- https://www.alfredapp.com/
- https://rectangleapp.com/
- https://freemacsoft.net/appcleaner/
- https://pilotmoon.com/scrollreverser/
- https://github.com/Ji4n1ng/OpenInTerminal
- Screenshot - https://shottr.cc/
- https://apps.apple.com/us/app/amphetamine/id937984704
- https://github.com/jordanbaird/Ice or https://github.com/dwarvesf/hidden
- https://github.com/gao-sun/eul
- https://github.com/MonitorControl/MonitorControl#readme
- Equalizer - https://eqmac.app/
- https://apps.apple.com/us/app/otp-manager/id928941247
- https://hyper.is/
- Calculator - https://numi.app/
- Dropzone 4 - https://aptonic.com/
- Screenshot - https://cleanshot.com/
- Alt Tab - https://alt-tab-macos.netlify.app/
- Raindrop.io - https://raindrop.io/
Command + Control + Shift + 4 to snap, at the same time copy.
Read more here.
defaults write com.apple.Dock appswitcher-all-displays -bool true
killall DockRef: https://superuser.com/a/1625752
sudo spctl –-master-disable # disable
sudo spctl --master-enable # re-enableRef: https://osxdaily.com/2015/05/04/disable-gatekeeper-command-line-mac-osx/
At the directory where your xcworkspace or xcodeproj is, run the following command.
xed .Ref: https://stackoverflow.com/a/52739630/5366727
In IntelliJ, go to Tools > Create Commandline Launcher for one-time setup.
At the directory where your Java project is, run the following command.
idea .Ref: https://stackoverflow.com/a/49819015/5366727
When connected to VPN, k9s might not be able to resolve private host names.
This happens when k9s is installed via Homebrew, where Cgo is disabled by default.
To overcome this, we can compile and install k9s from source using go install.
Ref: derailed/k9s#780
In case Docker Desktop cannot be used (e.g. due to licence limitation), can consider using Colima to replace Docker Daemon, then Docker CLI can still be used.
Sample command to start Colima
colima start --cpu 4 --memory 8 --disk 100
Nice!