From: pesar_guy
Sent: Jan-06-14 05:26 PM
Can you send it to 21500 Burbank Blvd Apt 206 Woodland hills CA 91367 thanks
From: joshenders
From: pesar_guy
Sent: Jan-06-14 05:26 PM
Can you send it to 21500 Burbank Blvd Apt 206 Woodland hills CA 91367 thanks
From: joshenders
function offline() { | |
if [[ "$EUID" -ne '0' ]]; then | |
echo "This function requires root privileges" | |
return 1 | |
elif [[ "$#" -ne '1' ]]; then | |
echo "Usage: $FUNCNAME <device node>" | |
return 1 | |
fi | |
# basename |
#!/bin/sh | |
#SCRIPTPATH=$(dirname $(python -c 'import sys,os;print os.path.realpath(sys.argv[1])' $0)) | |
SCRIPT=$(readlink -f $0) | |
SCRIPTPATH=`dirname ${SCRIPT}` | |
export LD_LIBRARY_PATH="${SCRIPTPATH}" | |
export PLEX_MEDIA_SERVER_HOME="${SCRIPTPATH}" | |
export PLEX_MEDIA_SERVER_MAX_PLUGIN_PROCS=6 | |
export LC_ALL="en_US.UTF-8" | |
export LANG="en_US.UTF-8" | |
ulimit -s 3000 |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env python2 | |
# Quick and dirty demonstration of CVE-2014-0160 by Jared Stafford (jspenguin@jspenguin.org) | |
# The author disclaims copyright to this source code. | |
import sys | |
import struct | |
import socket | |
import time | |
import select |
#/bin/bash | |
# Cron every 10 minutes: | |
# 0,10,20,30,40,50 * * * * /usr/local/sbin/ddns-update | |
# | |
# For logging: | |
# $ mkdir /var/log/ddns-update | |
# $ cat << EOF > /etc/logrotate.d/ddns-update | |
# /var/log/ddns-update.log { | |
# rotate 3 |
// This file sets apt configuration variables for /etc/cron.daily/apt | |
// Values here are the default | |
// RootDir for all configuration files | |
// Dir "/"; | |
// Set apt package cache directory | |
// Dir::Cache "var/cache/apt/"; | |
// Set package archive directory |
#!/bin/sh | |
# | |
# Originally found here: http://jenders.vox.com/library/post/macports-workaround-for-installing-distcc-31-on-an-intel-mac.html | |
# | |
makefile=/opt/local/var/macports/sources/rsync.macports.org/release/ports/devel/distcc/work/distcc-3.1/Makefile | |
if test -e $makefile; then # user has a half completed installation | |
break |
function npr() { | |
# Usage: npr | |
# autoplays NPR radio stream | |
local day="$(date '+%A')" | |
local date="$(date '+%m-%d-%Y')" | |
case ${day} in | |
Sunday) | |
local program='10' | |
;; |
#!/bin/bash | |
# by Dennis Williamson | |
# 2010-10-06, revised 2010-11-10 | |
# for http://stackoverflow.com/questions/3869072/test-for-non-zero-length-string-in-bash-n-var-or-var | |
# designed to fit an 80 character terminal | |
dw=5 # description column width | |
w=6 # table column width | |
t () { printf "%-${w}s" "true"; } |