Skip to content

Instantly share code, notes, and snippets.

@robmiller
Created December 27, 2024 22:06
Show Gist options
  • Save robmiller/0e45649390ebb91070345b9cd2cc304f to your computer and use it in GitHub Desktop.
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
#!/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