Skip to content
View 16BitS3G4l's full-sized avatar
  • Brooklyn, New York

Block or report 16BitS3G4l

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. JServe JServe Public

    Web Server Application Framework built with Java

    Java

  2. Signit.js Signit.js Public

    A minimal - 1.04 KB minimized - Javascript library for signing documents and drawing. Works for touchscreens (including tablets and phones) as well as mouse driven devices, like desktop workstations

    JavaScript

  3. productvibes productvibes Public

    JavaScript

  4. WP-DPG WP-DPG Public

    Generate WooCommerce Products on Demand ~ It's Magic ✨🔮

    PHP

  5. Decode Username Decode Username
    1
    import math 
    2
    
                  
    3
    # note: this can easily be implemented using conditions, but I like leveraging math for it instead 
    4
    
                  
    5
    # map input to 1 (when a = x), other values (a != x) to 0; domain is ASCII table values (0-255)
  6. Bash script to download all of a use... Bash script to download all of a user's repositories (public only, unless password is cached)
    1
    #!/bin/bash
    2
    
                  
    3
    USER="your-username"
    4
    
                  
    5
    curl -s https://api.github.com/users/$USER/repos | grep "https://github.com/[a-zA-Z0-9-]*/[a-zA-Z0-9-]*.git" -o | xargs -n1 git clone