Skip to content

Instantly share code, notes, and snippets.

@mattantonelli
Last active July 12, 2017 19:00
Show Gist options
  • Save mattantonelli/c6ada4e12ca6b880e42970bebd865459 to your computer and use it in GitHub Desktop.
Save mattantonelli/c6ada4e12ca6b880e42970bebd865459 to your computer and use it in GitHub Desktop.
Augment your text with a silly Spongebob meme.
s = 'this is a stupid meme'
s.chars.map { |c| rand(2) == 1 ? c.upcase : c.downcase }.join
@mattantonelli
Copy link
Author

=> "tHIs is a Stupid mEmE"

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