How to implement a custom search for Hugo usig Gruntjs and Lunrjs.
Install the following tools:
# Set the basic credencials | |
# | |
set imap_user= '[email protected]' | |
set imap_pass= 'password' | |
set hostname = "gmail.com" | |
set realname = "gmailUser" | |
# Set GMAIL specific folders likem sent mail, drafts, All mail | |
set spoolfile = "imaps://imap.gmail.com/INBOX" | |
set folder = "imaps://imap.gmail.com/" |
< foo.in cat \ | |
| cmd1 \ | |
| cmd2 \ | |
| cmd3 \ | |
> foo.out |
#~/.mutt/aliases | |
alias nick Nicholas Levandoski <[email protected]> | |
alias tim Timothy Pitt <[email protected]> | |
alias steven Steven Jackson <[email protected]> | |
alias kaleb Kaleb Hornsby <[email protected]> | |
alias alug-admin nick, tim, steven |
#!/bin/bash | |
# 05/26/2012 jag | |
# COMPONENT_NAME: backup_prep.sh | |
# | |
# ORIGIN: Jeffrey Gipson | |
# | |
# Personal Proprietary | |
# (C) COPYRIGHT 2012 Jeffrey Gipson | |
# Unpublished work - All Rights Reserved | |
# |
#!/bin/awk | |
# usage: yum list | ./fix_yum_list.awk | |
function reform(l) { | |
match(l, /^([^[:space:]]+)[[:space:]]+([^[:space:]]+)[[:space:]]+([^[:space:]].*$)/, f) | |
return f[1] "\t" f[2] "\t" f[3] | |
} | |
/^Installed Packages$/ { disp="installed"; next } | |
/^Available Packages$/ { disp="available"; next } |