GitHub Copilot: selecting different suggestion

GitHub Copilot logo

I’ll share a simple trick I was happy to learn only today (after using GitHub Copilot for over a month). Copilot is so good at guessing what I intend to write that pretty much all the time I accept the first solution it comes up with. But sometimes it can guess wrong, or it doesn’t … Read more

Karma Test Explorer in VS Code fails to load tests: “karma server quit unexpectedly”

Hey! This post is to capture the non-obvious debugging steps needed to resolve the following error: Failed to load tests – Karma server quit unexpectedly: Process exited with non-zero status code 1 At one point in our project development, team members started to notice that the Karma-based front-end tests stopped loading in the Karma Test … Read more

VS Code: settings synchronization doesn’t work

I have recently observed that my Visual Studio Code synchronization no longer seemed to work. The configuration which I carefully changed at home was still not synced on my workplace machine. If you have a similar problem and found this blogpost in Google, read on 🙂 Diagnosing it turned out to be easy once you … Read more

How to suppress issues in C# code

I like to maintain a zero-warning policy in a project. In the case of false-alarm warnings, I think it’s better to suppress them than to leave them active. When we suppress a warning, it will not draw our attention every time we look at logs. So, how can we suppress a warning like the example … Read more