Skip to content

Instantly share code, notes, and snippets.

View gugupy's full-sized avatar

Gughanathan M gugupy

View GitHub Profile
@joshbuchea
joshbuchea / semantic-commit-messages.md
Last active November 4, 2025 15:30
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

@jonsuh
jonsuh / .bash_profile
Last active September 15, 2025 14:54
Bash echo in color
# ----------------------------------
# Colors
# ----------------------------------
NOCOLOR='\033[0m'
RED='\033[0;31m'
GREEN='\033[0;32m'
ORANGE='\033[0;33m'
BLUE='\033[0;34m'
PURPLE='\033[0;35m'
CYAN='\033[0;36m'