Skip to content
View Diapolo10's full-sized avatar
๐Ÿ 
Working from home
๐Ÿ 
Working from home
Block or Report

Block or report Diapolo10

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
Diapolo10/README.md

Hi there ๐Ÿ‘‹

  • ๐Ÿ”ญ Iโ€™m currently working on graduating from university
  • ๐ŸŒฑ Iโ€™m currently learning Python and Rust
  • ๐Ÿ‘ฏ Iโ€™m looking to collaborate on anything that isn't a web front-end
  • ๐Ÿค” Iโ€™m looking for help with Rust learning
  • ๐Ÿ’ฌ Ask me about Python help
  • ๐Ÿ“ซ How to reach me: Here or on Twitter (@Diapolo101)
  • ๐Ÿ˜„ Pronouns: he/him/they (though it honestly doesn't matter)
  • โšก Fun fact: Audentem Forsque Venusque iuvat.

Codewars

Lari's GitHub stats

Pinned

  1. iplib3 iplib3 Public

    A pathlib.Path equivalent for IP addresses.

    Python 11 5

  2. python-poetry-template python-poetry-template Public template

    A template Poetry project structure.

    Makefile 19 1

  3. escapyde escapyde Public

    Yet another ANSI escape sequence library for Python - now modernised!

    Python 1 1

  4. python-rust-template python-rust-template Public template

    A template mixed language Python/Rust project structure.

    Makefile 3

  5. python-ms python-ms Public

    A Python equivalent to the JavaScript ms package

    Python 1

  6. Order N Fibonacci sequence generator Order N Fibonacci sequence generator
    1
    from collections import deque
    2
    from typing import Generator
    3
    import warnings
    4
    
                  
    5
    def n_fibonacci(n: int = 2) -> Generator[int, None, None]: