Your GPT will gladly spill its secrets.

by Sigve Fast

There is a lot of excitement after OpenAI launched its new app-concept GPTs. The promises are high, but there are still some rough edges. Something to be aware of is that there are no safeguards in place to hinder anyone from getting back the prompt that makes up the GPT.…

Visual Studio Shortcuts Cheat Sheet

by Sigve Fast

Visual Studio, as one of the most widely-used IDEs, comes packed with shortcuts to make our lives easier. But do we know them all? Or even the most useful ones? Here's a quick cheat sheet of the Visual Studio shortcuts that I use to speed up my coding…

Change Intellisense shortcuts in Visual Studio

by Sigve Fast

The most frustration thing a developer can experience is keyboard shortcuts changing. This happened to me recently when the Ctrl+space shortcut started auto inserting a member instead of showing the List Members box. Here is how I fixed it. 1. Open Visual Studio and go to the Tools -&…

Tracking upload or download progress in Blazor WASM with Refit

by Sigve Fast

Learn how to add file upload/download progress tracking to your Blazor component with a Refit-powered REST API client.…

Azure DevOps: Migrating to windows-latest

by Sigve Fast

The windows-2016 environment will be deprecated on November 15, 2021, and removed on March 15, 2022. Migrate to windows-latest instead.This is a scheduled windows-2016 brownout. The windows-2016 environment is deprecated and will be removed on March 15, 2022. For more details, see https://github.com/actions/virtual-environments/issues/4312Microsoft…

So you want to debug third-party dll's at runtime, do you?

by Sigve Fast

Some of the more difficult exceptions to debug are those thrown deep inside-third party frameworks. Everybody knows you can decompile a dll and look at the source code, but that can only take you so far. Wouldn't it be great if you could set a breakpoint in that…