I hereby claim:
- I am thehandsomezebra on github.
- I am handsomezebra (https://keybase.io/handsomezebra) on keybase.
- I have a public key ASDa353NiALicQehtHMAoMl16UZb8VsdBjjTq_6h73zzHAo
To claim this, I am signing this object:
if [[ -z "$1" ]]; then | |
echo "You did not enter a file to unpack." | |
echo "Please try again, running this as 'source unpack_bosh_logs.sh <filename of logs>'" | |
fi | |
todaysdate=`date +'%m-%d-%Y'` | |
mkdir -p "logs-$todaysdate" | |
tar -xzf $1 -C logs-$todaysdate | |
cd logs-$todaysdate |
echo | |
echo "# arguments called with ----> ${@} " | |
echo "# \$1 ----------------------> $1 " | |
echo "# \$2 ----------------------> $2 " | |
echo "# path to me ---------------> ${0} " | |
echo "# parent path --------------> ${0%/*} " | |
echo "# my name ------------------> ${0##*/} " | |
echo |
var x = document.querySelectorAll("a"); | |
var myarray = [] | |
for (var i=0; i<x.length; i++){ | |
var nametext = x[i].textContent; | |
var cleanlink = x[i].href; | |
if (cleanlink.includes('.pdf')) { | |
myarray.push([cleanlink]); | |
} | |
}; | |
function make_table() { |
#!/bin/bash | |
for f in *; do | |
new="${f// /_}" | |
if [ "$new" != "$f" ]; then | |
if [ -e "$new" ]; then | |
echo not renaming "$f" because "$new" already exists | |
else | |
echo moving "$f" to "$new" | |
mv "$f" "$new" |
echo "" >textcontentfile.md | |
echo "" >listcontentfile.md | |
for f in *.json; do | |
echo "processing "$f"" | |
if cat "$f" | grep --silent '.textContent'; then | |
echo "" >>textcontentfile.md | |
#title | |
echo "## "$(cat "$f" | jq '.title') >>textcontentfile.md |
$TestingLocation = "$HOME\test" | |
############## Making the files ################### | |
New-Item -Force -ItemType File -Path $TestingLocation\words.txt | |
"Beep`n123" | Add-Content -Path $TestingLocation\words.txt | |
New-Item -Force -ItemType File -Path $TestingLocation\wordstwo.txt | |
"YEAHBeep`n111" | Add-Content -Path $TestingLocation\wordstwo.txt | |
New-Item -Force -ItemType File -Path $TestingLocation\wordsthree.txt | |
"Boop`n55512" | Add-Content -Path $TestingLocation\wordsthree.txt |
I hereby claim:
To claim this, I am signing this object:
//////////////////////////////////////////////////////////////////////// | |
//Author: Stephanie Frantz // | |
//Primary Email: [email protected] // | |
//Secondary email: [email protected] // | |
// // | |
//PURPOSE: This script is utilized by the DPS team to identify // | |
// change management action required for retrofits // | |
// // | |
//VERSION: 1.0, created 4/27/2020 // | |
//new. // |
{ | |
"meta": { | |
"theme": "macchiato" | |
}, | |
"basics": { | |
"name": "Stephanie Frantz", | |
"label": "Lead DevOps Engineer", | |
"summary": "I'm a passionate dreamer and creator obsessed with finding ways to do things better, faster, and more efficiently. I'm flexible, versatile, and able to maintain a sense of humor under pressure. ", | |
"website": "https://stephaniefrantz.com", | |
"email": "[email protected]", |
A Pen by stephanie frantz on CodePen.