Dark Launch

This is a Dark Launch.

Make a bash alias with parameters or argument; pass args, parameter

Bash aliases do not accept parameters. Thus, we need to change aliases that use parameters into functions.
 
cd() {
builtin cd $1
pwd
}

Now you can call cd(): cd /path/to/some/dir/ and cd will change to the directory and pwd will print name of current/working directory.
Using parameters as required:
 
findpy() {
find . -name '*.py' -exec grep --line-number --with-filename --recursive "$1" {} \; ;
}

 
# handy extract
extract() {
if [ -f $1 ] ; then
case $1 in
*.tar.bz2) tar xvjf $1 ;;
*.tar.gz) tar xvzf $1 ;;
*.bz2) bunzip2 $1 ;;
*.rar) unrar x $1 ;;
*.gz) gunzip $1 ;;
*.tar) tar xvf $1 ;;
*.tbz2) tar xvjf $1 ;;
*.tgz) tar xvzf $1 ;;
*.zip) unzip $1 ;;
*.Z) uncompress $1 ;;
*.7z) 7z x $1 ;;
*) echo "'$1' cannot be extracted via >extract<" ;;
esac
else
echo "'$1' is not a valid file"
fi
}

 
# mkdir, cd into it
mkcd () {
mkdir -p "\$*"
cd "\$*"
}

NOTE: use $@ to pass the full parameter. instead of alias foo="somecommand $1 $2 $3 $4 $5 $6", use alias foo="somecommand $@" without quotes around $@.

Online signature that is legally binding; sign virtually

Signature

[COMPANY] will accept the signature that appears below as legal and binding only if it is that of a principal or designated principal of the payee. Do not sign this form if you are not a principal or designated principal. This form must be signed by a principal or designated principal.

Under penalties of perjury, I declare that (1) the information provided is true and complete; (2) I am not subject to backup withholding; and (3) I am a U.S. person (or U.S. resident alien).

By typing your legal name and email address in the signature line below you are signing this form electronically and thus you are verifying and authenticating the statements in this submission.

Signature* ____________________

Email* ____________________

Date* (mm/dd/yyyy) __________

[SUBMIT BUTTON]

Facebook's Anti-Clickjacking Techniques

Facebook uses a frame breaker to help mitigate clickjacking. They send off analytics in the process.
Javascript
 
<script type="text/javascript">
/* <![CDATA[ */
if (top != self) {
try {
if (parent != top) {
throw 1;
}
} catch (e) {
setTimeout(function() {
var fb_cj_img = new Image();
fb_cj_img.src = "http:\/\/error.facebook.com\/common\/scribe_endpoint.php?c=si_clickjacking&m&t=";
}, 5000);
window.document.write("<style>body * { display:none !important; }<\/style><a href=\"#\" onclick=\"top.location.href=window.location.href\" style=\"display: block !important; padding: 10px\"><i class=\"img spritemap_3e9q9m sx_5eabfc\" style=\"display:block !important\"><\/i>Go to Facebook.com<\/a>");
}
}
/* ]]> */
</script>

They also specify X-Frame-Options in a meta tag. The value deny is to block the content from rendering if it is contained in a frame.
Code
 
<noscript><meta http-equiv="X-Frame-Options" content="deny"/></noscript>