Skip to content
View moo3's full-sized avatar

Block or report moo3

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

Pinned Loading

  1. gameplan gameplan Public

    Simple UI to generate fielding position strategies for a cricket game.

    JavaScript

  2. learn.jquery.com learn.jquery.com Public

    Forked from jquery/learn.jquery.com

    jQuery Learning Center web site content

    JavaScript

  3. stryker-ignorer-console stryker-ignorer-console Public

    Use this ignorer plugin for use with @stryker-mutator to ignore console.* statements

    TypeScript 1

  4. webpack webpack Public

    Forked from webpack/webpack

    A bundler for javascript and friends. Packs many modules into a few bundled assets. Code Splitting allows to load parts for the application on demand. Through "loaders," modules can be CommonJs, AM…

    JavaScript

  5. poly poly Public

    Forked from cujojs/poly

    Small, fast, awesome. The only ES5-ish set of polyfills (shims) you can mix-and-match because they're individual modules.

    JavaScript

  6. Allow CORS with python simple http s... Allow CORS with python simple http server
    1
    import SimpleHTTPServer
    2
    class CORSHTTPRequestHandler(SimpleHTTPServer.SimpleHTTPRequestHandler):
    3
        def send_head(self):
    4
            """Common code for GET and HEAD commands.
    5