Skip to content
View janderit's full-sized avatar
🙃
🙃

Highlights

  • Pro
Block or Report

Block or report janderit

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. Functional solution to the Bowling Kata Functional solution to the Bowling Kata
    1
    //
    2
    // Functional Bowling Kata solution in F#
    3
    //
    4
    // uses recursive determination of the score starting with a certain frame number
    5
    // and lookahead for the bonus roll scores
  2. Concise F# version of Conway's Game ... Concise F# version of Conway's Game of Life
    1
    (*
    2
        F#  Game of life
    3
    
                  
    4
        Philip Jander 
    5
        @ph_j
  3. C# discriminated union type C# discriminated union type
    1
    // adapted from : http://stackoverflow.com/questions/3151702/discriminated-union-in-c-sharp by Juliet
    2
        public abstract class Union<TA, TB, TC>
    3
        {
    4
            public static Case1 Create(TA x) { return new Case1(x);}
    5
            public static Case2 Create(TB x) { return new Case2(x);}
  4. Very brief cqrs projection proof of ... Very brief cqrs projection proof of concept in node.js
    1
    
                  
    2
     function UserWasCreated(id, name){
    3
         this.Event = arguments.callee.name;
    4
         this.UserId=id;
    5
         this.Name=name;
  5. gundb-shell gundb-shell Public

    A terminal interface for the GunDB distributed graph database

    JavaScript

  6. ZPL ZPL Public

    ZeroMQ Property Language parser for .net

    F# 1