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
<div id="scrollBuddy" style="top: 0px;"> | |
<div class="head"></div> | |
<div class="body"></div> | |
<div class="left-arm" style="transform: rotate(90deg);"></div> | |
<div class="left-arm-lower" style="transform: translate(6.12323e-16px, 10px) rotate(92.8284deg);"></div> | |
<div class="right-arm" style="transform: rotate(90deg);"></div> | |
<div class="right-arm-lower" style="transform: translate(6.12323e-16px, 10px) rotate(87.1716deg);"></div> | |
<div class="left-leg-upper" style="transform: rotate(90deg);"></div> | |
<div class="left-leg-lower" style="transform: translate(7.34788e-16px, 12px) rotate(75.8579deg);"></div> | |
<div class="left-foot" style="transform: translate(2.44328px, 21.6969px) rotate(180deg);"></div> |
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/zsh | |
# | |
# @author Bryson Reece <[email protected]> | |
# @license none | |
# | |
CLEAR_ALL="\033[0m" | |
CLEAR_UL="\033[24m" | |
CLEAR_LNE="\033[0K" |
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/zsh | |
# | |
# Completely remove Docker & Docker Desktop from macOS. | |
# @author Bryson Reece <[email protected]> | |
# | |
confirm_reboot () { echo "Reboot? (y/n)" && read x && [[ "$x" == "y" ]] && /sbin/reboot; } | |
echo "Killing processes..." | |
sudo pkill Docker |
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 | |
icloud-backup() { | |
rsync --verbose --progress \ | |
--recursive --whole-file --times \ | |
--exclude=".DS_Store" --exclude=".Trash/" \ | |
--compress --compress-level=3 \ | |
~/Library/Mobile\ Documents/com~apple~CloudDocs/ $@ | |
} |
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 | |
# - Does not work with empty Bitbucket repositories | |
# - Does not work if repo description contains control characters, e.g. '\r' | |
ALL_REPOS=$@ | |
# Check if any arguments were provided | |
if [[ $# -eq 0 ]]; then | |
echo "No repository name(s) provided!" 1>&2 |
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
[ | |
{ | |
"metadata": { | |
"id": "2dd41a16-fc28-4680-a274-a850fa5f1098", | |
"publisherId": "calebporzio.better-phpunit", | |
"publisherDisplayName": "calebporzio" | |
}, | |
"name": "better-phpunit", | |
"publisher": "calebporzio", | |
"version": "1.5.3" |
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
{ | |
"Version": "2012-10-17", | |
"Statement": [{ | |
"Sid": "VisualEditor0", | |
"Effect": "Allow", | |
"Action": [ | |
"s3:GetObject", | |
"s3:PutObject", | |
"s3:ListBucket", | |
"s3:DeleteObject", |
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
// colors from materialui.co/htmlcolors | |
module.exports = { | |
theme: { | |
colors: { | |
'gainsboro': '#dcdcdc', | |
'light-gray': '#d3d3d3', | |
'silver': '#c0c0c0', | |
'dark-gray': '#a9a9a9', | |
'gray': '#808080', |
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
// colors from materialui.co/metrocolors | |
module.exports = { | |
theme: { | |
colors: { | |
'lime': '#a4c400', | |
'green': '#60a917', | |
'emerald': '#008a00', | |
'teal': '#00aba9', | |
'cyan': '#1ba1e2', |
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
// colors from materialui.co/socialcolors | |
module.exports = { | |
theme: { | |
colors: { | |
'facebook': '#3b5999', | |
'messenger': '#0084ff', | |
'twitter': '#55acee', | |
'linkedin': '#0077b5', | |
'skype': '#00aff0', |
NewerOlder