Skip to content
View bneises's full-sized avatar

Block or report bneises

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. splunk-soar-connectors/proofpoint splunk-soar-connectors/proofpoint Public

    Python 2 4

  2. Email-Similarity Email-Similarity Public

    Forked from Kwaku-code/Email-Similarity

    Jupyter Notebook

  3. phantom_mhike phantom_mhike Public

    Forked from zamastyle/phantom_mhike

    Python

  4. playbookutils playbookutils Public

    Forked from splunk-soar-connectors/playbookutils

    Python

  5. vneises-professional vneises-professional Public

    Tori's professional webpage

    CSS

  6. Complex Password Generator Complex Password Generator
    1
    import string
    2
    import random
    3
    
                  
    4
    def generate_password(length: int = 12, lower_min: int = 2, upper_min: int = 2, numeric_min: int = 2, special_min: int = 2, special_characters: str | None = None) -> str:
    5
        """Generates a random string of characters with complex password requirement options.