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
#!/bin/bash | |
[[ $EUID -ne 0 ]] && echo "What? Make it yourself." || echo "Okay." |
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
#!/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 |