Skip to content

Instantly share code, notes, and snippets.

@spencermacca
Created November 28, 2022 02:35
Show Gist options
  • Save spencermacca/d1a2146ec4e2914761197ec97286d009 to your computer and use it in GitHub Desktop.
Save spencermacca/d1a2146ec4e2914761197ec97286d009 to your computer and use it in GitHub Desktop.
GPT-3 made this and I am so proud.
import random
import time
import os
import webbrowser
# List of porn websites
porn_sites = ["https://www.pornhub.com/", "https://www.xvideos.com/", "https://www.xnxx.com/", "https://www.xhamster.com/", "https://www.youporn.com/", "https://www.redtube.com/", "https://www.tube8.com/", "https://www.spankbang.com/", "https://www.youjizz.com/", "https://www.porn.com/", "https://www.tnaflix.com/", "https://www.nudevista.com/", "https://www.porntrex.com/", "https://www.pornhd.com/", "https://www.pornmd.com/", "https://www.porn300.com/", "https://www.pornid.xxx/", "https://www.pornrox.com/", "https://www.pornktube.com/"]
# List of ratings
ratings = ["1/10", "2/10", "3/10", "4/10", "5/10", "6/10", "7/10", "8/10", "9/10", "10/10"]
# List of porn sites and ratings
porn_sites_and_ratings = []
# Loop through the list of porn sites
for site in porn_sites:
# Open the porn site in a new tab
webbrowser.open_new_tab(site)
# Wait for 15 seconds
time.sleep(15)
# Close the tab
os.system("taskkill /im chrome.exe /f")
# Get a random rating
rating = random.choice(ratings)
# Add the site and rating to the list
porn_sites_and_ratings.append(site + " " + rating)
# Print the list of porn sites and ratings
print(porn_sites_and_ratings)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment