Skip to content

Instantly share code, notes, and snippets.

@ichiban
Created June 11, 2012 09:24
Show Gist options
  • Save ichiban/2909286 to your computer and use it in GitHub Desktop.
Save ichiban/2909286 to your computer and use it in GitHub Desktop.
おおっぴらに言いにくい事でも難読化すればどこにだって書ける。
(defun base64 (&optional b e)
"base64 encode/decode"
(interactive "r")
(shell-command-on-region b e "ruby -rbase64 -e 's = $stdin.gets; print Base64.send(/^[A-Za-z0-9\\+\\/=]+$/ =~ s ? :decode64 : :encode64, s).split($/).join'" nil t))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment