This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"basics": { | |
"name": "Morgan Andrus", | |
"label": "Social Services Professional", | |
"email": "morgan.andrus@gmail.com", | |
"phone": "916-529-7403", | |
"location": { | |
"address": "2669 Teal Drive", | |
"city": "West Sacramento", | |
"region": "CA", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Week 1 | |
## Day 1 | |
Squat / 5x5 @8 / progress: custom(attempts: 0, increment: 5lb, decreaseWeight: 0) {~ | |
if (completedReps >= reps) { | |
state.attempts += 1 | |
if (state.attempts >= 2) { | |
weights += state.increment | |
state.attempts = 0 | |
state.decreaseWeight = 0 | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for i in `virsh list |awk '{print $2}' |grep instance`; do echo "virsh resume $i" |sudo at now ; done |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
abilene.craigslist.org | |
akroncanton.craigslist.org | |
albany.craigslist.org | |
albuquerque.craigslist.org | |
allentown.craigslist.org | |
altoona.craigslist.org | |
amarillo.craigslist.org | |
ames.craigslist.org | |
annapolis.craigslist.org | |
annarbor.craigslist.org |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CEPH_STATUS=$(ceph health | awk '{print $1}') | |
if [ ${CEPH_STATUS} = HEALTH_ERR ]; then | |
echo ERROR: Ceph cluster status is HEALTH_ERR, waiting for HEALTH_OK or HEALTH_WARN | |
exit 1 | |
fi | |
i=0 | |
CEPH_BACKFILL=$(ceph health | grep backfill | wc -l) | |
until [ ${CEPH_BACKFILL} -lt 1 ]; do |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
CEPH_STATUS=$(ceph -c ~/ceph/ceph.conf -k ~/ceph/ceph.client.admin.keyring health | awk '{print $1}') | |
if [ ${CEPH_STATUS} = HEALTH_ERR ]; then | |
echo ERROR: Ceph cluster status is HEALTH_ERR, waiting for HEALTH_OK or HEALTH_WARN | |
exit 1 | |
fi | |
CEPH_BACKFILL=$(ceph -c ~/ceph/ceph.conf -k ~/ceph/ceph.client.admin.keyring health | grep backfilling | wc -l) | |
until [ ${CEPH_BACKFILL} -lt 1 ]; do |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
### BEGIN INIT INFO | |
# Provides: radosgw-agent | |
# Required-Start: $remote_fs $syslog | |
# Required-Stop: $remote_fs $syslog | |
# Default-Start: 2 3 4 5 | |
# Default-Stop: 0 1 6 | |
# Short-Description: Start daemon at boot time | |
# Description: Enable service provided by daemon. | |
### END INIT INFO |