This one was about cishet, while the other one was just about trans. Any cis but not het people are counted as No here, and No on the other one.
Even the cis on hexbear aren't cis.
P.S. Thanks @ComradeEd@lemmygrad.ml for helping make this a bit quicker with your code here.
Sure! If you are going to do more, maybe I should work a bit more on it. I have a few ideas.
It’s definitely a symptom of grass-deficiency
Can't tell, I do so little grass touching.
Hope to one day see some, not trying to put pressure on you though.
Damn, you have so many great comments on ND. Have you thought about making some posts with all this knowledge? I would love to read it.
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).
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)
Yes, or with very little changes.
I use signal with my family. For that, it's quite fine, it doesn't matter if whoever knows I talked to my mum on that day for this long, they already know it's my mum. It gives me some more privacy, they can't tell what I said/wrote, and better group chats.
But I wouldn't use it for revolutionary activity. That is when the metadata privacy matters, who talked to who and when. A quote I heard a lot (by some top US bras, I don't remember) is "we kill based on metadata". For that, Signal is not good enough.
That is what I got out of dessalines essay.
They added usernames. But I think they may still require a phone number to set it up.
If signal had group chats
It does.