ccufcc

joined 1 year ago
[–] ccufcc@lemmy.world 1 points 1 day ago* (last edited 1 day ago)

Save to gallery, if a pic is saved, it got a link when clicking the download button (it's misleading). You could copy and paste the link to anywhere, or visit the gallery later with different devices.

 

Private gallery would initial download checking notification when clicking backup, but nothing will be downloaded. Same happens when trying to download saved posts.

[–] ccufcc@lemmy.world 1 points 1 week ago

I suppose you use [ ] or { } incorrectly in your prompt or scratchpad

[–] ccufcc@lemmy.world 2 points 1 week ago

as a gen owner that's pretty careless doing so and deserve being hidden unless manually turned on. I find careless gen uninteresting.

[–] ccufcc@lemmy.world 1 points 1 week ago

The pfp filter went wrong

[–] ccufcc@lemmy.world 1 points 1 week ago

I believe the situation is [bug] service down, new uploaded pfp currently unavailable

[–] ccufcc@lemmy.world 1 points 1 week ago (2 children)

Pfp censor bot could be go extremely strict or being offline.

Pics are probably all denied today

Examples:

3
submitted 1 week ago* (last edited 1 week ago) by ccufcc@lemmy.world to c/perchance@lemmy.world
 

If we open the gallery comment channel in the main comment tab like #image-7f11127feeec215969ad87b32 ;

The comment pop-up of that gallery post will be locked! Until you close the chat channel tab.

 

Have you recently noticed the submit function in the chat acting weird or buggy? It sometimes returns [undefined] when used — not sure if it’s broken or just lagging. Anyone else seeing this?

(the context of chat isn't having anything sus)

[–] ccufcc@lemmy.world 4 points 2 weeks ago

Second this.

 

Some of users suggested a gallery comment notification, which is already possible via desktop notification pushing - but might harder to do anything further I supposed.

Another user suggests comment counter badge superimposed on top of it, which would work like chat unread channel - it seems need a hard work but might be more feasible??

1
submitted 2 weeks ago* (last edited 2 weeks ago) by ccufcc@lemmy.world to c/perchance@lemmy.world
 

It's obvious switching IP leads to ban evading. But some of those troll would not bother changing their names(or they don't care, or they want to brag, or don't even know they are banned).

Anyway, the suggestions is that user name, nickname in chat, and gallery title and description could also be moderated.

 

OMG they are emojis!!!! Arghhhhahhhhh 🔍⭐💬 oh no!!!!!

 

I still don't get it why we need 5 days on chat. The rule brings only hardship and path to bugs. People gonna abuse it? The storage on server is limited? Why we could instant create gen and Perchance account, but not the username?? (And why it needs a trust score?)

 

Ai chat bot outside of AI chat gen.... Under comment plugin such as t2i image gen.... They died. They can't populate text.

3
[bug] unstable pfp (lemmy.world)
submitted 3 weeks ago* (last edited 3 weeks ago) by ccufcc@lemmy.world to c/perchance@lemmy.world
 

recently many users experience unstable pfp which shows a ?

this normally happens when WiFi sucks, but the frequency dramatically increased and being universal to more users...

Is the server being laggy?

 

Across different gens: Several users are experiencing issues with the Perchance public gallery. While they are able to upload images and receive working image links, their content does not appear for other users. Additionally, after refreshing, their own posts may disappear from the gallery. Notably, this issue seems to affect only 18+ (NSFW) images—SFW posts appear to upload and remain visible without problems (though this is still a working hypothesis). Common troubleshooting steps like clearing the browser cache have produced inconsistent results.

1
submitted 1 month ago* (last edited 1 month ago) by ccufcc@lemmy.world to c/perchance@lemmy.world
 

With helps and efforts, finally, In this testing gen everything seems working and fine testing gen

HOWEVER, when trying to implement the searching function with a real live gallery in gen here, the gallery won't update at all!! (please note how the zoom function works smoothly)

because AI points that the iframe there isn't working

  <div style="width: 100%; height: calc(100% - 65px); overflow: hidden;">
    <div id="galleryContentEl" style="width: 100%; height: 100%; transform: scale(1.0); transform-origin: 0 0;">
      [image(settings.galleryOptions)]
    </div>
  </div>

So it recommended change it from that to this in this gen.

  <div style="width: 100%; height: calc(100% - 65px); overflow: hidden;">
  <div id="galleryContentEl">
    <iframe class="text-to-image-plugin-gallery" src="https://perchance.org/friendly-notification-and-concept-board-animation" style="width:100%; height:100%; border:none; transform-origin: top center;"></iframe>
  </div>
  </div>  

Yes, the searching function works!!. But now the zoom control is a mess; even if that's fixable(harder than it seems); the side panel gallery in the lower right blue button isn't loading at all. (the side gallery is here <div id="chatIframe4" style="width: 100%; height: 100%; overflow: auto; zoom: 0.55; border-radius: 0.25rem;" hidden>[image(settings.galleryOptions)]</div>)

Because I use and only only know vibe coding and now I am complete screwed and cannot vibing anymore. It seems somehow basic but I just cannot get it done because I know nothing.

Please, help!!!

3
submitted 1 month ago* (last edited 1 month ago) by ccufcc@lemmy.world to c/perchance@lemmy.world
 

Here's the https://perchance.org/prompt-hunter , a gallery tag searching gen.

    if (formatTagName !== "no filter, currently showing all tags" && dataMatch) {
  
      // Modify the 'bannedPromptPhrases' array
      dataObj.bannedPromptPhrases = [`/^(?!.*(\\b${formatTagName}\\b)).*$/i`];
      localStorage.setItem("lookForThis", formatTagName);

    } else {
      localStorage.removeItem("lookForThis");
    }

    if (formatBadTags !== "no bad words to filter") {
      dataObj.bannedPromptPhrases.push(...formatBadTags);
      let badTagsJoin = formatBadTags.join(', ')
      localStorage.setItem("dontLookForThis", badTagsJoin);
      
    } else {
      localStorage.removeItem("dontLookForThis")
    }

I want to add my own banned list [jail.bannedPromptPhrases] and import jail, added after that as

      if (Array.isArray(jail?.bannedPromptPhrases)) {
        dataObj.bannedPromptPhrases.push(...jail.bannedPromptPhrases);
      }
    }

Now the problem is that's giving unstable results, sometimes it works and sometimes not. I have no idea how or why. In this forked gen https://perchance.org/prompt-hunter#sharedlink=gen%3Aai-furry-generator&galleryname%3Atest3=&tag%3A=&bannedword=: Apple should be banned in PG-13 because it has a PG-13 banned tag "ContentLabel". But sometimes it just won't work!(what's tricky is sometimes it also work) Help!

view more: next ›