Skip to content
View MateusZitelli's full-sized avatar
👨‍💻
hacking
👨‍💻
hacking
  • QA Wolf

Highlights

  • Pro

Block or report MateusZitelli

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.

Content in all repositories owned by your account will be closed.
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. PromptMatePromptMatePublic

    PromptMate is your AI partner to develop code.

    TypeScript 91 2

  2. PAstarPAstarPublic

    Python A* algorithm implementation

    Python 61 11

  3. convert360convert360Public

    360 degree media toolkit.

    Python 49 5

  4. hookithookitPublic

    WebHooks management and monitoring tool.

    Python 19 1

  5. rust-wasm-raytracerrust-wasm-raytracerPublic

    Rust 3 1

  6. Typesafe Genetic Algorithm in PythonTypesafe Genetic Algorithm in Python
    1
    fromtypingimportTuple, Iterable, Callable, TypeVar
    2
    importfunctools
    3
    4
    Solution=TypeVar("Solution")
    5
    Population=Iterable[Solution]