
I don’t think the AI companies care about copyright. But it would be fun if enough people began using something like this and the AI began just randomly spouting out CC licenses.
AuDHD baby-commie. A cat

I don’t think the AI companies care about copyright. But it would be fun if enough people began using something like this and the AI began just randomly spouting out CC licenses.

THERE IS NO WAY OUT OF THIS LUMALO, YOU ARE SURROUNDED. TRANS YOUR GENDER OR WE WILL BE FORCED TO SHOOT YOU.


Stab (🔪) the cis
Stab (💉) the ““cis””


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.


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:

-----

-----
Hexbear has more lgbt people than the liberal lgbt instances and it's not even trying.  
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.
-----
 what is this honeypot
-----
i’m not cishet i am the opposite of that
-----

-----
Yes
I can't do hexbear emojis on my phone
-----

-----
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.
Well I’m going to stop here, I don’t think I should write this kinda stuff on hexbear/lemmygrad.
Hugging and cuddling a cute boy and leashing him and making him go crazy sounds like a great thing.
I can tell if I want to go
or same 
Edit: or maybe I should go 

He uses Asahi Linux
And even then, in his 2022 email where he unveiled his usage of it, he wrote:
Not that I’ve used it for any real work, I literally have only been doing test builds and boots and now the actual release tagging
clearly meaning he still uses (I assume) his 2020 AMD build, unless it has changed in the last 2 years.
Edit: It has changed in the last 2 years!
And I now have a more powerful arm64 machine (thanks to Ampere), so the last week I’ve been doing almost as many arm64 builds as I have x86-64, and that should obviously continue during the upcoming merge window too. The M2 laptop I have has been more of a “test builds weekly” rather than “continuously”.

Is this a joke? Or are you for real.
Yea, I also moved to Hexbear to view everything on local, and the emojies. I don’t really use Lemmygrad anymore.
There might be.
long technical explanation
If you export your settings, edit the file such that “followed_communities” has all communities you want to be subscribed to, then (wait so it doesn’t give you an error, then) import the edited file, it should have you subscribed to all the communities you added.
To get all communities I’d use the api, i.e. https://hexbear.net/api/v3/community/list?type_=Local&limit=50&page=1, then copy the raw text into https://regexr.com/, make the regex
"actor_id":"(.*?)"and use the List tool with"$1",(see screenshot), copy the output into a text file, open the next page on the api and go on like that until the api returns blank.screenshot