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

Highlights

  • Pro

Block or report MateusZitelli

Report abuse

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

Report abuse

Pinned Loading

  1. PromptMate PromptMate Public

    PromptMate is your AI partner to develop code.

    TypeScript 91 2

  2. PAstar PAstar Public

    Python A* algorithm implementation

    Python 63 12

  3. convert360 convert360 Public

    360 degree media toolkit.

    Python 48 5

  4. hookit hookit Public

    WebHooks management and monitoring tool.

    Python 19 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]