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
blueprint: | |
name: "Turn Off Zigbee Bulb on Physical Toggle with Delay" | |
description: > | |
This blueprint detects when a Zigbee bulb is physically toggled (power cycled), | |
turns it off automatically, and includes a delay to prevent immediate re-triggering. | |
domain: automation | |
input: | |
zigbee_bulb: | |
name: Zigbee Bulb | |
description: The Zigbee bulb to control |
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 owlItems = document.querySelectorAll('.owl-carousel .owl-item .carousel-item a');owlItems.forEach(item => { const onclickString = item.getAttribute('onclick'); const imageURL = onclickString.match(/window\.open\('(.+?)%27\)/)[1]; window.open(imageURL, %27_blank%27);});})(); |
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
# Classic Rock | |
"The Rolling Stones", | |
"Led Zeppelin", | |
"The Beatles", | |
"Pink Floyd", | |
"Queen", | |
"Aerosmith", | |
"AC/DC", | |
"The Who", | |
"Eagles", |
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 delay = ms => new Promise(resolve => setTimeout(resolve, ms)); | |
const getCSVContent = (rows) => { | |
let csvContent = "Line Number,Item Number,Cert Number,Front Pic,Back Pic\n"; | |
rows.forEach(row => { | |
csvContent += `${row.lineNumber},${row.itemNumber},${row.certNumber},${row.frontImage},${row.backImage}\n`; | |
}); | |
return csvContent; | |
}; | |
const downloadCSV = (csvContent, fileName) => { |
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 orderedTables = document.querySelectorAll('img[src="https://www.eedistribution.com/images/sitewide/check_mark.jfif"]'); | |
orderedTables.forEach(img => { | |
const table = img.closest('table[width="96%"]'); | |
if (table) { | |
table.style.opacity = '0.3'; | |
table.addEventListener('mouseover', () => table.style.opacity = '1'); | |
table.addEventListener('mouseout', () => table.style.opacity = '0.3'); | |
} | |
}); |
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
[init] Running as uid=1000 gid=1000 with /data as 'drwxrwxrwx 1 1000 1000 382 Mar 1 10:07 /data' | |
[init] Resolved version given LATEST into 1.16.5 | |
[init] Resolving type given PAPER | |
[init] Removing old PaperMC versions ... | |
[init] Downloading PaperMC 1.16.5 (build 505) ... | |
[init] server.properties already created, skipping | |
[init] Checking for JSON files. | |
[init] Setting initial memory to 2G and max to 2G | |
[init] Using Aikar's flags |
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
developer "1"; | |
con_filter_text "Damage given to"; | |
con_filter_enable "2"; | |
developer "1";con_filter_text "Damage given to";con_filter_enable "2"; |
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
/*Add 15 second skip ahead button to NBC Sports Gold streaming and SloMo Toggle! Paste into console*/ | |
$('app-play-pause-button').after('<button id="skipAhead" style="margin: 0; height: 2em; vertical-align: middle; padding-bottom: 34px; background-color: rgba(0,0,0,0); color: white; border: none;">+15s</button>'); | |
$('#skipAhead').click(function(){var vid = $.find('video'); vid[0].currentTime = vid[0].currentTime + 15;}); | |
$('#skipAhead').after('<button id="sloMo" style="margin: 0; height: 2em; vertical-align: middle; padding-bottom: 34px; background-color: rgba(0,0,0,0); color: white; border: none;">SloMo</button>'); | |
$('#sloMo').click(function(){var vid = $.find('video'); var speed = vid[0].playbackRate; if(speed == 1) vid[0].playbackRate = .1; else vid[0].playbackRate = 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
#!/bin/bash | |
echo "TBolt USA Support" | |
echo "" | |
echo "My Local IP Address:" | |
ifconfig | grep -Eo 'inet (addr:)?([0-9]*\.){3}[0-9]*' | grep -Eo '([0-9]*\.){3}[0-9]*' | grep -v '127.0.0.1' | |
#ifconfig | grep -o "inet 192" | |
echo "" | |
echo "" | |
echo "My Public IP Address:" | |
wget -q -O- ip.pale.io |
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
/* Tested in Chrome 72 on 2018 MacBook Pro 15" with i7 and 16GB Ram */ | |
*{ | |
opacity:.97; | |
transition: all 3s; | |
font-family:comic sans ms, comic sans, cursive!important; | |
padding:1em; | |
margin:1em; | |
filter: saturate(80%); | |
display:inline-block!important; |
NewerOlder