Skip to content

Instantly share code, notes, and snippets.

@iamandrewluca
Last active June 18, 2020 16:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iamandrewluca/aca6b893a5a0262e75f5e38a3cca4fb1 to your computer and use it in GitHub Desktop.
Save iamandrewluca/aca6b893a5a0262e75f5e38a3cca4fb1 to your computer and use it in GitHub Desktop.
Random Shrug text emoji #bookmarklet
javascript: void(function() {
/* More bookmarklets at https://gist.github.com/iamandrewluca/61feacf07bc4f2f50e70f986c2e9b2d2 */
const all = [
"¯\\_(ツ)_/¯",
"¯\\(ツ)/¯",
"ʅ(ツ)ʃ",
"乁(ツ)ㄏ",
"乁(ツ)∫",
"ƪ(ツ)∫",
"¯\\_₍ッ₎_/¯",
"乁₍ッ₎ㄏ",
"ʅ₍ッ₎ʃ",
"¯\\_(シ)_/¯",
"¯\\_(ツ゚)_/¯",
"乁(ツ゚)ㄏ",
"¯\\_㋡_/¯",
"┐_㋡_┌",
"┐_(ツ)_┌━☆゚.*・。゚",
];
while(!window.confirm(all[Math.floor(Math.random() * all.length)])) {}
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment