Xavier Olive research teaching python blog til cli

The monthly digest #07

14 February 2019

Programming

base64 -d <<<TVRoZAAAAAYAAQABAYBNVHJrAAAAQAD/UQOZlmYAwAAAkFV/CJBOfwiQTn8IkFV
/CJBOfwiQTn8IkFV/CJBOfwiQVn8IkE5//y8A | timidity -

Python

@contextmanager
def time_limit(seconds):
    def signal_handler(signum, frame):
        raise Exception
    signal.signal(signal.SIGALRM, signal_handler)
    signal.alarm(seconds)
    try:
        yield
    finally:
        signal.alarm(0)

Machine Learning

Aviation

Random

  • Stop struggling with photos on your smartphone. A basic yet efficient tool.
  • The ASCII art gang hit again with mapscii.
  • Yet another introduction to Fourier Transforms.