Skip to content

Instantly share code, notes, and snippets.

View feyroozecode's full-sized avatar
💭
Alhamdoulillah

Ibrahim Ahmad (feyroozecode) feyroozecode

💭
Alhamdoulillah
View GitHub Profile
# UBUNTU VPS LIKE HEALTH CHECKER SHOWING CURRENT SYSTEM USAGE ON CPU, RAM, DISK USAGE, AND PING TIME
#!/bin/bash
# Colors
GREEN='\033[0;32m'
YELLOW='\033[1;33m'
RED='\033[0;31m'
NC='\033[0m' # No Color
@feyroozecode
feyroozecode / dart.password.check
Created June 8, 2022 10:52 — forked from rahulbagal/dart.password.check
Dart : How to check if password contains all required characters
# Dart: Validate Password
This code snippet shows how to validate a password
**Requirement** :
Password should be more than 8 characters long
It should contain
at least one Uppercase ( Capital ) letter
at least one lowercase character
at least digit and
special character.