Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content
View lupuszr's full-sized avatar

Organizations

@web3mine

Block or report lupuszr

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. horizon horizon Public

    HorizonPush is a file-sharing and synchronization tool leveraging iroh for peer-to-peer transfers and multi-provider blob streaming. It provides an extensible WebAssembly (Wasm) API, integrates wit…

    Rust 13 1

  2. rido rido Public

    Remote Installation Deployment Operator - A secure webhook-based deployment tool

    TypeScript

  3. fantasy-ts fantasy-ts Public

    An easy to read and beginner friendly fp lib

    TypeScript

  4. Common combinators in JavaScript Common combinators in JavaScript
    1
    const I = x => x;
    2
    const K = x => y => x;
    3
    const A = f => x => f(x);
    4
    const T = x => f => f(x);
    5
    const W = f => x => f(x)(x);
  5. rationale rationale Public

    Forked from jonlaing/rationale

    Collection of Algebraic Data Types and helper functions for ReasonML

    OCaml 3

  6. DataConstructors.ts DataConstructors.ts
    1
    abstract class Season {
    2
      cata<W, Su, Sp, Au>(match: { 
    3
        Winter: () => W,
    4
        Summer: () => Su,
    5
        Autumn: () => Au,