Skip to content
View denedios's full-sized avatar

Block or report denedios

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 Loading

  1. Angular-QueryBuilder Angular-QueryBuilder Public

    Forked from zebzhao/Angular-QueryBuilder

    A modernized Angular 4+ query builder based on jquery QueryBuilder

    TypeScript

  2. railway railway Public

    Forked from nozzlegear/railway

    Functional helpers including `Async` and `Result` to help enable things like "railway-oriented" programming. Heavily inspired by F#

    TypeScript

  3. vertical-slices vertical-slices Public

    Forked from bgk0018/vertical-slices

    A project demonstrating the Vertical Slice Architecture

    C#

  4. Maybe Monad in C# Maybe Monad in C#
    1
    public static partial class LinqExtensions
    2
    {
    3
        public static Maybe<C> SelectMany<A, B, C>(this Maybe<A> ma, Func<A, Maybe<B>> f, Func<A, B, C> select) => ma.Bind(a => f(a).Map(b => select(a, b)));
    4
    }