This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # | |
| # WHAT | |
| # | |
| # kubektl - interactive kubectl wrapper, with caching and history | |
| # | |
| # Dixit "Claude Snonnet 4" -- This is a well-designed utility that significantly improves the developer experience | |
| # when working with Kubernetes clusters, especially in environments with many contexts, namespaces, and resources! | |
| # |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env ruby | |
| # frozen_string_literal: true | |
| # | |
| # INSTALLATION | |
| # | |
| # ln -s ${PWD}/git-branch--list--recent.rb $(brew --prefix)/bin/git-branch--list--recent | |
| # sudo ln -s ${PWD}/git-branch--list--recent.rb /usr/local/bin/git-branch--list--recent | |
| # | |
| # CONFIGURATION |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # | |
| # INSTALLATION | |
| # | |
| # ln -s ${PWD}/subst $(brew --prefix)/bin/ | |
| # sudo ln -s ${PWD}/subst /usr/local/bin/ | |
| # | |
| # ALTERNATIVE IMPLEMENTATION | |
| # |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env ruby | |
| # frozen_string_literal: true | |
| # | |
| # INSTALLATION | |
| # | |
| # ln -s ${PWD}/square_fit $(brew --prefix)/bin/ | |
| # sudo ln -s ${PWD}/square_fit /usr/local/bin/ | |
| # | |
| # PREREQUISITES |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env ruby | |
| # frozen_string_literal: true | |
| # | |
| # INSTALLATION (2 aliases) | |
| # | |
| # ln -s ${PWD}/git-branch---stray $(brew --prefix)/bin/git-branch--delete--stray | |
| # sudo ln -s ${PWD}/git-branch---stray /usr/local/bin/git-branch--delete--stray | |
| # | |
| # ln -s ${PWD}/git-branch---stray $(brew --prefix)/bin/git-branch--list--stray |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env ruby | |
| # frozen_string_literal: true | |
| # | |
| # INSTALLATION | |
| # | |
| # ln -s ${PWD}/git-multi $(brew --prefix)/bin/ | |
| # sudo ln -s ${PWD}/git-multi /usr/local/bin/ | |
| # | |
| # DEPENDENCIES |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| # | |
| # INSTALLATION | |
| # | |
| # ln -s ${PWD}/git-recurse $(brew --prefix)/bin/ | |
| # sudo ln -s ${PWD}/git-recurse /usr/local/bin/ | |
| # | |
| # NOTE: works with both GNU and BSD find | |
| # |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # | |
| # INSTALLATION | |
| # | |
| # ln -s ${PWD}/brew-browse $(brew --prefix)/bin/ | |
| # sudo ln -s ${PWD}/brew-browse /usr/local/bin/ | |
| # | |
| # PREREQUISITES | |
| # |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env ruby | |
| # frozen_string_literal: true | |
| REPL_NAME = 'repl' | |
| REPL_VERSION = '1.0.0' | |
| # | |
| # INSTALLATION | |
| # | |
| # ln -s ${PWD}/repl $(brew --prefix)/bin/ |
NewerOlder