Skip to content

Instantly share code, notes, and snippets.

@djekl
Created January 23, 2026 17:26
Show Gist options
  • Select an option

  • Save djekl/c39c382cb770e4d7b19f9d0ee41e549b to your computer and use it in GitHub Desktop.

Select an option

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…
#!/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