Skip to content
View pixeldrew's full-sized avatar

Block or report pixeldrew

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

    my useful home config files

    Shell 2

  2. pixeldrew.github.io pixeldrew.github.io Public

    HTML 1

  3. Math extensions Math extensions
    1
    // http://www.ideashower.com/our_solutions/leastgreatest-common-mulitple-lcmgcm-in-php-and-javascript/
    2
    
                  
    3
    /* Greatest Common Divisor */
    4
    Math.gcd = function(a, b) {
    5
    	return ( b == 0 ) ? (a):( Math.gcd(b, a % b) );
  4. authentik_traefik authentik_traefik Public

    Forked from brokenscripts/authentik_traefik

    Authentik behind Traefik

  5. oauth2-proxy oauth2-proxy Public

    Forked from oauth2-proxy/oauth2-proxy

    A reverse proxy that provides authentication with Google, Azure, OpenID Connect and many more identity providers.

    Go

  6. react-radio-group react-radio-group Public

    Forked from chenglou/react-radio-group

    Sensible radio groups manipulation for DOM.

    JavaScript