Skip to content
View KEIII's full-sized avatar
😎
show me the code
😎
show me the code
Block or Report

Block or report KEIII

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. gnome-shell-panel-date-format gnome-shell-panel-date-format Public

    Allows to customize the date format on the panel.

    JavaScript 44 6

  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-stream k-stream Public

    Functional reactive stream library for TypeScript

    TypeScript 10

  4. idea-austere-color-scheme idea-austere-color-scheme Public

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

    3

  5. reactive-form reactive-form Public

    Framework agnostic reactive form for TypeScript

    TypeScript

  6. react-type-safe-router react-type-safe-router Public

    React type safe router

    TypeScript