I've created database and tables in mongoDB and inserted some values to check. But when i am putting http://127.0.0.1:5000/user it shows me null. enter image de
I have done some web based projects, but I don't think too much about the load and execution sequence of an ordinary web page. But now I need to know detail. It
I want to make a command that changes a nickname to a specific user (Let it be Example # 1234). This command accepts an argument in which a new nickname must be
First i realize unique_ptr by myself: namespace mcj { template <typename CallbackT> class unique_ptr { public: unique_ptr(CallbackT* ptr = nullptr) : p
How can a keypress be detected only inside a function and not on all code? I have this code: async function sellFunction() { let i = 0; let handle = se
This is my code: #include <stdio.h> #include <sys/statfs.h> int main(int argc, char** argv) { struct statfs64 mystatfs64; statfs64("/", &am
The backend is written in node.js. This is the code in app.js. The chrome console reports an error. What do I need to do? app.use(function (req, res, next) {
I'm trying to use data-binding with Android. I can not anymore build my project. I got this error : "Error:(13, 46) error: package ch.company.project.datab
Objective: I want to create an env with HA proxy and express such that no process stops in between its task in express (100 % availability is not a priority) So