Skip to content
View keller's full-sized avatar

Organizations

@biblegateway
Block or Report

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.

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

  1. async-fns async-fns Public

    Helper functions for async JavaScript

    JavaScript

  2. skinny-php skinny-php Public

    Tiny php framework for APIs that routes requests and returns json

    PHP 6

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

    bibletech.kellerdavis.com

    JavaScript

  4. biblegeo biblegeo Public

    CoffeeScript

  5. docker_web docker_web Public

    Shell

  6. 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)))));