Skip to content
View mattroseman's full-sized avatar

Block or report mattroseman

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 5 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

  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):