Skip to content

Instantly share code, notes, and snippets.

@KrauseFx
Last active March 29, 2022 22:33
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save KrauseFx/d8cb973ea2cab3f4f835 to your computer and use it in GitHub Desktop.
Save KrauseFx/d8cb973ea2cab3f4f835 to your computer and use it in GitHub Desktop.
This gist opens all orta gifs in your browser
# taken from https://gist.github.com/orta/694004c20becead3ce1f
urls = %w[
https://ortastuff.s3.amazonaws.com/gifs/bike.gif
https://ortastuff.s3.amazonaws.com/gifs/bug-hunting.gif
https://ortastuff.s3.amazonaws.com/gifs/cheers-boxing.gif
https://ortastuff.s3.amazonaws.com/gifs/clap-2.gif
https://ortastuff.s3.amazonaws.com/gifs/clap.gif
https://ortastuff.s3.amazonaws.com/gifs/danger.gif
https://ortastuff.s3.amazonaws.com/gifs/delisa-nah.gif
https://ortastuff.s3.amazonaws.com/gifs/delisa-one-thumb.gif
https://ortastuff.s3.amazonaws.com/gifs/delisa-two-thumbs-2.gif
https://ortastuff.s3.amazonaws.com/gifs/delisa-two-thumbs.gif
https://ortastuff.s3.amazonaws.com/gifs/delisa-well-nah.gif
https://ortastuff.s3.amazonaws.com/gifs/delisa-whoah.gif
https://ortastuff.s3.amazonaws.com/gifs/DoubleThumbSurprise.gif
https://ortastuff.s3.amazonaws.com/gifs/fabio-argh-why.gif
https://ortastuff.s3.amazonaws.com/gifs/fabio-look-up.gif
https://ortastuff.s3.amazonaws.com/gifs/fabio-shock-oh.gif
https://ortastuff.s3.amazonaws.com/gifs/fabio-two-thumbs.gif
https://ortastuff.s3.amazonaws.com/gifs/fabio-what.gif
https://ortastuff.s3.amazonaws.com/gifs/fabio-wow-i-love-you.gif
https://ortastuff.s3.amazonaws.com/gifs/gloves-cheer2.gif
https://ortastuff.s3.amazonaws.com/gifs/gloves-together.gif
https://ortastuff.s3.amazonaws.com/gifs/headslap.gif
https://ortastuff.s3.amazonaws.com/gifs/le%20sigh.gif
https://ortastuff.s3.amazonaws.com/gifs/marin-3-thumbs.gif
https://ortastuff.s3.amazonaws.com/gifs/marin-6-thumb.gif
https://ortastuff.s3.amazonaws.com/gifs/marin-look-up.gif
https://ortastuff.s3.amazonaws.com/gifs/marin-nod.gif
https://ortastuff.s3.amazonaws.com/gifs/marin-ok.gif
https://ortastuff.s3.amazonaws.com/gifs/marin-thumbs-up.gif
https://ortastuff.s3.amazonaws.com/gifs/marin-two-thumbs.gif
https://ortastuff.s3.amazonaws.com/gifs/marin-wink.gif
https://ortastuff.s3.amazonaws.com/gifs/no-finger.gif
https://ortastuff.s3.amazonaws.com/gifs/no.gif
https://ortastuff.s3.amazonaws.com/gifs/oh-awww.gif
https://ortastuff.s3.amazonaws.com/gifs/rolleyes-no-shake.gif
https://ortastuff.s3.amazonaws.com/gifs/subtle-nod.gif
https://ortastuff.s3.amazonaws.com/gifs/three-hands.gif
https://ortastuff.s3.amazonaws.com/gifs/thumb3.gif
https://ortastuff.s3.amazonaws.com/gifs/thumbs1.gif
https://ortastuff.s3.amazonaws.com/gifs/unexpected.gif
https://ortastuff.s3.amazonaws.com/gifs/yes-thumb.gif
https://ortastuff.s3.amazonaws.com/gifs/yes-yes.gif
https://ortastuff.s3.amazonaws.com/gifs/you-yeah.gif
]
urls.each { |c| `open '#{c}'` }
@AliSoftware
Copy link

Serious bug: https://ortastuff.s3.amazonaws.com/gifs/le sigh.gif needs the space escaped so it's not split in two in the array 😉

![sigh](https://ortastuff.s3.amazonaws.com/gifs/le sigh.gif)

@KrauseFx
Copy link
Author

Thanks @AliSoftware, fixed now

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment