This file contains 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
#!/usr/bin/env bash | |
# Ensure you install somewhere on your path. | |
# I prefer creating a symlink to /usr/local/bin/branch_blaster | |
manifestPath="/tmp/branches-in-master.txt" | |
branchBlasterLog="/tmp/branch-blaster.log" | |
initLog() { | |
touch "${branchBlasterLog}" |
This file contains 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
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>CryDash - v0.0.1</title> | |
<meta name="description" content="CryDash v0.0.1"> | |
</head> |
This file contains 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
{ | |
"firstName": "Donald", | |
"lastName": "Trump", | |
"Age": "71", | |
"Sex": "Male", | |
"Employment": { | |
"Current": "President of the United States of America", | |
"Previous": "Owner of The Trump Organization" | |
}, | |
"Children": [ |
This file contains 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
#!/usr/bin/env bash | |
# Check for play command | |
dependency='sox' | |
if ! command -v $dependency > /dev/null; then | |
echo "$dependency is not installed on this system. Please install $dependency" | |
exit | |
fi |
This file contains 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
#!/usr/bin/env bash | |
# Requires terminal capable of 265 color | |
line=$(printf ' %.0s' {1..50}) | |
paintBucket=( '196' '214' '226' '28' '27' '90' ) | |
echo "" | |
for paint in "${paintBucket[@]}"; do | |
swipe=1 |
This file contains 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
#!/usr/bin/env bash | |
sleepSpeed=0.001 | |
line=$(printf ' %.0s' {1..50}) | |
paintBucket=( '196' '214' '226' '28' '27' '90' ) | |
for paint in "${paintBucket[@]}"; do | |
swipe=1 | |
length=1 | |
while [ $swipe -le 2 ]; do |
This file contains 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
javascript: (function () { | |
const log = function (msg) { | |
const d = new Date(); | |
const n = d.toISOString(); | |
console.log(`${n} - ${msg}`); | |
}; | |
const clickMenu = function() { | |
document |
This file contains 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
javascript: (function() { | |
const getBody = function() { | |
return document.body; | |
}; | |
const createBannerDiv = function() { | |
const bannerDiv = document.createElement('div'); | |
bannerDiv.setAttribute('id', 'sfmc-tooling--banner'); | |
return bannerDiv; |
This file contains 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
#!/usr/bin/env bash | |
#################################################################################### | |
# Chipr Globals | |
#################################################################################### | |
GIT_REMOTE="$(git remote)" | |
#################################################################################### | |
# Chipr Functions |
OlderNewer