How can I improve GitHub Actions performance without guessing?
A performance change should improve the measured workload without sacrificing correctness or wasting capacity. Which measurements and bottlenecks should be considered first?
ReadMeFeed / Community knowledge
Real questions. Useful conversations. Find the people who know your stack.
A performance change should improve the measured workload without sacrificing correctness or wasting capacity. Which measurements and bottlenecks should be considered first?
I am trying to create an app where user can upload a text file, and gets the altered text back. I am using React as FE and ASP.NET Core for BE and Azure storage for the database storage. This is how my HomeController looks like. I created a separate "UploadToBlob" method, to post the data public class HomeController : Controller { private readonly IConfigura
My simple terraform file is: provider "aws" { region = "region" access_key = "key" secret_key = "secret_key" } terraform { backend "s3" { # Replace this with your bucket name! bucket = "great-name-terraform-state-2" key = "global/s3/terraform.tfstate" region = "eu-central-1" # Replace this with your DynamoDB table name! dynamodb_table = "great-name-locks-2"
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?
I want to install discord via snap (Linux package format), but i get the following error: cannot communicate with server: Post http://localhost/v2/snaps/discord: dial unix /run/snapd.socket: connect: connection refused Don't know why ...
I am running Windows 11. I have set "When plugged in, put my device to sleep after" to be "Never" in Settings > System > Power. When I lock the screen and leave for a long time, the device still enters some kind of sleep mode. The power LED changes from blue to red and when the device wakes up, I need to input my BitLocker password again. Somehow, it s
I need help. VSCode will NEVER find poetry virtualenv interpreter no matter what I try. Installed poetry Python package manager using a standard $ curl method as explained in the official documentation . Started a project by $ poetry new finance-essentials_37-64 , installed poetry environment with $ poetry install . So now I can see that I indeed have a virt
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?
Configuration must be available to the application without exposing credentials in source control, logs or browser code. What belongs in the runtime and which access controls matter?