Skip to content
View saurabh-glam's full-sized avatar
🏠
Working from home
🏠
Working from home

Block or report saurabh-glam

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. create python3 env; install zxcvbn p... create python3 env; install zxcvbn python library; check password score; prints details
    1
    python3 -m venv .venv && . .venv/bin/activate && pip install zxcvbn && python -c "from pprint import pprint;from zxcvbn import zxcvbn;results = zxcvbn('<my_password>', user_inputs=['<firstname>', '<lastname>', '<email>']);pprint(results)" && deactivate && rm -r .venv