Created
January 23, 2026 17:26
-
-
Save djekl/c39c382cb770e4d7b19f9d0ee41e549b to your computer and use it in GitHub Desktop.
Friday Deploy Jumper, simple little PHP script to print when you use as a git hook and push on a Friday…
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 php | |
| <?php | |
| $jumper = "┓┏┓┏┓┃ | |
| ┛┗┛┗┛┃ \\o/ | |
| ┓┏┓┏┓┃ ∕ Friday | |
| ┛┗┛┗┛┃ノ) | |
| ┓┏┓┏┓┃ deploy, | |
| ┛┗┛┗┛┃ | |
| ┓┏┓┏┓┃ good | |
| ┛┗┛┗┛┃ | |
| ┓┏┓┏┓┃ luck! | |
| ┃┃┃┃┃┃ | |
| ┻┻┻┻┻┻ | |
| "; | |
| if (date('D') == 'Fri') { | |
| print $jumper; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment