Skip to content
View alazaro's full-sized avatar

Block or report alazaro

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. game_of_life game_of_life Public

    A PyGame version of Conway's Game of Life

    Python 2

  2. flagified flagified Public

    Forked from flagified/flagified

    JavaScript

  3. shorty shorty Public

    Link shortener made for an interview

    Python

  4. Fish shell function to run python te... Fish shell function to run python tests on Mac. Shows notification when passed/failed. Requires watchdog (https://pypi.python.org/pypi/watchdog)
    1
    function wmd
    2
    	watchmedo shell-command -R -W -w --interval 3 -p '*.py' -c $argv\ '&&
    3
        out=$?
    4
        if [[ $out && 0 -eq $out ]]; then
    5
            osascript -e \'display notification "OK"\';