kode24 podcast-chat del 2

by Sigve Fast

Velkommen til andre del i bloggserien om å chatte med kode24-timen. Her skal vi dykke litt dypere i det tekniske og jeg skal fortelle deg hvordan den er laget. Konseptet er ikke nytt, men det som derimot er nytt er at vi nå kan få til dette ganske så bra…

kode24 podcast-chat del 1

by Sigve Fast

Velkommen til lanseringsposten av hele verdens kode24-timen-podcast-chat! Endelig skal du få personlig og fri tilgang til å snakke med dine favoritt-podkast-verter 24/7. Eller snakke med episodene i alle fall. TL;DR Chat med podcasten kode24-timen her: https://kode24chat.novacare.no/ Podcast er jo i utgangspunktet et litt håpløst format.…

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

Microsoft is deprecating and removing the windows-2016 environments in DevOps in the coming months. Here's how to change the agent environment in your pipelines. YAML If you are using YAML for setup this is an easy fix. Just change the pool:vmImage setting to windows-2022 GUI configuration If…

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…