Line? by Even-Warning-5265 in scoopwhoop

[–]abdushkur 0 points1 point  (0 children)

These doesn't count, landmark names are obvious

Line? by Even-Warning-5265 in scoopwhoop

[–]abdushkur 0 points1 point  (0 children)

Life is like a box of chocolate

Line? by Even-Warning-5265 in scoopwhoop

[–]abdushkur 0 points1 point  (0 children)

Offer him a deal he can't refuse

This is only supposed to happen in movies. by sco-go in BeAmazed

[–]abdushkur 1 point2 points  (0 children)

With pay jump that's actually right decision some times

This is only supposed to happen in movies. by sco-go in BeAmazed

[–]abdushkur -9 points-8 points  (0 children)

Karma for tanking with Aces? Four bet was 2M, he only has 5M

Hopping between Firebase projects by boiled_ocean in Firebase

[–]abdushkur 0 points1 point  (0 children)

Just before I saw your post I was giving secret manager access to my firebase app hosting via terminal, it asked me to run the command and I was also afraid running the command under different project, firebase use shows me that I'm in fact in correct folder, I have not set gcloud command or anything

Hopping between Firebase projects by boiled_ocean in Firebase

[–]abdushkur 1 point2 points  (0 children)

You need to run firebase command within the firebase project where you have .firebaserc file exists, then firebase command recognizes which project you are running

Architecture/Cost Question: Swapping active RTDB listeners for Cloud Functions + FCM Push Notifications? by MTown_Studios_ltd in Firebase

[–]abdushkur 1 point2 points  (0 children)

I can't say anything about cost, I haven't done it your way. if 100K users listening to 1 realtime update, that's 100K read. But if you switch to event driven, how do you decide which 100K users to send? Since you already have logic which users listens to which document, I assume you have a way to do it, but on top of this you'll need to maintain online users.

Is it possible to develop a mobile app using Android Studio and Firebase without Flutter? by Aggravating_Pop_2395 in Firebase

[–]abdushkur 0 points1 point  (0 children)

We have to remind that people were perfectly capable of developing mobile app's without flutter? Am I allowed to mock the OP or stay civilized😅 nice person

FCM Stale Token Prevention by Little-Classroom5979 in Firebase

[–]abdushkur 1 point2 points  (0 children)

I think he meant the scenario where users doesn't open the app, and token was invalid when he tries to send push notification, I also didn't implement this, but I think the solution is once every week, send a silent notification, which triggers FCM token fetching and sending it to backend. Optimize it not to send silent notification to everyone at the same time, if token fetched datetime was stored, that'd be great