User Controls

  1. 1
  2. 2
  3. 3
  4. 4
  5. 5
  6. ...
  7. 248
  8. 249
  9. 250
  10. 251

Thanked Posts by Ghost

  1. Ghost Black Hole

    import requests
    from bs4 import BeautifulSoup

    def get_state_profile(state):
    # Dictionary to store the profile data
    state_profile = {}

    # URL of the Census Bureau's QuickFacts page for the specified state
    url = f"https://www.census.gov/quickfacts/{state.lower()}"

    # Sending a GET request to the URL
    response = requests.get(url)

    if response.status_code == 200:
    # Parsing the HTML content of the page
    soup = BeautifulSoup(response.content, 'html.parser')

    # Finding and extracting the population data
    population = soup.find('span', class_='pop-number').text.strip()
    state_profile['Population'] = population

    # Finding and extracting racial/ethnic composition data
    racial_ethnic_div = soup.find('div', class_='qf-race-ethnicity')
    racial_ethnic_data = racial_ethnic_div.find_all('div', class_='qf-race-ethnicity-item')
    for item in racial_ethnic_data:
    category = item.find('span', class_='qf-title').text.strip()
    percentage = item.find('span', class_='qf-value').text.strip()
    state_profile[category] = percentage

    # Finding and extracting percentage of people represented by different age groups
    age_div = soup.find('div', class_='qf-age')
    age_data = age_div.find_all('div', class_='qf-age-item')
    for item in age_data:
    category = item.find('span', class_='qf-title').text.strip()
    percentage = item.find('span', class_='qf-value').text.strip()
    state_profile[category] = percentage

    # Finding and extracting gender breakdown data
    gender_div = soup.find('div', class_='qf-sex')
    gender_data = gender_div.find_all('div', class_='qf-sex-item')
    for item in gender_data:
    category = item.find('span', class_='qf-title').text.strip()
    percentage = item.find('span', class_='qf-value').text.strip()
    state_profile[category] = percentage

    # Finding and extracting marital status data
    marital_div = soup.find('div', class_='qf-marital-status')
    marital_data = marital_div.find_all('div', class_='qf-marital-status-item')
    for item in marital_data:
    category = item.find('span', class_='qf-title').text.strip()
    percentage = item.find('span', class_='qf-value').text.strip()
    state_profile[category] = percentage

    # Finding and extracting percentage of people living in poverty
    poverty_div = soup.find('div', class_='qf-poverty')
    poverty_data = poverty_div.find_all('div', class_='qf-poverty-item')
    for item in poverty_data:
    category = item.find('span', class_='qf-title').text.strip()
    percentage = item.find('span', class_='qf-value').text.strip()
    state_profile[category] = percentage

    return state_profile
    else:
    print("Failed to retrieve data from the Census Bureau's website.")
    return None

    # Example usage:
    state_profile = get_state_profile("ca") # Replace "ca" with the abbreviation of the state you're interested in
    if state_profile:
    print("State Profile:")
    for category, value in state_profile.items():
    print(f"{category}: {value}")
    else:
    print("State profile not available.")
    The following users say it would be alright if the author of this post didn't die in a fire!
  2. Ghost Black Hole
    Originally posted by Junior Jacon Jeese Jurger I hardly recognize anyone on this site anymore its been so long and people changed their names. I got on chat last night and listened to music with G and talked to him for like 4 hours, he was the only one there but hes always been my homie even though we used to get into some arguments when we would drink back in the day. Those beefing days are over though, I pretty much get along with everyone since I quit alcohol. Do you guys talk anywhere besides Watch2Gether and on here?

    People say I use alternative accounts a lot "HURR DURR MUH 1-2 ALT ACCOUNTS!!!" but I have made a point of sticking to my old accounts for a while and I still get the criticism . Funny how that works
    The following users say it would be alright if the author of this post didn't die in a fire!
  3. Ghost Black Hole
    Junior High
    The following users say it would be alright if the author of this post didn't die in a fire!
  4. Ghost Black Hole
    Originally posted by CandyRein Ohh what we makin ❤️



    Originally posted by Instigator I feel like cake.

    https://niggasin.space/thread/87368
    The following users say it would be alright if the author of this post didn't die in a fire!
  5. Ghost Black Hole
    Even if everyone around you is fucking the dog and nobody gives a shit and even the bosses don't care, you should always take pride in the work. When the owners come and are aghast they can and will fire EVERYONE in the room chatting around the water cooler but they will come up and shake the hand of the one guy with the broom in the back actually working

    be that one guy. There is always one in every place and upper management only notices them.
    The following users say it would be alright if the author of this post didn't die in a fire!
  6. Ghost Black Hole
    r/AgePlay and users like "Comfortable-Top-3822" were horrified by OP's comments and all dunked on his ass

    10/10 gg reddit for a bunch of closet nonces that use reddit they can at least identify when something is wrong. You see there is nothing wrong with age play or people that enjoy it. My dad has always dated 20 year old girls and he's a pervert old man and sometimes people joke that he's a creep but never that he's a sicko

    because for 99% of people it's not a problem but for OP specifically because he's an autistic sperg closet nonce that even most MAPs would find him abhorrent. I blame a lack of "rizz" as the kids today would say.

    That's why chomos are supposed to be scary because they can rizz your scared child into taking their clothes off and doing vile shit.

    But when OP tries it he ends up in a full sprint chasing a girl at the top of a hill shouting "WAIT! STOP! Legal age for sexual consent in Poland is 15 years old!!!!!! Pursuant to art. 200 c.c. anyone who has sexual intercourse with a minor under the age of 15, or commits any other sexual act, or coerces him or her submit to or perform such an act, is liable to imprisonment from two to twelve years!!!!!!!" and hoping they get exhausted so he can catch up and tackle them into a bush

    it's a lack of rizz and stamina. If this guy gets running shoes or reads "THE GAME" by neil strauss it's all over
    The following users say it would be alright if the author of this post didn't die in a fire!
  7. Ghost Black Hole
    i've decided to hang up my liebig condenser to make cakes. Instead of buying a meth lab I will be funding a cupcake shop just like 2 broke girls

    idea: jelly tarts

    You can essentially make any combination of jelly tart with cake, graham or tart base and the thickness of the jelly layer and it's aromatics are important for the final product.



    The following users say it would be alright if the author of this post didn't die in a fire!
  8. Ghost Black Hole
    serena williams is a monkey
    The following users say it would be alright if the author of this post didn't die in a fire!
  9. Ghost Black Hole
    tjhis is a big story

    The following users say it would be alright if the author of this post didn't die in a fire!
  10. Ghost Black Hole
    Originally posted by CandyRein Where’s your wedding ring ?

    Mrs..looking for men on a dead forum on a Friday night?

    FR skitzo posting ass coming in here with comments thinking about us like any of us give a shit JUST KILL YOURSELF ALREADY NOBODY CARES APRIL!!! YOUR POSTS HAVEN'T BEEN COHERENT IN YEARS, IT'S OVER. Post your ASS or SHUT THE FUCK UP

    dgd on top I AM PRINCES NOWRTY xD
    The following users say it would be alright if the author of this post didn't die in a fire!
  11. Ghost Black Hole
    The following users say it would be alright if the author of this post didn't die in a fire!
  12. Ghost Black Hole
    The following users say it would be alright if the author of this post didn't die in a fire!
  13. Ghost Black Hole
    Originally posted by Bradley You guys would probably have more attraction to modern teens/young people if you didn't have so many swastikas and racial epithets. Maybe consider allowing in hispanics and blacks? They're a growing population of the United States you'd be better off uniting with.

    Don't listen to this guy, he's a FAGGOT and a race traitor



    I'm gonna message OP on twitter and tell them hey man can you please just post normally we would really like to have an ongoing discussions with you about your viewpoints on race, religion and politics. We appreciate your spam but this is a discussion forum sir
    The following users say it would be alright if the author of this post didn't die in a fire!
  14. Ghost Black Hole
    doing amphetamines off the diaper changing table in the bathroom because i'm pretty sure nobody changed a babies diaper in the middle of a warehouse
    The following users say it would be alright if the author of this post didn't die in a fire!
  15. Ghost Black Hole
    Originally posted by CandyRein Always the best answer by default now bend over while I commence Hary Cary on you

    unless someone buys me dinner, i'm gonna clench
    The following users say it would be alright if the author of this post didn't die in a fire!
  16. Ghost Black Hole
    Originally posted by CandyRein What if they don’t want you at either?

    then rape it is
    The following users say it would be alright if the author of this post didn't die in a fire!
  17. Ghost Black Hole
    Shit like that should be 100% clean room, they shouldn't be selling it, should have always been open source, also they announced it before it was finished and relied on outside support for funding and were easily shut down.

    I have zero sympathy for projects that don't open source and that blow their load and ask for artists, kickstarter, donations, premium features for something that isn't clean room code and does break copyright laws. At that point you are just scamming people. Everyone builds things wrong which is why they all fail.

    Yes game companies are evil but stop asking money so you can make a mario 64 in c++, or don't do it public all over social media and get news articles about your project like a tard
    The following users say it would be alright if the author of this post didn't die in a fire!
  18. Ghost Black Hole
    The following users say it would be alright if the author of this post didn't die in a fire!
  19. Ghost Black Hole
    But any money you bring there would be the only money you have. I suspect it's actually very easy to find employment in a polish brick factory but the pay is probably like below minimum wage US equivalent but probably enough to afford to go the bar every night with your hooligan friends and buy a bag of mephedrone
    The following users say it would be alright if the author of this post didn't die in a fire!
  20. Ghost Black Hole
    fucking cock frothys!!
    The following users say it would be alright if the author of this post didn't die in a fire!
  1. 1
  2. 2
  3. 3
  4. 4
  5. 5
  6. ...
  7. 248
  8. 249
  9. 250
  10. 251
Jump to Top