Shout out to the cisgender they/thems
traaaaaaannnnnnnnnns
Welcome to /c/traaaaaaannnnnnnnnns, an anti-capitalist meme community for transgender and gender diverse people.
-
Please follow the Hexbear Code of Conduct
-
Selfies are not permitted for the personal safety of users.
-
No personal identifying information may be posted or commented.
-
Stay on topic (trans/gender stuff).
-
Bring a trans friend!
-
Any image post that gets 200 upvotes with "banner" or "rule 6" in the title becomes the new banner.
-
Posts about dysphoria/trauma/transphobia should be NSFW tagged for community health purposes.
-
When made outside of NSFW tagged posts, comments about dysphoria/traumatic/transphobic material should be spoiler tagged.
-
Arguing in favor of transmedicalism is unacceptable. This is an inclusive and intersectional community.
-
While this is mostly a meme community, we allow most trans related posts as we grow the trans community on the fediverse.
If you need your neopronouns added to the list, please contact the site admins.
Remember to report rulebreaking posts, don't assume someone else has already done it!
Matrix Group Chat:
Suggested Matrix Client: Cinny
https://rentry.co/tracha (Includes rules and invite link)
WEBRINGS:
π³οΈββ§οΈ Transmasculine Pride Ring π³οΈββ§οΈ
β¬ οΈ Left π³οΈββ§οΈπ³οΈβπ Be Crime Do Gay Webring π³οΈββ§οΈπ³οΈβπ Right β‘οΈ
amab: assigned mysterious at birth
Thank you π«‘
everyone doing advanced levels of username analysis
I think there being only one cis woman on the site comes down to cis women potentially not wanting to reveal that sort of information because men on the internet would inevitably be strange about it.
That said, there's probably only 5-10 more in hiding (if that, even).
It would be interesting to see other instances demographic surveys - have they ever done any?
I think this is entirely true, if pretty sad. Cisgender women I have been in online gaming communities with nearly always end up harassed at some point.
This is true for trans women too, but for different reasons.
comes down to cis women potentially not wanting to reveal that sort of information
One could create an alt account specifically for answering the survey, but that's maybe a bit botherstinky.
How dare you suggest men on the Internet would not be extremely and incredibly normal
I was going to comment on the "No"'s who went out of their way to choose [any] or [they/them] pronouns, but this would make sense as a reason to choose those.
A lot of people were very very cute and confused and essentially asked me to decide their gender for them. Eggs? Probably.
UwU I just don't know... I'm totally cis but if someone were to tell me otherwise I guess I could go along with it...
Oh no, I hope they don't pick some cute gender for me
A-are they gonna make me change my pronouns on the bear site? That would be so...!
I would have been like this but I was largely away and did not have good answers
It's never too late!
Got so much respect for the trans posters here, the depression I had growing up stemming from a comparatively light amount of alienation and isolation from my peers took an incredible amount of effort to climb out of, so it seems like an almost supernatural feat to me to be openly trans in these times.
No. Cis woman here if youβre still collecting.
Not many trans men
This is the weird reality of the internet. I've met far, far more trans men in real life than trans women but online it's the complete opposite. I have no idea why.
Big ups to trans men for being a lot less terminally online, lol
we stay inside where the handholding is at
I've personally met more trans women IRL than trans men β but regarding your experience, I also feel like trans women are probably more likely to be closeted than trans men.
While I get I can't read gender by just asking "Are you trans?" and "Pronouns?", did we not find a single cis woman on this website?
You see that tiny dark blue sliver, i think thatβs the cis woman pop on the instance
Had this been polled a year or two ago I would have probably answered no. Maybe there are more like me in the maybe-department.
This is an opt-in poll and lots of cis women probably opted not to self-identify, as someone else pointed out
We likely would see different results in an anonymous poll as well as with a poll that included lurkers
I am not cis but even a couple of years ago I would have opted not to self-identify. I imagine this is very common with cis women, too. The only reason I did now was because from my perspective we are beyond any amount of opsec saving me from potential bad actors interested on that front, so I might as well be forthright about it.
Same.
remember when those lemmy nerds were saying we were all faking being a trans inclusive space?
They'll probably pull the "look, there can't be that many, so that proves they're lying" bullshit.
You can't win with liberal transphobes
How do we have so few cis women? Is there even a single one?
yeah, theres probably somewhere around 5-15 (and maybe very optimistically, 40-50 per week) daily active cis women based on the numbers here. def an issue that needs to be fixed, along with finding some transmascs. But this is also a public poll and a good number of people are less likely to answer things publicly, so the actual rates are somewhat skewed
to be frank i wouldnt be surprised if we had almost all the cis women on lemmy here, lol. a lot of the other instances do their damndest to run them off (re: even with alleged anti-misogyny rules, they get harassed a ton). i think we need to find a posting vanguard of cis women and trans mascs that lead the charge like how we've done with transfems. over time, by focusing on pronoun tech and building trans specific areas of the site, the trans pop has skyrocketed. just gotta find good ways to flesh that out for other groups. i recall @Othello@hexbear.net i think suggesting identifier emojis for poc people, and i figure just finding some trans mascs and putting them in charge of some communities will also go a long way to building up the trans masc pop. for cis women, im not so sure how to attract more, maybe we can analyze reddit womens communities and see what theyre interested in talking about and setting up specific spots of hexbear for those interests.
Might just be they're quiet. The internet isn't kind to them. If we weren't so openly accepting of trans people I assume we would have a lot of trans women also being quiet. Being a woman on the internet kind of trains you to not let people know your gender if you don't want to be chased out of a place.
I ran the math and we have 0.82 definitely-cis women in this survey
the funny part is I'm pretty sure my math is right
If you think something is fucked, you can do it yourself, the thread is public. Hope you like pie!
Edit: I updated my code, it is now more strict.
Yes: 160
No: 166
Maybe: 37
Total comments gone through: 434
The last few that aren't categories can be gone through manually. I haven't done that.
new code
import requests, json, re
url = "https://hexbear.net/api/v3/comment/list?post_id=2207213&sort=New&limit=50&page="
headers = {"accept": "application/json"}
yes = 0
nos = 0
maybes = 0
comment_num = 0
for i in range(1, 10):
response = requests.get(url+str(i), headers=headers)
comments = json.loads(response.text)["comments"]
for comment in comments:
if comment["comment"]["removed"] == False and comment["comment"]["deleted"] == False:
comment_num += 1
comment_content = comment["comment"]["content"]
if re.search('^(\n? spoiler )?no(?!\w)', comment_content, re.IGNORECASE):
nos += 1
elif re.search('^(\n?)?yes(?!\w)', comment_content, re.IGNORECASE):
yes += 1
elif re.search('^(\n? spoiler )?maybe(?!\w)', comment_content, re.IGNORECASE):
maybes += 1
else:
print(comment_content)
print("-----")
print(f"{yes}, {nos}, {maybes}, {comment_num}")
:::
old comment
Yes: 150
No: 223
Maybe: 23
Total comments gone through: 436
spoiler code
import requests, json, re
url = "https://hexbear.net/api/v3/comment/list?post_id=2207213&sort=New&limit=50&page="
headers = {"accept": "application/json"}
yes = 0
nos = 0
maybes = 0
comment_num = 0
for i in range(1, 10):
response = requests.get(url+str(i), headers=headers)
comments = json.loads(response.text)["comments"]
for comment in comments:
if comment["comment"]["removed"] == False and comment["comment"]["deleted"] == False:
comment_num += 1
comment_content = comment["comment"]["content"]
if re.search('no', comment_content, re.IGNORECASE):
nos += 1
elif re.search('yes', comment_content, re.IGNORECASE):
yes += 1
elif re.search('maybe', comment_content, re.IGNORECASE):
maybes += 1
print(f"{yes}, {nos}, {maybes}, {comment_num}")
:::
Think this'll work for the current survey?
Yes, or with very little changes.
I modified it a bit for the current survey:
#!/usr/bin/env python3
import requests, json, re
url = "https://hexbear.net/api/v3/comment/list?post_id=2664304&sort=New&limit=50&page="
headers = {"accept": "application/json"}
smile = 0
frown = 0
neutral = 0
malice = 0
comment_num = 0
skipped_num = 0
for i in range(1, 8):
response = requests.get(url+str(i), headers=headers)
comments = json.loads(response.text)["comments"]
for comment in comments:
if comment["comment"]["removed"] == False and comment["comment"]["deleted"] == False:
if comment["comment"]["path"].count('.') == 1:
comment_num += 1
comment_content = comment["comment"]["content"]
if re.search('dean-smile', comment_content, re.IGNORECASE):
smile += 1
elif re.search('dean-frown', comment_content, re.IGNORECASE):
frown += 1
elif re.search('dean-neutral', comment_content, re.IGNORECASE):
neutral += 1
elif re.search('dean-malice', comment_content, re.IGNORECASE):
malice += 1
else:
print(comment_content)
print("-----")
else:
skipped_num += 1
print(f"dean-smile: {smile}")
print(f"dean-frown: {frown}")
print(f"dean-neutral: {neutral}")
print(f"dean-malice: {malice}")
print(f"total comments gone through: {comment_num}")
print(f"total comments skipped: {skipped_num}")
This is the output:
![](https://lemmy.zip/pictrs/image/f99edcee-68a9-4f71-885f-38db167c570e.webp)
-----
![](https://www.hexbear.net/pictrs/image/5ba9dd41-6011-4154-a1ef-4f640004e92c.PNG)
-----
Hexbear has more lgbt people than the liberal lgbt instances and it's not even trying. ![fidel-layup](https://www.hexbear.net/pictrs/image/2695392b-441e-40b3-a2e0-23a9aa020a5f.png "emoji fidel-layup") ![fidel-balling](https://www.hexbear.net/pictrs/image/274afbef-3094-4758-aafd-2f98e534b44e.png "emoji fidel-balling")
The one neat trick: Visible pronouns that aren't buried in a performative section of the profile page where people can ignore that they exist.
-----
![](https://hexbear.net/pictrs/image/3ce8f99a-5348-4521-9007-124181239567.jpeg) what is this honeypot
-----
iβm not cishet i am the opposite of that
-----
![waltuh](https://www.hexbear.net/pictrs/image/70853509-445a-49e9-8325-5ff420dcef0a.png "emoji waltuh")
-----
Yes
I can't do hexbear emojis on my phone
-----
![](https://hexbear.net/pictrs/image/26820bca-a838-4179-a021-0c4f0bfc0774.png)
-----
No
-----
dean-smile: 97
dean-frown: 174
dean-neutral: 23
dean-malice: 5
total comments gone through: 308
total comments skipped: 31
I'm not sure what happened to the comments neither gone through nor skipped (I'm skipping replies)
Thanks, I'll take a look at running it when we're done collecting. I'm probably gonna have to comb over some answers that didn't complete the survey properly
Is there a way to just download the json? I'll probably just edit a text file and load it into your code
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).
Thanks for the help