Skip to content

Instantly share code, notes, and snippets.

View kjsingh's full-sized avatar
🦇

Batman kjsingh

🦇
  • AWS
  • Vancouver, Canada
View GitHub Profile
@simi
simi / rc-wtf.md
Last active December 25, 2025 23:23
@dacr
dacr / index.md
Last active December 15, 2025 17:29
David's programming examples knowledge base / published by https://github.com/dacr/code-examples-manager #fecafeca-feca-feca-feca-fecafecafeca/e167db24271e30e7734219d0c240c351ac3cd300

David's programming examples knowledge base

akka-pekko

@katta
katta / mvncolor.sh
Created June 15, 2011 18:50
Script to add colors to maven output
#!/usr/bin/env bash
# Formatting constants
export BOLD=`tput bold`
export UNDERLINE_ON=`tput smul`
export UNDERLINE_OFF=`tput rmul`
export TEXT_BLACK=`tput setaf 0`
export TEXT_RED=`tput setaf 1`
export TEXT_GREEN=`tput setaf 2`
export TEXT_YELLOW=`tput setaf 3`