View KEIII's full-sized avatar
😎
show me the code
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 support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. gnome-shell-panel-date-formatgnome-shell-panel-date-formatPublic

    Allows to customize the date format on the panel.

    JavaScript 55 8

  2. Rust like Result and Option type for...Rust like Result and Option type for TypeScript
    1
    export type Ok<T> = { _tag: "Ok"; ok: T };
    2
    export type Err<E> = { _tag: "Err"; err: E };
    3
    export type Result<T, E> = Ok<T> | Err<E>;
    4
    const Ok = <T, E>(ok: T): Result<T, E> => ({ _tag: "Ok", ok });
    5
    const Err = <T, E>(err: E): Result<T, E> => ({ _tag: "Err", err });
  3. k-streamk-streamPublic

    Functional reactive stream library for TypeScript

    TypeScript 10

  4. idea-austere-color-schemeidea-austere-color-schemePublic

    Austere almost monochrome color scheme for jetbrains tools like PhpStorm, WebStorm

    3

  5. reactive-formreactive-formPublic

    Framework agnostic reactive form for TypeScript

    TypeScript

  6. react-type-safe-routerreact-type-safe-routerPublic

    React type safe router

    TypeScript