Skip to content
View freejoe76's full-sized avatar

Organizations

@nydailynews

Block or report freejoe76

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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
freejoe76/README.md

Hi, I’m Joe Murphy. This is my GitHub profile’s to-do list.

  • Finish this README.
  • Make it actually interesting.
  • Write a self-deprecating joke.
  • Figure out how to check the checkbox.
  • Link to my portfolio website.

Pinned Loading

  1. blockit blockit Public

    A shell script that blocks certain websites for a certain length of time.

    Shell 2

  2. spring-is spring-is Public

    A small python bot set up to tweet on particular day(s) every 12 months.

    Python 1

  3. nbcnews/data-data-data nbcnews/data-data-data Public

    The data and tools behind the NBC News Data & Graphics team (datateam) projects

    JavaScript 8 3

  4. My python boilerplate My python boilerplate
    1
    These files, as written, are aimed at command-line execution, but because `if __name__ == '__main__':` only fires when run on the command line, it can also be included in another python script if need be.
    2
    
                  
    3
    It uses doctests (which fire when run from the command line with a `-t` / `--test` flag) because I like doctests because they're the simplest way to add tests to your code, and tests in your code are a good way to help remind future-you how current-you imagined you'd be using the code you wrote.
    4
    
                  
    5
    The code you want to execute goes in the main() method.