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
import random, requests; print('\n'.join(random.sample(requests.get('https://www.eff.org/files/2016/07/18/eff_large_wordlist.txt').content.decode().split('\n'), 5))) |
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
curl -s https://www.eff.org/files/2016/07/18/eff_large_wordlist.txt | sort -R | head -n 5 | cut -f2 | paste -sd ' ' |
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
// | |
// ReserveAmerica auto clicker v2 | |
// Wade Brainerd <[email protected]> | |
// | |
// This script repeatedly clicks the Book these Dates button | |
// for a ReserveAmerica campsite, e.g. Bahia Honda. Given a | |
// start time and duration, it will repeatdly click the button | |
// until the button disappears or the duration expires. | |
// | |
// Usage: |
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
-- Usage: osascript refresh.scpt https://www.google.com/ | |
-- Be careful to give the final URL after canonicalization, redirects, etc. | |
on run arg | |
set theUrl to arg's first item | |
tell application "Google Chrome" | |
activate | |
if (count every window) = 0 then |