When is Node.js a good fit?
Compare suitability, operational responsibilities and limits before choosing this technology for a project. Which trade-offs should guide the decision?
ReadMeFeed / Community knowledge
Real questions. Useful conversations. Find the people who know your stack.
Compare suitability, operational responsibilities and limits before choosing this technology for a project. Which trade-offs should guide the decision?
A failure needs to be narrowed down before settings are changed or operations retried. Which evidence best separates application errors from environment and dependency problems?
A storage private endpoint and its DNS record exist. A VM in a connected network still resolves the ordinary blob hostname to a public address. The VM uses a custom DNS server, while another VM using the intended Azure resolver gets a private address. The application configuration has not changed. Which part of the DNS chain should be investigated?
I can easily get the secrets stored in Kubernetes . $ kubectl get secret my-app-secrets -o yaml Select secret value from output that I want to decode. Example ZXhwb3NlZC1wYXNzd29yZAo= $ echo ZXhwb3NlZC1wYXNzd29yZAo= | base64 --decode > exposed-password I'm not sure I understand the effectiveness of the secrets resources in Kubernetes ecosystem since it's
There are a number of Heroku CLI Postgres commands that all return the same error. For example: $ heroku pg:bloat psql: FATAL: no pg_hba.conf entry for host "...", user "...", database "...", SSL off At least one of these commands has worked in the past, but does not now. The database appears to be working fine otherwise. I can access it via my application's
Recovery needs to recreate the working service and its required data after a machine or process is lost. Which artifacts and state need protection, and how should the restore be checked?
Compare suitability, operational responsibilities and limits before choosing this technology for a project. Which trade-offs should guide the decision?
I'm trying to get a total count of users through Microsoft Graph API through my B2C AAD tenant, but the response seems to either error out or is omitting the @odata.count property. Feedback online is also mixed where some people say that $count is still unsupported even thought the official documentation says that $count is supported for /users. https://lear
Given that logging-in with aws login sso is successful. Successully logged into Start URL: ***** From here I want to start my service that requires the following environment variables with AWS credentials to be set: AWS_ACCESS_KEY_ID AWS_SECRET_ACCESS_KEY AWS_SESSION_TOKEN How can I extract those variables into the current shell? A workaround which I am curr