Skip to content
View rodstrom's full-sized avatar

Block or report rodstrom

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 is supported. This note will only be visible to you.
Report abuse

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

Report abuse

Pinned Loading

  1. yomibubble yomibubble Public

    Yomi's Bubble Adventure

    C 5 2

  2. passhash passhash Public

    CLI password hasher compatible with passwords generated by wijjo/passhash & ginkel/hashit

    HTML 1

  3. GitSavvy GitSavvy Public

    Forked from timbrel/GitSavvy

    Full git and GitHub integration with Sublime Text 3.

    Python 1

  4. Generates page order for printing a ... Generates page order for printing a booklet (printer spread). Adds empty pages if not evenly divisible by 4. Takes the number of pages as an argument.
    1
    import sys
    2
    pages = int(sys.argv[1])
    3
    print(f'A booklet with {pages} pages should be ordered the following way (* means empty page):')
    4
    
                  
    5
    def printer_spread(pages):