Skip to content
View bisque33's full-sized avatar

Block or report bisque33

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

    nappa is a command tool that converts various formats to vegeta(https://github.com/tsenart/vegeta) input format.

    Go 10

  2. jest-failure-reporter jest-failure-reporter Public

    Custom reporter for jest. Show failed tests and print retry commands, like Rspec.

    JavaScript 2

  3. Introduce Result type for server sid... Introduce Result type for server side TypeScript error handling
    1
    export type Result<T, E> = Success<T> | Failure<E>
    2
    
                  
    3
    export interface IResult<T, E> {
    4
      isSuccess(): boolean
    5
    }