Skip to content

Instantly share code, notes, and snippets.

View Goorzhel's full-sized avatar

Antonio Gurgel Goorzhel

View GitHub Profile
#!/bin/bash
[[ $EUID -ne 0 ]] && echo "What? Make it yourself." || echo "Okay."
@Goorzhel
Goorzhel / demilich.py
Last active November 11, 2021 18:37
Demilich cipher codec.
#!/usr/bin/env python3
"""
The Finnish death metal band Demilich released an album in 1993 called
"Nespithe". The liner notes, as well as the album title and one song title,
are written in code: start at the end of the phrase, group the letters in
three, and reverse the groups' order.
"""
from sys import argv, stdin