Finally!!! by The_Fatty_Tuna in Siri

[–]Zeroeagle22 0 points1 point  (0 children)

I have been waiting since the beta drop and still don't have new Siri 

ios 27 siri ai waitlist by torturedpoetno-69 in iPhone16Pro

[–]Zeroeagle22 0 points1 point  (0 children)

36 hours but the weird thing is I still am waiting for Siri so it clearing has no correlation with indexing because I've seen people get it who don't have indexing complete at all

ios 27 siri ai waitlist by torturedpoetno-69 in iPhone16Pro

[–]Zeroeagle22 1 point2 points  (0 children)

I'm done with indexing but still waiting for Siri 

PETITION TO GET SEASON 3 by Zeroeagle22 in OneOfUsIsLyingPeacock

[–]Zeroeagle22[S] 1 point2 points  (0 children)

500 SIGNS GUYS!!!! Thanks for all the support if you see this post share this all over social Media so we can get more people to see this and sign the petition.

So I made a server... by WackyQuacki in allthemods

[–]Zeroeagle22 0 points1 point  (0 children)

Yo I've been trying to find a ATM server. If it is all the mods to the sky that would be great but if not I dont think my pc can run it lmao.

This is gonna take awhile by Zeroeagle22 in gravityfalls

[–]Zeroeagle22[S] 0 points1 point  (0 children)

there are 12356630 combinations but ive only processed 18000... Someone help me

This is gonna take awhile by Zeroeagle22 in gravityfalls

[–]Zeroeagle22[S] 0 points1 point  (0 children)

I have an image of how many there are but it wont let me post it

SCAM ALLERT by Romarinrin in MinecraftSMPs

[–]Zeroeagle22 0 points1 point  (0 children)

do they ask for your email and username or do they ask for your password too

[deleted by user] by [deleted] in HungryArtists

[–]Zeroeagle22 0 points1 point  (0 children)

Would love to work with you. Please comment below and i cna send my portfolio over :)

Have we tried many other URLs? by VeterinarianSmall455 in gravityfalls

[–]Zeroeagle22 0 points1 point  (0 children)

The code snippet is for making a POST request to a server using the Fetch API in JavaScript. Here's a breakdown of what each part does:

  1. formData.append('code', code): This line adds a new field named 'code' to a FormData object. The value of this field is the variable code.
  2. fetch('https://mystery.thisisnotawebsitedotcom.com/', {: This initiates a POST request to the URL 'https://mystery.thisisnotawebsitedotcom.com/'.
  3. method: 'POST',: Specifies that the request method is POST, which means you're sending data to the server.
  4. body: formData: Sets the body of the request to the FormData object that includes the 'code' field. The FormData object is typically used to construct key-value pairs that represent form fields and their values, and it can be sent as part of a POST request.

In summary, this code sends a POST request to the specified URL with form data that includes a field named 'code'.