View open-owl-imgs.bm.js
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);});})(); |
View gist:31e34e80b33c7fe761f11396c16a2d1e
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", |
View bookmarklet.js
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) => { |
View eedist-hide-bought.js
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'); | |
} | |
}); |
View chestshop.log
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 |
View show-damage-dealt.csgo
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"; |
View NBCSportsGoldSkipAhead.js
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;}); |
View support.sh
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 |
View freeze.css
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; |
View bs4-breakpoint-check.html
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
<div class="alert alert-success d-none d-sm-block d-md-none"> SM </div> | |
<div class="alert alert-success d-none d-md-block d-lg-none"> MD </div> | |
<div class="alert alert-success d-none d-lg-block d-xl-none"> LG </div> | |
<div class="alert alert-success d-none d-xl-block"> XL </div> |
NewerOlder