- make a push request checking monitor
- copy the push url
- paste the code at the top of the script and place the url in its respective place
- Run your script and save your monitor
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
MTAwODcyMzUxOTkzNDMwNDI5Ng.GsTu-A.HPWTDivpUN3fVWa2ER-6WhQm-Iq3mIEOA4qOi8 |
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
www.yourdomain.com 1 IN CNAME yourgithubuser.github.io. | |
yourdomain.com. 1 IN A 185.199.108.153 | |
yourdomain.com. 1 IN A 185.199.109.153 | |
yourdomain.com. 1 IN A 185.199.110.153 | |
yourdomain.com. 1 IN A 185.199.111.153 |
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
@echo off | |
set /p profilecount=Enter how many profiles you'd like to open: | |
set counter=0 | |
:loop | |
if %counter% equ %profilecount% goto :EOF | |
set /a counter+=1 | |
"C:\Program Files (x86)\Microsoft\Edge\Application\msedge.exe" --profile-directory="Profile %counter%" | |
goto loop |
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
<html> | |
<script> | |
var path = window.location.pathname; | |
window.location.href = "https//www.example.com" + path; | |
</script> | |
</html> |
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
<html> | |
<h1>Example</h1> | |
<p>Demo HTML from: https://git.io/JuA3B </p> | |
<input readonly="true" id="field" placeholder="Press 'Go' to begin."> | |
<button onclick="go()">Go!</button> | |
<p id="endmsg"></p> | |
<script> | |
function go() { | |
document.getElementById("field").value = "Desired text to copy"; |
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
if (window.location.hostname == "throwbin.io") | |
{ | |
window.location.href = "https://api.throwbin.io/v1/paste" + window.location.pathname + "/download"; | |
} else { | |
alert("Please open the broken throwbin.io link before running this bookmarklet."); | |
} |