Created
December 27, 2024 22:06
-
-
Save robmiller/0e45649390ebb91070345b9cd2cc304f to your computer and use it in GitHub Desktop.
msnify – convert text into an alternate-caps masterpiece befitting of a 2002 MSN status
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env -S ruby -n | |
# | |
# echo "I find it kind of funny, I find it kind of sad, the dreams in which I'm dying are the best I've ever had" | msnify | |
# #=> ~*~i fInD It kInD Of fUnNy, I FiNd iT KiNd oF SaD, tHe dReAmS In wHiCh i'm dYiNg aRe tHe bEsT I'Ve eVeR HaD~*~ | |
puts "~*~" + $_.chars.each_slice(2).map { |s1, s2| [s1.downcase, s2.to_s.upcase] }.join.chomp + "~*~" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment