zshrc and password generator

so i added two different password generator functions into my .zshrc. one for regular: function genpasswd() { if [ -z $1 ]; then echo “need a character count” else tr -dc A-Za-z0-9_ < /dev/urandom | head -c ${1} | xargs fi } and one for strong: function genpasswd_strong() { if [ -z $1 ]; then ... Read More

some gentoo lovin’ (screenshots)

nothing in this post of any relevant value other than to show genoo running both spotify and steam. steam: click image to enlarge spotify: click image to enlarge love me some gentoo….

mutt and pgp

this article will cover using mutt with pgp, it is a work in progress. this is gentoo centric and assumes that you are most likely using a google apps enabled domain or gmail address. at time of writing : mail-client/mutt-1.5.21-r12 app-crypt/gnupg-2.0.19-r2 app-crypt/pinentry-0.8.2 first things first, lets install some software: for non-gentoo systems: install mutt, gnupg, … Read More

shell color code script

so i have forgotten over the years how to add color to text in my terminal. so i wrote this script to show me some color combinations. here is what the output looks like: click image to enlarge