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 python | |
import sys | |
world = { | |
'mesa': { | |
'name': 'Mesa', | |
'items': [], | |
'description': """People are going crazy. They are turning into | |
zombies. You need to save yourself. Look for Escape Pod.""", | |
'exits': ['toilet', 'kitchen', 'dumpster', 'corridor'], |
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 | |
# Based on Kiailandi (https://github.com/kiailandi) | |
set -e | |
minutes=${1:-25} | |
countdown() { | |
seconds=$1 |