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
| <html> | |
| <head> | |
| <style> | |
| .copyable { | |
| display: inline-block; | |
| padding: 4px; | |
| border-radius: 4px; | |
| border: 1px solid #ccc; | |
| } |
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/bash | |
| # ============================================================================ | |
| # gh wrapper — caches cmux's PR-polling calls to survive GitHub's 5000/hr cap | |
| # ============================================================================ | |
| # | |
| # WHY THIS EXISTS | |
| # --------------- | |
| # The cmux terminal multiplexer (/Applications/cmux.app) has a native Swift | |
| # TabManager poller that continuously runs `gh pr checks` and `gh pr list` | |
| # for every PR and branch in its sidebar — selected workspace every ~5s, |
OlderNewer