Skip to content
View effe-megna's full-sized avatar
🎮
🎮
  • Bologna
Block or Report

Block or report effe-megna

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. elm-antd elm-antd Public

    Forked from supermacro/elm-antd

    The official Ant Design UI Kit for Elm

    Elm

  2. Try DataType for typescript, encoded... Try DataType for typescript, encoded as a class for Fluent API usage. (unsafe by spec :trollface:)
    1
    type TryADT <E, A> = 
    2
      | { readonly _tag: "success", readonly success: A }
    3
      | { readonly _tag: "failure", readonly failure: E }  
    4
    
    
    5
    const success = <E, A>(successValue: A): TryADT<E, A> => ({ _tag: "success", success: successValue })
  3. elm-typeclasses-data elm-typeclasses-data Public

    experimental typeclasses and Data encoding in Elm

    Elm

  4. Port of RemoteData to Kotlin Port of RemoteData to Kotlin
    1
    /**
    2
     *
    3
     * Port of [RemoteData](https://github.com/devexperts/remote-data-ts/blob/master/src/remote-data.ts)
    4
     *
    5
     * Represents a value of one of four possible types (a disjoint union)
  5. ReaderTaskRemoteData.ts ReaderTaskRemoteData.ts
    1
    import { Reader } from 'fp-ts/lib/Reader'
    2
    import { Monad3 } from 'fp-ts/lib/Monad'
    3
    import * as RD from "@devexperts/remote-data-ts"
    4
    import * as T from "fp-ts/lib/Task"
    5
    import { monadTaskRemoteData, TaskRemoteData, TRD } from "./TaskRemoteData"