${ item.name }
(${ mediaTypeWithStartYear })

Report hacker09's Profile 1u3f41

  • Last Online2 hours ago
  • GenderMale
  • Location127.0.0.1
  • edDec 28, 2019

All (1)Badges 2j5637

20th Anniversary

All (73)Friends 6c5136

Also Available at 4b3419

The Matrix!
greasyfork.org

RSS Feeds 73v4f



If you like my work, please consider ing it!

Cryptos https://cyber-sec0.github.io

https://www.patreon.com/hacker09







Click here to view more detailed information about my Profile

https://anime.jhiday.net/hof//hacker09

Check My whole MAL History logs here My Tampermonkey Scripts For MAL

I'm level on Mal-Badges. Click here to view my Badges.

If you hate reading long texts, just read what's in bold, that's the most important.👍




[siz3e=10000]☠️[/size]

Statistics 2b6l32

Anime Stats 626m17
Days: 188.8
Mean Score: 6.36
  • Total Entries11,636
  • Rewatched78
  • Episodes13,744
Last Anime Updates 2o391z

Access to this list has been restricted by the owner. 295d48

All Manga Stats Manga Stats 11v36
Days: 0.1
Mean Score: 7.00
  • Total Entries2
  • Reread0
  • Chapters1
  • Volumes1
Manga History Last Manga Updates 311r12
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 165t6h

Anime (10) s386z
Character (10) 536u4h
People (10) q7033

All Comments (1300) Comments 1g2i5a

Would you like to post a comment? Please sign up first!
Shishio-kun Yesterday, 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 s 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 edGenerationMethods
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 edGenerationMethods 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  to the  if there are failed images
    if (failedImages.length > 0) {
        alert('Some images failed to load after 3 attempts:\n' + failedImages.('\n'));
    }
})();
traed May 16, 11:58 PM
Yeah, I didn't realize at first some people did it intentionally.
https://myanimelist.sitesdebloques.com/forum/?topicid=2178399
It’s time to ditch the text file.
Keep track of your anime easily by creating your own list.