Skip to content
View TheNoobWar's full-sized avatar

Organizations

@TeenGamingNights
Block or Report

Block or report TheNoobWar

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. privacyguides/privacyguides.org privacyguides/privacyguides.org Public

    Protect your data against global mass surveillance programs.

    Markdown 2.6k 201

  2. /r/toolbox - decode base32 and decom... /r/toolbox - decode base32 and decompress zlib
    1
    import zlib
    2
    import base64
    3
    
                  
    4
    with open('input.txt','r') as input: # make a new file called input.txt with the usernotes blob (excluding the quotation marks)
    5
        compressed = input.read()