Skip to content
View sblom's full-sized avatar

Organizations

@linked-data-dotnet
Block or Report

Block or report sblom

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. 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# 669 256

  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# 223 46

  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
    };