this post was submitted on 06 Feb 2025
1 points (66.7% liked)

Perchance - Create a Random Text Generator

548 readers
14 users here now

⚄︎ Perchance

This is a Lemmy Community for perchance.org, a platform for sharing and creating random text generators.

Feel free to ask for help, share your generators, and start friendly discussions at your leisure :)

This community is mainly for discussions between those who are building generators. For discussions about using generators, especially the popular AI ones, the community-led Casual Perchance forum is likely a more appropriate venue.

See this post for the Complete Guide to Posting Here on the Community!

Rules

1. Please follow the Lemmy.World instance rules.

2. Be kind and friendly.

  • Please be kind to others on this community (and also in general), and remember that for many people Perchance is their first experience with coding. We have members for whom English is not their first language, so please be take that into account too :)

3. Be thankful to those who try to help you.

  • If you ask a question and someone has made a effort to help you out, please remember to be thankful! Even if they don't manage to help you solve your problem - remember that they're spending time out of their day to try to help a stranger :)

4. Only post about stuff related to perchance.

  • Please only post about perchance related stuff like generators on it, bugs, and the site.

5. Refrain from requesting Prompts for the AI Tools.

  • We would like to ask to refrain from posting here needing help specifically with prompting/achieving certain results with the AI plugins (text-to-image-plugin and ai-text-plugin) e.g. "What is the good prompt for X?", "How to achieve X with Y generator?"
  • See Perchance AI FAQ for FAQ about the AI tools.
  • You can ask for help with prompting at the 'sister' community Casual Perchance, which is for more casual discussions.
  • We will still be helping/answering questions about the plugins as long as it is related to building generators with them.

6. Search through the Community Before Posting.

  • Please Search through the Community Posts here (and on Reddit) before posting to see if what you will post has similar post/already been posted.

founded 2 years ago
MODERATORS
 

If you go here: https://perchance.org/ai-text-to-image-generator, enter a prompt, click on the persona/chat button of an image, click generate persona, possibly edit the result, and then click chat with them, it creates a public link with the character's image and the generated/edited text description. How long does that link persist?

all 8 comments
sorted by: hot top controversial new old
[–] VioneT 1 points 2 days ago* (last edited 2 days ago) (1 children)

Should be indefinitely (no expiry). If you lost the link, and you don't remember it or have it saved, then it is lost forever. If you have the character on the /ai-character-chat, you can regenerate a new link by clicking the link icon there.

[–] thknas 1 points 2 days ago* (last edited 2 days ago) (1 children)

I think this is inconsistent and confusing to the user, because in other situations the data is not saved:

https://rentry.org/perchance-ai-faq#does-it-save-the-data-that-i-put-into-it https://lemmy.world/comment/5709061

In the scenario I describe, the results of the prompt, additional input from the user (assuming they edit the character), and the image are all saved to the server and done so in a public and indefinite manner.

The two main issues I see with this are: One, the user's privacy is not protected, if for example, their browser history is compromised--whoever sees their browser history also sees all their characters and the data therein (yes I know they shouldn't have put personal information in them). Two, there isn't any peer review process for the characters that are created. So an individual could create questionable characters/images and host a page linking to the perchance URLs of these characters. I know the team is fairly confident they can prevent illegal stuff from being created but it seems safer not to risk something like this happening. It seems like it would not help Perchance's reputation.

This is just my opinion. Maybe my concerns aren't a huge deal. But I just don't see a major benefit of keeping them indefinitely that would outweigh even minor risks. Of course, maybe I am missing something big.

[–] VioneT 1 points 2 days ago (1 children)

@[email protected] - I'll ping the dev for other insights. But here's what I think.

In the scenario I describe, the results of the prompt, additional input from the user (assuming they edit the character), and the image are all saved to the server and done so in a public and indefinite manner.

When creating a share link, the data of the character that you want to chat with is saved to the server, so that when going to another generator, that generator can retrieve the same data it needs to be. But only the required data (that is a JSON object compressed in gz) is the thing that is saved on the server. You can check the file that is generated through this URL: https://user-uploads.perchance.org/file/<FileID> and on the character link like https://perchance.org/ai-character-chat?data=King_Spectrara~b28c24b93bf726eb1f850e12ee3f5d99.gz the file id is b28c24b93bf726eb1f850e12ee3f5d99.gz.

One, the user’s privacy is not protected, if for example, their browser history is compromised–whoever sees their browser history also sees all their characters and the data therein (yes I know they shouldn’t have put personal information in them).

Yes, if you navigate to the share link that is created, then that link is stored in the browser's history and if anyone can get your browser history, can access the link. If you really want to be sure that your history isn't accessed through the internet this option https://lemmy.world/comment/14698327 might be used. If you've added any sensitive/personal info on the character, then I think that would be on you. As long as no-one else knows the link or the fileID of the uploaded item, it wouldn't be possible to retrieve the data saved on the server.

Two, there isn’t any peer review process for the characters that are created. So an individual could create questionable characters/images and host a page linking to the perchance URLs of these characters.

Yes, the uploading of the details to the server is automated and almost anyone can create share links to characters.

[–] thknas 1 points 1 day ago (1 children)

Why not just add the character data to local storage when you click "chat with them" on the ai-text-to-image-generator page and then just navigate directly to the ai-character-chat page?

[–] VioneT 1 points 1 day ago (1 children)

Local storage is origin specific, meaning the local storage in /ai-text-to-image-generator is different from /ai-character-chat and there isn't a way to pass data from one local storage to another. There are ways to pass data, but it involves using iframes and post messages.