Skip to content

Instantly share code, notes, and snippets.

@igneus
Created December 3, 2023 16:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save igneus/f93d7c10e2d7714d45e9ca30b10c24aa to your computer and use it in GitHub Desktop.
Save igneus/f93d7c10e2d7714d45e9ca30b10c24aa to your computer and use it in GitHub Desktop.
decode the logo of https://skkysio.army.cz/
# decode the inscription around the SkKySIO logo
# https://commons.wikimedia.org/wiki/File:SkKySIO.svg
code = 'oiooiioooiioiiiioiiooiiioiioiiiioiiiooii'
p code
.tr('oi', '01')
.scan(/.{8}/)
.collect {|i| i.to_i(2).chr }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment