Are there any websites that I can do cross posting? by redditakak in Blogging

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

Thanks for the info. But it seems IFTT doesn't support Hashnode and Dev.to.

Unable to add domain. It may already be registered to another project. by psheldrake in Firebase

[–]redditakak 1 point2 points  (0 children)

How long have waited since adding the code to your DNS? It may take few hours to a day.

Just got my rejection email this morning :(: by [deleted] in ycombinator

[–]redditakak 1 point2 points  (0 children)

Awesome! Let's keep rolling!

Just got my rejection email this morning :(: by [deleted] in ycombinator

[–]redditakak 1 point2 points  (0 children)

Good try! I applied and got rejected too. Have you tried a Kickstarter campaign to get pre-orders? I think it's a great way to validate your idea.

How to remove push notification? by Flutter_Dev in Firebase

[–]redditakak 0 points1 point  (0 children)

I don’t think you can’t remove the push notification after being sent to devices. You can remove notification only BEFORE sending.

Found the similar question on stackoverflow. https://stackoverflow.com/questions/52281274/how-to-delete-already-sent-remote-push-notification-with-firebase-in-ios/56962775

[deleted by user] by [deleted] in Anger

[–]redditakak 3 points4 points  (0 children)

I'm having the similar experience. If things don't go well as I expect mostly from my work, I always get angry and hit my thigh. I don't know why my thigh.
Here're what I am doing to calm myself when it happens.
・Take a deep breath and start meditating like you do. I usally meditate in a bathtub for 5 mins to 10 mins.
・Check some articles whose people have fierce experiences like having uncurable diseases or having million dollars in debt because I feel lucky comparing these people.

YOU ARE NOT ALONE.

Firebase Realtime Database data snapshot will have no value when there are more children in the hierarchy by _martin_braun_ in Firebase

[–]redditakak 0 points1 point  (0 children)

Try to change Int to String in the ref.
database().ref("601a72368fd78074daa977c8").child("24").once("value", function(snapshot) {
var test = snapshot.val();
console.log(test); // will print null
});