Report hacker09's Profile

Statistics

All Anime Stats Anime Stats
Days: 189.2
Mean Score: 6.36
  • Total Entries11,671
  • Rewatched78
  • Episodes13,776
Anime History Last Anime Updates
World Witches Hasshin Shimasu!
World Witches Hasshin Shimasu!
Yesterday, 9:29 PM
Watching 2/12 · Scored -
Strike Witches: Road to Berlin
Strike Witches: Road to Berlin
Yesterday, 8:36 PM
Completed 12/12 · Scored 7
Towa no Yuugure
Towa no Yuugure
Jun 27, 6:16 PM
Plan to Watch · Scored -
All Manga Stats Manga Stats
Days: 0.1
Mean Score: 7.00
  • Total Entries2
  • Reread0
  • Chapters1
  • Volumes1
Manga History Last Manga Updates
Naruto
Naruto
Jun 12, 2021 1:31 PM
Dropped -/700 · Scored -
Mario
Mario
Jan 6, 2020 12:05 PM
Dropped 1/1 · Scored 7

All Favorites Favorites

Anime (10)
Character (10)
People (10)

All Comments (1300) Comments

Would you like to post a comment? Please login or sign up first!
Shishio-kun Jun 12, 1:46 PM
I'm honored by your words, honestly! Thanks!

Sure whatever you need, anytime, I'll see what I can do.

ShaggyZE Jun 2, 1:48 PM
also looks like Imagen 3.0 costs 0.03 cents per image which isn't crazy expensive, but it adds up especially if numberOfImages is 4, so best to use gemini-2.0-flash-exp-image-generation by default and check their api key if imagen 3.0 exists then have a checkbox or setting that becomes visible so if they have imagen 3.0 they can click on it to enable it.
that way you can fine tune your prompts for free before using Imagen.


Edit:
actually, just tested it again with a new project and API key and for some reason Imagen shows up on 2nd page still without even needing to add billing or Vertex AI API to that project or API key, but will return with "Imagen API is only accessible to billed users at this time." so doesn't look like we need to check for what api models they have.
ShaggyZE Jun 2, 12:25 PM
ah, okay, I just been clicking REST on the doc pages of the models, so that will be a bit easier, but so far the URL is pretty easy since the only thing that changes is the model name and supportedGenerationMethods
ShaggyZE May 30, 2:03 AM
I figured it out, I was using the wrong responseModalities/Post Parameters for data when I switched from gemini-2.0-flash-exp-image-generation:generateContent to imagen-3.0-generate-002:predict


https://ai.google.dev/gemini-api/docs/image-generation#imagen
ShaggyZE May 30, 1:12 AM
actually I found Imagen 3.0 on the nextPage, guess they limit each page to 50, https://generativelanguage.googleapis.com/v1beta/models?key=YOUR_API_KEY&pageToken=THE_NEXT_PAGE_TOKEN_FROM_PREVIOUS_RESPONSE


but the problem is the only supportedGenerationMethods was "predict" which didn't work, not sure why generateImage or generateImages isn't showing up so maybe still a problem with how I'm configuring it, I tried https://us-central1-aiplatform.googleapis.com/v1/projects/my-google-cloud-project-12345/locations/us-central1/models/imagen-3.0-generate-002:predict with no success either
ShaggyZE May 30, 12:28 AM
tried starting a trial for gemini pro, added billing to my cloud project and api key to Tier 1 and enabled Vertex AI API and it's still not letting me use Imagen 3.0, so seems to be a pain to even access.
ShaggyZE May 29, 11:37 PM
I used https://generativelanguage.googleapis.com/v1beta/models/gemini-2.0-flash-exp-image-generation:generateContent?key= for Imagen 3.0 its https://generativelanguage.googleapis.com/v1beta/models/imagen-3.0-generate-002:generateImages?key= I believe

though I tried to list the Google API models for my apikey https://generativelanguage.googleapis.com/v1beta/models?key= and imagen didn't show up https://shaggyze.website/GoogleAPI_Models.txt and I tried switching to it with mine but it resulted in a 404 because I believe you need to be on a Paid tier of Google API which currently I am not.
traed May 27, 11:50 PM
I kind of meant collective similar to collective unconscious in that sense so i said same thing you did now
traed May 27, 10:59 PM
Well that is why i said collective answers not individual answers. It essentially follows patterns in text of common words and order of them that appear. That is why it also can hallucinate because similar patterns leading to very different answers can make it respond strangely.
traed May 27, 10:51 PM
Well you just ask. All it is doing is taking info from past questions people have asked and spitting back out a collective answer is how I understand it.
traed May 27, 10:43 PM
Well it just takes out some of the manual frankensteining
traed May 27, 8:36 PM
Well not really too different from before with everyone just looking if some code is already made and copy and pasting it. It kept making huge errors like trying to create logs then later id say it has errors what are they then it says that is trying to log when it shouldnt for a bookmarklet, then it later in another round adds it again lol
traed May 27, 7:47 PM
You havent come across that expression? "For the lulz" as in "lulz" being a variation of "lol" as in saying it might be amusing.
traed May 27, 6:53 AM
I wound up getting bored and tried to see what happens if i vibe coded a bookmarklet for the lulz. I basically just kept hounding gpt4 via duck.ai if anything was wrong with the code it showed me by just copy and pasting it after a question as if it is new so it wouldnt be argumentative trying to defend it lol It is supposed to fix broken images. obviously it has issues like there should be no comments in a bookmarklet.

 javascript:(function() {
    var imgs = document.getElementsByTagName('img');
    var failedImages = []; // Array to track failed images
    Array.from(imgs).forEach(function(img) {
        if (img.complete && img.naturalHeight === 0) {
            var attempts = parseInt(img.getAttribute('data-reload-attempts')) || 0;
            if (++attempts <= 3) {
                img.src = img.src.split('?')[0] + '?t=' + Date.now();
                img.setAttribute('data-reload-attempts', attempts);
                
                // Reset attempts on successful load
                img.onload = function() {
                    img.removeAttribute('data-reload-attempts');
                };
            } else {
                // Track failed images
                failedImages.push(img.src);
            }
        }
    });

    // Provide feedback to the user if there are failed images
    if (failedImages.length > 0) {
        alert('Some images failed to load after 3 attempts:\n' + failedImages.join('\n'));
    }
})();
traed May 16, 11:58 PM
Yeah, I didn't realize at first some people did it intentionally.
https://myanimelist.net/forum/?topicid=2178399
It’s time to ditch the text file.
Keep track of your anime easily by creating your own list.
Sign Up Login