Skip to content
View alex-polosky's full-sized avatar

Block or report alex-polosky

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 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 Loading

  1. alex-polosky-info alex-polosky-info Public

    For my personal website

    TypeScript

  2. pygic-the-conjuring pygic-the-conjuring Public

    Python

  3. maths-exploration maths-exploration Public

    Trying to find a way to make binary addition work in base (i - 1)

    Python

  4. django-microservice-template django-microservice-template Public template

    A short template that sets up a postgres db and a django backend with tests

    Python

  5. Generating key stores for database Generating key stores for database
    1
    import bcrypt
    2
    from cryptography.hazmat.primitives.asymmetric import padding
    3
    from cryptography.hazmat.primitives.asymmetric import rsa
    4
    from cryptography.hazmat.backends import default_backend
    5
    from cryptography.hazmat.primitives import hashes
  6. What's special about 277777788888899... What's special about 277777788888899? Generator
    1
    def r(n, s=0):
    2
        if n < 10:
    3
            return n, n, s
    4
        s += 1
    5
        j = str(n)