is there a way to update an database in firebase, using a button created in react native as a clock in and clock out [closed] - firebase

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 months ago.
Improve this question
I have developed an app for students with the feature clock in and clock out. I have already connected it to firebase, but don't know how to link clock in/out with database. my options are to update firebase or create excel in a separate database.
Watch this demo

Related

connect WordPress to MongoDB database [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 days ago.
Improve this question
Hello is there a way to connect WordPress site to a MongoDB database?
I have searched about this subject but I didn't find a any solution, I have searched if there is a WordPress plugin that do this integration but also no results, I know that word press by default connect to MySQL database where MongoDB is NoSQL. If any one knows that it is possible to do this integration please let me know the way to do that.

Problems with firebase services [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
I can't create and delete project on firebase and add new database firestore , Is there problems with google servers or the problem I have it only ?
firebaser here
A network outage started across many Google services around 11:50 am pacific time. Some services have been recovering since about 12:40 pm. Keep an eye out on the Firebase status page for updates.

Can I retrieve GPS location in App Maker [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
Is there a way to retrieve GPS location from a device in an App Maker app?
I'm trying to create a "checkin" app for my users. I want to retrieve their GPS location (lattitude, longitude) when they submit their "checkin".
Yes, you can, on a Chrome browser, see https://developers.google.com/web/fundamentals/native-hardware/user-location/ for all the details.
if (navigator.geolocation){
navigator.geolocation.getCurrentPosition(function(position){
console.log(position.coords.latitude, position.coords.longitude);
});
}
The user must consent to disclosing their location.

How Firebase realtime database works? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
There is a lot of information about how to use the Firebase realtime database, but I want to know how it works (from behind).
What is the key architecture factor that allows Firebase to store and deliver the data so fast?

What is the usage of Signalr [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
Im wants to make a live chat feature in my web applicatin in asp.net. I found signalr for live chat, but i want to save that text from one browser to How to save text user's message in signalr
SignalR is used to push changes to the client. Saving messages is not a concern for SignalR. You need to roll your own persistence for this, maybe your application have a database already?

Resources