Skip to content
View jimboreilly's full-sized avatar
👀
Looking at my code?
👀
Looking at my code?

Block or report jimboreilly

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. intro-property-tests intro-property-tests Public

    Intro to property testing using FsCheck

    C# 1

  2. nfl-player-data nfl-player-data Public

    Using D3.js to show average RB1 vs RB2 performance season over season

    JavaScript

  3. web-dice web-dice Public

    a d6 in css that rolls in js

    CSS

  4. r-snippets r-snippets Public

    small scale scripts in R as I learn through school and just plain ol' goofing around

    Jupyter Notebook

  5. fifa18_visuals fifa18_visuals Public

    a dashboard to explore the varying stats/players of EA sports' Fifa 18 with d3.js

    JavaScript 4

  6. Calculate the gamma function for an ... Calculate the gamma function for an int (factorial) or a float (I used the Lanczos approximation)
    1
    var f = [1, 1, 2, 6, 24, 120, 720, 5040, 40320, 362880, 3628800, 39916800, 479001600, 6227020800, 87178291200, 1307674368000, 20922789888000]; //init the answer for fact(0 - 16)
    2
    var i = 16; //keeps track of the last fact generated
    3
    /**
    4
     * factorial with memoization
    5
     *