Took me a bit and I am a little drunk but here are the totals. We had a good showing.

Note: some comments got cut out because the server doesn’t like displaying more than 300 from what I can tell. I did my best with what it would show, I just sorted them by new. This should be fairly representative of the currently active userbase. As an aside, I believe we did a similar survey a looong time ago, and we had only 33% of the active userbase as trans.


Random thoughts:

A lot of people were very very cute and confused and essentially asked me to decide their gender for them. Eggs? Probably. This isn’t Harry Potter and I’m not a hat so I just went with what they were sounding more convinced of.

A lot of people are even cuter and don’t understand how to follow instructions, though some of this is my fault. Made this a little harder to organize.

Some people were not cis and did not identify with the words ‘transgender’ or ‘gender diverse’. If I ever do a trans/adjacent survey again, I think I will ask ‘Are you cis?’

I may do a survey for queer people overall eventually, and the question will be ‘Are you cishet?’

I would love to do more scientific, inclusive polling and have better and more questions and options, but we need some good secure polling tech for that, which we don’t have. So I just have to ask simple questions and get a handful of answers.

Next time I will look into how feasible it is to post a couple of comments and get responders to upvote certain ones. This might fix the issue of the display of comments being limited.

Since some people have two sets of pronouns, both of their pronouns are included separately.

Since the poll was public, some marginalized groups probably shied away from answering. If we ever get a secure way to poll people, we would get more realistic estimates of the trans and cis women userbase.


#Tallies

Yes: 121 
No: 137
Maybe: 37 
Total: 295

If you think something is fucked, you can do it yourself, the thread is public. Hope you like pie! shrug-outta-hecks

  • 🏳️‍⚧️Edward [it/its]
    link
    fedilink
    arrow-up
    2
    ·
    25 days ago

    Just download the JSON from the API? Sure. Something like this:

    #!/usr/bin/env python3
    
    import requests
    
    url = "https://hexbear.net/api/v3/comment/list?post_id=2664304&sort=New&limit=50&page="
    
    headers = {"accept": "application/json"}
    
    for i in range(1, 9):
        response = requests.get(url+str(i), headers=headers)
        with open(f"{i}.json", 'w') as json_file:
            json_file.write(response.text)
    
    

    I also realised what was wrong! range() is inclusive-exclusive, that means for 1 to 8: it should be (1,9).