Skip to content

Instantly share code, notes, and snippets.

@jas7457
Created January 10, 2023 16:18
Show Gist options
  • Save jas7457/fa4f4624e859bc056c4d0e8b262e56e8 to your computer and use it in GitHub Desktop.
Save jas7457/fa4f4624e859bc056c4d0e8b262e56e8 to your computer and use it in GitHub Desktop.
TextExpander JS code to pick random shipit command
// choose Content Type JavaScript in TextExpander and use the following code to pick a random shipit command
// In a Github comment on your PR, type your TextExpander abbreviation and have it replaced with a random shipit command!
const commands = [
'/shipit',
'/shrimpit',
'/🦐it',
'/🚢it',
'/gucci',
'/legendapproved',
'/oliveit',
'/nonnaapproved',
'/birst',
'/ccccccvlehjnurvtrvtelrkiujtulffvllubchidtugj',
'/ccccccvlehjnevkvuvnjrukkcvkejvvdjnkjdnkhgrdg',
'/ccccccvlehjnribinjvubcjglrcjdrvtkggiiglhejbe',
];
const command = commands[Math.floor(Math.random() * (commands.length - 1))];
command;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment