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

Block or report idettman

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
idettman/README.md

Isaac A. Dettman

  • 👋 Hi, I’m @idettman
  • 👀 I’m interested in open source, programatic graphics, functional programming and view focused design patterns.
  • 🌱 I’m currently learning webgl
  • 💞️ I’m looking to collaborate on open source javascript/python/ projects
  • 📫 Reach me at idettman@gmail.com

Pinned

  1. prebid/Prebid.js prebid/Prebid.js Public

    Setup and manage header bidding advertising partners without writing code or confusing line items. Prebid.js is open source and free.

    JavaScript 1.2k 2k

  2. prebid/prebid.github.io prebid/prebid.github.io Public

    Repo that controls Prebid.org website

    HTML 65 1.1k

  3. rubicon-project/Prebid.js rubicon-project/Prebid.js Public

    Forked from prebid/Prebid.js

    Setup and manage header bidding advertising partners without writing code or confusing line items. Prebid.js is open source and free.

    JavaScript 4 8

  4. intellij-scopes intellij-scopes
    1
    # IntelliJ - Scopes usage
    2
    `file -> settings -> general -> scopes`
    3
    
                  
    4
    **expressions**
    5
    
                  
  5. JavaScript: JSDoc Advanced Tips JavaScript: JSDoc Advanced Tips
    1
    /* https://leahayes.wordpress.com/2011/08/28/documenting-javascript-with-jsdoc3/
    2
    3
    Namespaces can still be documented when a more abstract mechanism is used. @lends allows members to be added to an existing namespace:
    4
    */
    5
    /**
  6. ES6 B Combinators: Compose and Pipe ES6 B Combinators: Compose and Pipe
    1
    const compose = (a, b) => c => a(b(c))
    2
    const pipe = (a, b) => c => b(a(c))