Skip to main content

Posts

Help! My Application Insights telemetry stopped working.

I want to start this blog post by stating that I have a new hero and his name is Stijn. Let me explain why… I recently upgraded an older .NET Full Framework application to the latest Application Insights NuGet package. This to make the switch from the obsolete instrumentationkey to the newer connectionstring approach. After upgrading our packages.config file (yes, this project is so old) looked like this: Looking good right? Unfortunately, the same could not be said about our telemetry itself as our Application Insights logs remained awfully empty. I doublechecked all the config files, reinstalled the nuget packages, tried to explicitly force to flush the telemetry data, everything I could think of I tried. But nothing worked. I handed the problem over to another team member (Stijn, my new hero) and he found the solution. After debugging the Application Insights code he arrived at a no-op method: This method should have all the logic to read the configuration information ...
Recent posts

Hands-on with MCP Resources in Visual Studio

In the first post of this series, we explored what MCP resources are and why they're the overlooked piece of the MCP puzzle. In a second post we showed how to use MCP resources in Visual Studio Code. Before I continue with a next post on building your own MCP server, I first want to show you how Visual Studio handles MCP resources. Setting up your MCP server with resources in Visual Studio. Let's start by installing an MCP server that provides resources. We'll use the GitHub MCP Server as our example because it's widely used and demonstrates several resource patterns. We’ll use an mcp.json file to configure our mcp server: Create .vscode/mcp.json in your workspace root Add your server configuration: Save the file—Visual Studio will detect it and try to load the MCP server. If you now try to use this MCP server, you’ll notice that it doesn’t work yet. This is because we first need to authenticate and fetch an OAUTH token. Click on the …...

How to uninstall older .NET Core versions

Over time, your development machine and servers can accumulate multiple versions of .NET Core runtime and SDK installations. While having multiple versions is often necessary for compatibility, old versions you no longer need can consume valuable disk space and clutter your system. In this post, we'll walk through the process of safely identifying and uninstalling older .NET Core versions. Why uninstall old .NET Core versions? Before we dive into the how, let's understand why you might want to clean up old .NET installations: Disk Space : Each SDK version takes up several hundred megabytes Clarity : Fewer versions make it easier to manage your development environment Security : Older versions may have known vulnerabilities Maintenance : Keeping only what you need simplifies updates and troubleshooting Checking installed versions Before uninstalling anything, you need to know what's currently installed on your system. Open your terminal or command...

Hands-on with MCP Resources in VS Code

In the first post of this series, we explored what MCP resources are and why they're the overlooked piece of the MCP puzzle. Now it's time to get practical—let's dive into using resources in Visual Studio Code. By the end of this post, you'll know how to discover, browse, attach, and leverage MCP resources to supercharge your AI-powered development workflow. Understanding resources in VS Code When an MCP server exposes resources, VS Code makes them accessible in several ways: Browse all resources across all installed servers Browse resources per server to see what each provides Attach resources to chat as context for your conversations with Copilot View resources directly in the editor Save resources from tool call results to your workspace Think of resources as a context menu for your AI—a way to give Copilot exactly the information it needs without copy-pasting or explaining everything manually. Setting up your first MCP server wi...

MCP resources–The piece everyone overlooks

I think it is hard to miss the buzz around the Model Context Protocol (MCP), the so-called USB-C for AI apps. What I noticed is that the main focus is on tools . GitHub integration tools, file system tools, API tools—the list goes on. Tools are powerful, they're exciting, and they let AI agents take action in your development environment. But the protocol exposes 2 other types of primitives what almost nobody talks about: Resources and Prompts . And that's a shame, because both might be underrated in the entire MCP specification. My goal of this post is to give at least MCP Resources the attention it deserves. Let’s dive in! The tools-only tunnel vision When Anthropic released MCP, the developer community immediately gravitated toward tools. It makes sense—tools are action-oriented and flashy. They let your AI agent create GitHub issues, run terminal commands, and interact with APIs. That's the kind of capability that makes for great demos. But MCP wasn't d...

Vibe Coding with GitHub Spark: From idea to app in minutes (continued)

Yesterday we started exploring GitHub Spark. We looked at the basic prompting experience, the live preview but also explored the visual editing features and the specification generation (through a PRD.md file). But we didn't have the time to check out all the features.  Let's dive in... Seamless GitHub Integration This is where Spark really shines. Unlike standalone vibe coding tools, Spark can create a GitHub repository from your project. Once created you get a repository with GitHub Actions, Dependabot, and all the standard tooling. The code is synchronized so you don’t need to leave the vibe coding experience. Remark: This is also a great way to better understand what is going on behind the scenes. It allowed me to fix some issues where I wasn’t able to solve it inside GitHub Spark. Need more power? Open a Codespace directly from Spark and continue development with the full GitHub ecosystem at your fingertips. Upload a sketch or an image You don’t have to start...

Vibe Coding with GitHub Spark: From idea to app in minutes

There are multiple platforms available to support you in your vibe coding experience. I mostly used bolt.new but also experimented with lovable.dev and v0.app. But did you know that Github has there own vibe coding platform? Time to give Github Spark a try… Enter GitHub Spark GitHub Spark, it's an AI development platform that converts plain English descriptions into complete, deployable full-stack applications. And I do mean complete—frontend, backend, authentication, database, hosting, the works. Its main focus is simplicity, allowing you to create simple applications without having to worry about all the technical details. Let’s dig into some of the features it has to offer. Pure natural language development The starting point is the same as with any of the other available platforms. You can enter a prompt that describes what you want. "I want to create mobile friendly 7 minutes workout app.." That's it. No setup, no configuration, no choosing betw...