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
git branch --merged | grep -v "^\*\\|main" | xargs -n 1 git branch -d |
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
var reCaptcha = document.querySelector('.g-recaptcha'); | |
var sitekey = reCaptcha.dataset.sitekey; | |
var API_KEY = <YOUR_2CAPTCHA_API_KEY>; | |
var byPassUrl = `https://2captcha.com/in.php?key=${API_KEY}&method=userrecaptcha&googlekey=${sitekey}&pageurl=https://www.google.com/recaptcha/api2/demo&json=1`; | |
fetch(byPassUrl).then(res => res.json()).then(res => { | |
// initiate bypass request | |
requestID = res.request; |