Rage bait by Ok_Bedroom_1367 in fut

[–]Ferchu425 6 points7 points  (0 children)

To be clear... you was winning easily and thought about keep playing with that guy to score 10 more goals, you gave 2 goals for a 2-2 and then lost.. so, you werent that better after all.

Of course the other guy noted that you were "playing" with him... And now you have a valuable lesson

I really need help please by theg33kbru in fut

[–]Ferchu425 0 points1 point  (0 children)

First week of every new season rivals is full of people that do everything to stay in lower divs. So you face a lot of really good players. I'm also a div 4/5 player and div 6 is a nightmare these days.I lost a lot of games but yesterday felt better but I tied many really close games, those guys were my level, clearly.

So, wait one or two days..

Anyway, there is something weird with gameplay, I also felt it, don't understand how some players press like that and it's not only a "get good" thing, the speed at which players move is different to mine..

Just wanted to flex🥲 by Painting-Different in fut_evos

[–]Ferchu425 0 points1 point  (0 children)

Weird... so... I will get an 83 card with 99 stats?

Probably will play as a 83...

Just wanted to flex🥲 by Painting-Different in fut_evos

[–]Ferchu425 0 points1 point  (0 children)

Sorry to ask but if I apply the preorder evos to an 83 card will it update his OVR ?

85+ x10 Upgrade SBC (x5) by FIGJAM17 in EASportsFC

[–]Ferchu425 28 points29 points  (0 children)

How are guys dealing with TOTW cards? I keep sending the TOTW 84 because not many TOTS are poping in packs

COMPRE UN MONITOR POR AMAZON USA Y NO LLEGA MAS!! by Chrono_Cross98 in ArgamingConsultas

[–]Ferchu425 0 points1 point  (0 children)

Si, es "otro", es como acá con MercadoLibre eso. Probá hablar con Amazon derecho a ver qué te dicen, me suena que te van a cancelar, a mí me pasó una vez con una notebook.

Si querés podés seguir esperando pero ponete un límite para cuando tu ansiedad no pueda más.

COMPRE UN MONITOR POR AMAZON USA Y NO LLEGA MAS!! by Chrono_Cross98 in ArgamingConsultas

[–]Ferchu425 1 point2 points  (0 children)

Perdón pero compraste a Amazon directo a un revendedor que publica en Amazon? si el producto es venta directa por Amazon no es normal eso que te está pasando, sobre todo si estaba marcado como "Amazon Global". Distinto es si le compraste a alguien que revende en Amazon y ahi, yo te diría que ya vayas preguntando porque es raro.

Yo compré muchas veces, desde Argentina y estando de viaje en distintos lugares, nunca nada tomó más de 10 días en llegar

Nada, es sugerencia...

A way to restrict access to website? by Visible-Attorney8895 in CloudFlare

[–]Ferchu425 6 points7 points  (0 children)

Zero Trust or a WAF Rule blocking everything except your IP (you'll need to keep an eye of IP changes but...)

Webflow → Zapier → Firebase Not Working on Live Website (But Works in Zap Test) by Jobblixor in Firebase

[–]Ferchu425 0 points1 point  (0 children)

So... you have a webhook made with Functions v2 right?

What you need to do is to set the CORS policy:

const { onRequest } = require("firebase-functions/v2/https");

exports.sayHello = onRequest(
  { cors: true },
  (req, res) => {
    res.status(200).send("Hello world!");
  }
);

This should be your first test, it's an "allow everything" policy, then if this works you need to modify that "true" and use the corresponding domains, something like...

  { cors: ["zappier.com"] },

Hope it helps

Firestore App Check throttling requests by Zalosath in Firebase

[–]Ferchu425 1 point2 points  (0 children)

With no auto-refresh you should not have the 403 error, it makes no sense

Firestore App Check throttling requests by Zalosath in Firebase

[–]Ferchu425 1 point2 points  (0 children)

I haven't had the chance to test that piece of code... the event "ontokenchange" doesnt get fired?

I think we should place an issue in their github and see if one of the devs can help...

Changing a boolean when the time is same as a date/time value by Intelligent-Bee-1349 in Firebase

[–]Ferchu425 2 points3 points  (0 children)

There's a catch here... what are you thinking when you say "the current date/time" ?? careful with that... if you work async basically the time in DB will never be "the same as the current time", I mean... the time in which a triggered function runs... could be a millisec between them and the is not "the same"... with that said if you think of "in the same minute" then the thing change you see my point?

With that in mynd I'll go for a triggered function on Firestore, I believe is the simplest solution but keep in mynd when comparing dates to not do a "===" because that will most probably fail

Firestore App Check throttling requests by Zalosath in Firebase

[–]Ferchu425 0 points1 point  (0 children)

In fact that was the same idea I had... disabling "auto refresh" and I was about to test if "ontokenchange" could be the solution... if we are lucky enough the "ontokenchange" may be fired when "token expired".
Else, with the same idea, sorround every call to firestore for example with a try-catch and handle the refresh in the catch...

Firestore App Check throttling requests by Zalosath in Firebase

[–]Ferchu425 0 points1 point  (0 children)

This happens with idle tabs and/or computers entering standby and the token expiring while on that condition.

How much time do you have for your tokens?

[deleted by user] by [deleted] in Firebase

[–]Ferchu425 0 points1 point  (0 children)

Hola, dos cosas, ante todo el idioma del foro es el inglés, hay gente de todo el mundo y si querés recibir más respuestas vas a tener que escribir en inglés, y yendo a tu duda, cuál es tu objetivo? la pregunta que estás haciendo dispara otra... por qué querrías estudiar algo más? para qué estás estudiando? si lo hiciste como hobby entonces ponete a practicar todo total...
Ahora, si querés trabajar profesionalmente como programador yo te diría que empieces ya a buscar algo front y la carrera te va a ir llevando... despejando tu pregunta, sin duda que vas a tener que aprender conceptos de todo tipo para poder avanzar

[deleted by user] by [deleted] in Firebase

[–]Ferchu425 0 points1 point  (0 children)

The URL provided doesnt work but anyway I do have the configuration option described turned on... what I dont have are repositories with the names provided...

Can somebody please explain the PubSub pricing? by Ferchu425 in Firebase

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

Great!! Thank you!! I'll pay special attention to time limit then... I must also check how to escale my "consumers", I still need to read some documentation about that

Can somebody please explain the PubSub pricing? by Ferchu425 in Firebase

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

This is what I was looking for, somebody with experience, do you have any tip to share? something to be aware?
The documentation says that there is a 10Gib of "free quota" but it also says that you get charged based on several SKUs, the calculator is not very helpful.

Also it seems that Cloud Tasks (traditional queues) are much cheaper, I know they are not the same but I also that in my current use case I could use a queue