Skip to content

Instantly share code, notes, and snippets.

View johnsonsirv's full-sized avatar
💯
Available for Hire

Victor Okeugo johnsonsirv

💯
Available for Hire
View GitHub Profile
@arielweinberger
arielweinberger / strong-password-regex.md
Last active April 30, 2025 09:54
Strong password Regular Expression - NestJS Course
  • Passwords will contain at least 1 upper case letter
  • Passwords will contain at least 1 lower case letter
  • Passwords will contain at least 1 number or special character
  • There is no length validation (min, max) in this regex!

Regular expression for JavaScript:

/((?=.*\d)|(?=.*\W+))(?![.\n])(?=.*[A-Z])(?=.*[a-z]).*$/
@joshbuchea
joshbuchea / semantic-commit-messages.md
Last active July 28, 2025 14:53
Semantic Commit Messages

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example