thread_prefix.19 Swearing is uncool and unattractive

It's fine if you get hurt or angry, but it's fucking quite fucking annoying if you're fucking using it too fucking much in fucking casual fucking conversation. It sounds so stupid
 
run this
i was too lazy to change the nine bfdi thing but it doesn't matter and the explanation for why it's there is both extremely asperger's inducing and boring so just don't question it and leave this running overnight WITH A VPN ON
Python:
import requests, time
import string
string.ascii_letters = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890'
import random
random.choice(string.ascii_letters)
targetlist = ['Meditations', 'Astrology', 'Family', 'Workings', 'Health', 'Sexuality', 'Relationships', 'Yoga', 'Rituals', 'Other', 'The Gods']

y = 1

url1 = 'https://ask-satan.net/submit.php'
payload = {
    'qTitle': 'I\'m Nine from BFDI',
    'qCategory': 'Other',
    'qText': 'Hey hey hey, party people! It\'s me, the coolest number: Nine! You guys are getting styled on HARD right now. Watch me do this epic kickflip!'
    }

headers = {
    "authority": "ask-satan.net",
    "method": "POST",
    "path": "/submit.php",
    "scheme": "https",
    "accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8",
    "accept-language": "en-US,en;q=0.6",
    "content-type": "application/x-www-form-urlencoded",
    "origin": "https://ask-satan.net",
    "referer": "https://ask-satan.net/",
    "sec-ch-ua-platform": '"Windows"',
    "user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36"
}
while True:
    payload = {
        'qTitle': ''.join(random.choice(string.ascii_letters) for x in range(15)),
        'qCategory': ''.join(random.choice(targetlist)),
        'qText': ''.join(random.choice(string.ascii_letters) for x in range(100))
        }
    x = requests.post(url1, data=payload, headers=headers)
    print('[' + str(y) + '] Successfully sent a invalidating question. (Status:' + str(x.status_code) + ')')
    y = y + 1
    time.sleep(.1)
What does this code do? Does it automatically make threads?
 
>Swearing is uncool and unattractive
1732357753547.png
 
Tsmt. It's a signal that person has a weak vocabulary and lexicon, it's very trashy and unsophisticated. I know I swear a lot here so I'm a hypocrite, but I'm not proud of it.
 
Everytime I swear it just sounds corny so I don’t, it only sounds cool if you have a black american accent
 
Back
Top