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.

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 Loading

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

    For my personal website

    TypeScript

  2. django-microservice-template django-microservice-template Public template

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

    Python

  3. 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
  4. 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)
  5. mtg-parsing mtg-parsing Public

    An actual attempt to analyze, parse, and simulate MTG cards

    Python 1

  6. maths-exploration maths-exploration Public

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

    Python