Skip to content
View sblom's full-sized avatar

Highlights

  • Pro

Organizations

@linked-data-dotnet

Block or report sblom

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. RegExtract RegExtract Public

    Clean & simple idiomatic C# RegEx-based line parser that emits strongly typed results.

    C# 697 19

  2. dotnet/performance dotnet/performance Public

    This repo contains benchmarks used for testing the performance of all .NET Runtimes

    F# 768 298

  3. mathematica-lazy mathematica-lazy Public

    An implementation of lazy-list-style streams for Mathematica.

    Objective-C 11 5

  4. linked-data-dotnet/json-ld.net linked-data-dotnet/json-ld.net Public

    A JSON-LD processor for .NET.

    C# 234 49

  5. Toy implementation of Clojure 1.5's ... Toy implementation of Clojure 1.5's reducers library in C# (using LINQPad). https://www.clojure.org/news/2012/05/15/anatomy-of-reducer
    1
    List<int> ns = new List<int> { 1, 2, 3, 4, 5, 6, 7, 8 };
    2
    
                  
    3
    Func<Func<int,int>,Func<Func<int,int,int>,Func<int,int,int>>> mapping = delegate(Func<int,int> f) {
    4
      return (Func<int,int,int> f1) => ((int r, int i) => f1(r,f(i)));
    5
    };