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
| /* | |
| * Kevin Powell | |
| * https://youtu.be/cCAtD_BAHNw | |
| */ | |
| *, *::before, *::after { | |
| box-sizing: border-box; | |
| } | |
| * { |
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
| # All my gist code is licensed under the terms of the MIT license. | |
| # Video demo: https://www.youtube.com/shorts/ojhaUNYetsU | |
| shopt -s autocd | |
| # silence_autocd | |
| # - Hack to stop autocd from printing the directory after autocd'ing. | |
| # - Unfortunately there is no clean way to do this except messing with | |
| # BASH_XTRACEFD, a poorly understood file descriptor that we are better not |