Skip to content
View keller's full-sized avatar

Organizations

@biblegateway

Block or report keller

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. async-fns async-fns Public

    Helper functions for async JavaScript

    JavaScript

  2. piper piper Public

    A tiny functional language built entirely on pipes. Because f(x) is overrated.

    TypeScript

  3. bibletech.kellerdavis.com bibletech.kellerdavis.com Public

    bibletech.kellerdavis.com

    JavaScript

  4. Fizz Buzz in lambda calculus and JS.... Fizz Buzz in lambda calculus and JS. Also version in Racket: https://gist.github.com/keller/8aa87814c120e725f9ed6c223642e981
    1
    const ZERO = f => a => a;
    2
    const ONE = f => a => f(a);
    3
    const TWO = f => a => f(f(a));
    4
    const THREE = f => a => f(f(f(a)));
    5
    const FIVE = f => a => f(f(f(f(f(a)))));