Created
December 3, 2023 16:45
-
-
Save igneus/f93d7c10e2d7714d45e9ca30b10c24aa to your computer and use it in GitHub Desktop.
decode the logo of https://skkysio.army.cz/
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
# 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