Skip to content
View mattroseman's full-sized avatar
Block or Report

Block or report mattroseman

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

    website showing locations around the world were films were shot

    JavaScript 4 3

  2. isitcamp isitcamp Public

    Answer some questions to figure out how campy a film is

    JavaScript 1

  3. Radix Tree implementation in JavaScript Radix Tree implementation in JavaScript
    1
    const util = require('util');
    2
    const setImmediatePromise = util.promisify(setImmediate);
    3
    
                  
    4
    class RadixNode {
    5
      constructor(edgeLabel, isWord=false) {
  4. Crypto-Plugin Crypto-Plugin Public

    Plugin for browser to enable encrypted text to be sent over any channel

    Groff 5 1

  5. Twitch-Meme-Scraper Twitch-Meme-Scraper Public

    Find the dankest memes off twitch

    Python 3 1

  6. Example implementations of how Pytho... Example implementations of how Python's super() function works
    1
    class A:
    2
        def foo(self):
    3
            print('A foo method')
    4
    
                  
    5
        def bar(self):