Skip to content

Instantly share code, notes, and snippets.

View pwelch's full-sized avatar
:octocat:

Paul Welch pwelch

:octocat:
View GitHub Profile
@pwelch
pwelch / captcha.py
Created September 3, 2021 00:32 — forked from alperensert/captcha.py
How to bypass Google reCaptcha v2 with Python Selenium and Capmonster
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
from webdriver_manager.chrome import ChromeDriverManager
from capmonster_python import NoCaptchaTaskProxyless
options = Options()
browser = webdriver.Chrome(options=options, executable_path=ChromeDriverManager().install())
browser.get("https://www.google.com/recaptcha/api2/demo")
website_key = "6Le-wvkSAAAAAPBMRTvw0Q4Muexq9bi0DJwx_mJ-"
@pwelch
pwelch / 1PasswordAccounts.md
Last active June 10, 2022 18:16
1Password - Remove Old Account Login Options

Overview

1Password stores previous logged in accounts so you can easily sign back in. However, if you leave an organization those logins remain. These instructions allow you to clean up the available accounts on the Account Management screen.

Instructions

As a convenience feature, to make signing into the 1Password apps across multiple Apple devices easier, if you've set up your device with an Apple ID and have iCloud Keychain enabled (https://support.apple.com/en-us/HT204085), then when you sign into a 1Password membership inside one of our apps for Mac or iOS, the app will write some of your sign-in details to your encrypted iCloud storage. Then, if you go to sign into an account on a different Apple device that's set up with the same Apple ID and iCloud Keychain, the 1Password app there will find the account details stored in iCloud, and will present it as a list of found accounts to make signing into them easier.

If you have an account being found in the details stored in iCloud, and you no longe

@pwelch
pwelch / falsehoods-programming-time-list.md
Created February 29, 2024 19:16 — forked from timvisee/falsehoods-programming-time-list.md
Falsehoods programmers believe about time, in a single list

Falsehoods programmers believe about time

This is a compiled list of falsehoods programmers tend to believe about working with time.

Don't re-invent a date time library yourself. If you think you understand everything about time, you're probably doing it wrong.

Falsehoods

  • There are always 24 hours in a day.
  • February is always 28 days long.
  • Any 24-hour period will always begin and end in the same day (or week, or month).