To show current repo, rootfolder and active git branch in window title:
Open settings.json -> F1 -> Open User settings (JSON) -> and edit/insert this:
"window.title": "${dirty} ${activeRepositoryName} - ${rootName} [${activeRepositoryBranchName}]",
My bookmarks and blogposts regarding Software Development in .NET, C#, Angular, JavaScript, CSS, Html
What is MCP? It stands for Model Context Protocol and enables your AI Agent (Such as Github Copilot in VS Code) to integrate directly against other systems. One such system is Azure Devops. This tools enables Copilot to read most of your organisation Azure Devops information.
So instead of context switching and copy pasting info from Devops (error messages or User Stories information etc) you can just ask your AI agent directly in your IDE.
Examples of useful prompts for a developer: (from ChatGPT)
“Find my latest failed run for pipeline Backend-CI and summarize which step failed, including the log excerpt around the error.”
“Get the duration trend for the last 20 runs of ClientSPA-CI and highlight the slowest job.”
“List all pipelines that have not run in the last 60 days.”
“Compare two pipeline runs (Run 1412 and Run 1477) for MyApplication-API and explain the differences in steps, duration, and triggered changes.”
“Show me all active PRs in the repo MyApplication that have unresolved comments.”
“Which PRs were merged this week, and which work items did they close?”
“Summarize the diff for PR 84303, but only include changes in the Angular project under ClientSPA/.”
“List files in the repo MyApplication that changed in the last 48 hours.”
“Search all repositories for references to ProductRowID.”
“Find all work items assigned to me that are blocked by another work item, and summarize the blockers.”
“Show me work items marked as ‘Ready for test’ but not linked to any build or PR.”
“List all bugs created in the last 7 days containing the word paracetamol.”
“Show me all variable groups used by Backend-CI.”
“Fetch the artifacts for pipeline run 292 of ClientSPA-CI, list their sizes, and highlight anything over 100 MB.”
“Find pipelines that reference the variable AzureAd:ClientSecret.”
Setup in VS Code:
azure-devops-mcp/docs/GETTINGSTARTED.md at main · microsoft/azure-devops-mcp
General installation guide:
https://learn.microsoft.com/en-us/azure/devops/mcp-server/mcp-server-overview?view=azure-devops#install-mcp-server
The notification center in Windows 11 is a handy panel for your calendar, quick settings, and pop-up alerts, allowing you to stay informed. Despite its benefits when enabled, it can be distracting and give out too much information.Some users and organizations disable notification center to prevent distractions, ensure important alerts aren’t accidentally dismissed, and maintain a secure interface. In this guide, we will provide approaches using Group Policy, Registry Editor, and PowerShell to modify your
Source: Enable or Disable Notification Center in Windows 11 | NinjaOne
Latest Visual Studio 2022 with Copilot should work with below config to preprompt/improve/customizee the Copilot experience.
Source: Adding repository custom instructions for GitHub Copilot – GitHub Docs
I finally understood multithreading — and now my code runs 10x faster. Multithreading used to sound like magic. Or worse — a trap full of race conditions, deadlocks, and endless debugging. But once I broke it down, I realized: It’s just parallel thinking with safety checks. Here’s what helped it all click:
🔹 Threads = multiple tasks running in parallel
🔹 Mutex/locks = only one thread can access shared data at a time
🔹 Race Conditions = when threads clash over shared state
🔹 Deadlocks = when threads wait
Testing Components with children
- Rendering a Component with or without its children
- Checking that the parent and its children are wired up correctly
- Replacing child Components with fakes
- Using the ng-mocks library to fake dependencies
Directives such as *ngIf and *ngFor will soon get deprecated to favor the new control flow blocks.
E.g. old directives:
<ng-container *ngIf="isLoggedIn">...</ng-container>
Can now be replaced with the new syntax:
@if (isLoggedIn) {
...
}
Convert C# Models, ViewModels and DTOs into their TypeScript equivalents.
Source: C# to TypeScript – Visual Studio Marketplace
Everyone wants to write code in a fast bug-free way without thinking about its style most of the time. That’s why in this post I will talk about configuring ESLint and Prettier in an Angular project.
Source: Configure Prettier and ESLint with Angular | by Enea Jahollari | ITNEXT
Ctrl+Q, search for feature “exception settings” -> enable setting below
