Skip to content
View Willaiem's full-sized avatar

Block or report Willaiem

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.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. seeya-mcp seeya-mcp Public

    MCP server that allows non-vision agent to analyze images by using vision-capible model. Supports Gemini, Anthropic and Opencode APIs.

    TypeScript 1

  2. fetch-mcp fetch-mcp Public

    Forked from zcaceres/fetch-mcp

    HTTP fetching Model Context Protocol server with support of all HTTP methods, body params and raw HTTP response output on error.

    TypeScript

  3. react-useful-hooks react-useful-hooks Public

    Some custom hooks I made.

    4

  4. recursevely transform object with sn... recursevely transform object with snake_case keys to camelCase ones
    1
    // NO TYPESAFE VERSION: https://gist.github.com/Willaiem/fc7f0157eff2be88513033b4392c8a3f
    2
    
                  
    3
    type RecursiveToCamelCase<S> = S extends `${infer Head}_${infer Tail}${infer Rest}`
    4
      ? RecursiveToCamelCase<`${Head}${Uppercase<Tail>}${Rest}`>
    5
      : S extends `${infer Head}-${infer Tail}${infer Rest}`