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

Highlights

  • Pro
Block or Report

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.

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

    PromptMate is your AI partner to develop code.

    TypeScript 88 2

  2. PAstar PAstar Public

    Python A* algorithm implementation

    Python 64 13

  3. convert360 convert360 Public

    360 degree media toolkit.

    Python 45 5

  4. hookit hookit Public

    WebHooks management and monitoring tool.

    Python 18 1

  5. rust-wasm-raytracer rust-wasm-raytracer Public

    Rust 3 1

  6. Typesafe Genetic Algorithm in Python Typesafe Genetic Algorithm in Python
    1
    from typing import Tuple, Iterable, Callable, TypeVar
    2
    import functools
    3
    
                  
    4
    Solution = TypeVar("Solution")
    5
    Population = Iterable[Solution]