Skip to content

Instantly share code, notes, and snippets.

View csrohit's full-sized avatar
🏠
Working from home

Rohit Nimkar csrohit

🏠
Working from home
View GitHub Profile
@parmentf
parmentf / GitCommitEmoji.md
Last active December 10, 2025 12:05
Git Commit message Emoji
@vcarel
vcarel / color.js
Last active July 25, 2024 10:36
mongodb shell colored output
function red (text) { return colorize(text, 'red') }
function green (text) { return colorize(text, 'green') }
function yellow (text) { return colorize(text, 'yellow') }
function blue (text) { return colorize(text, 'blue') }
function magenta (text) { return colorize(text, 'magenta') }
function cyan (text) { return colorize(text, 'cyan') }
function gray (text) { return colorize(text, 'gray') }
function colorize(text, color, style) {
// color: 'red', 'green', 'blue'... (see below)