<feed xmlns="http://www.w3.org/2005/Atom"> <id>https://www.insomniacgeek.com/</id><title>An Insomniac Geek - Coding Insights &amp; Tech Exploration</title><subtitle>Welcome to InsomniacGeek, where late nights fuel coding insights. Explore programming tutorials, tech reviews, and deep dives. Whether you're a seasoned developer or just starting out, find resources to keep your skills sharp.</subtitle> <updated>2026-04-13T13:26:29+02:00</updated> <author> <name>Magnus Johansson</name> <uri>https://www.insomniacgeek.com/</uri> </author><link rel="self" type="application/atom+xml" href="https://www.insomniacgeek.com/feed.xml"/><link rel="alternate" type="text/html" hreflang="en" href="https://www.insomniacgeek.com/"/> <generator uri="https://jekyllrb.com/" version="4.4.1">Jekyll</generator> <rights> © 2026 Magnus Johansson </rights> <icon>/assets/img/favicons/favicon.ico</icon> <logo>/assets/img/favicons/favicon-96x96.png</logo> <entry><title>I Built an MCP Server That Lets AI Control My Oscilloscope</title><link href="https://www.insomniacgeek.com/posts/ai-controlled-oscilloscope-mcp-server/" rel="alternate" type="text/html" title="I Built an MCP Server That Lets AI Control My Oscilloscope" /><published>2026-02-07T13:00:00+01:00</published> <updated>2026-02-07T13:00:00+01:00</updated> <id>https://www.insomniacgeek.com/posts/ai-controlled-oscilloscope-mcp-server/</id> <content src="https://www.insomniacgeek.com/posts/ai-controlled-oscilloscope-mcp-server/" /> <author> <name>insomniacgeek</name> </author> <category term="MCP" /> <category term="Oscilloscope" /> <category term="AI" /> <category term="Electronics" /> <summary> What if you could just tell your oscilloscope what to do? Not through menus, not through a programming guide, not through some clunky remote desktop setup – but by typing plain English into an AI assistant? That’s exactly what I built. A Model Context Protocol (MCP) server that connects AI assistants to Siglent SDS oscilloscopes over your local network. You talk to the AI, and it talks to your... </summary> </entry> <entry><title>How to Disable Folder Discovery in Windows 11 with a PowerShell Script</title><link href="https://www.insomniacgeek.com/posts/how-to-disable-windows-folder-discovery/" rel="alternate" type="text/html" title="How to Disable Folder Discovery in Windows 11 with a PowerShell Script" /><published>2024-07-21T12:22:00+02:00</published> <updated>2024-07-21T12:22:00+02:00</updated> <id>https://www.insomniacgeek.com/posts/how-to-disable-windows-folder-discovery/</id> <content src="https://www.insomniacgeek.com/posts/how-to-disable-windows-folder-discovery/" /> <author> <name>insomniacgeek</name> </author> <category term="Windows" /> <category term="Windows 11" /> <category term="Powershell" /> <category term="Registry" /> <category term="File Explorer" /> <summary> Outline If you’ve ever been annoyed by Windows 11 automatically changing the look and feel of your File Explorer based on the content of your folders, you’re not alone. This feature, known as folder discovery, can be helpful for some users but a nuisance for others who prefer a consistent view across all folders. Fortunately, there’s a way to disable this feature using a simple PowerShell scri... </summary> </entry> <entry><title>How to fix the Azure Cloud Shell Storage Provider error: Storage fileshare subscription 'subscriptionID' is not registered to Microsoft.CloudShell Namespace</title><link href="https://www.insomniacgeek.com/posts/fix-azure-cloud-shell-storage-provider-error/" rel="alternate" type="text/html" title="How to fix the Azure Cloud Shell Storage Provider error: Storage fileshare subscription &amp;apos;subscriptionID&amp;apos; is not registered to Microsoft.CloudShell Namespace" /><published>2024-04-23T19:07:00+02:00</published> <updated>2024-04-23T19:07:00+02:00</updated> <id>https://www.insomniacgeek.com/posts/fix-azure-cloud-shell-storage-provider-error/</id> <content src="https://www.insomniacgeek.com/posts/fix-azure-cloud-shell-storage-provider-error/" /> <author> <name>insomniacgeek</name> </author> <category term="Azure" /> <category term="Azure Portal" /> <summary> Outline Suddenly, i got this error in my Azure Cloud Shell: Storage fileshare subscription subscription ID is not registered to Microsoft.CloudShell Namespace. Please follow these instructions "https://aka.ms/RegisterCloudShell" to register. In future, unregistered subscriptions will have restricted access to CloudShell service. Following the instructions in the link, I can see that the pro... </summary> </entry> <entry><title>Preparing a self hosted Azure Agent for Flutter and Android SDK</title><link href="https://www.insomniacgeek.com/posts/install-flutter-android-sdk-ubuntu-azure-agent/" rel="alternate" type="text/html" title="Preparing a self hosted Azure Agent for Flutter and Android SDK" /><published>2024-03-22T12:29:08+01:00</published> <updated>2024-03-22T12:29:08+01:00</updated> <id>https://www.insomniacgeek.com/posts/install-flutter-android-sdk-ubuntu-azure-agent/</id> <content src="https://www.insomniacgeek.com/posts/install-flutter-android-sdk-ubuntu-azure-agent/" /> <author> <name>insomniacgeek</name> </author> <category term="Flutter" /> <category term="Linux" /> <category term="Android" /> <category term="Azure DevOps" /> <summary> Outline In this blog post I will show you how to prepare a self hosted Azure Agent for Flutter and Android SDK. This is useful if you want to run your Flutter builds, tests and even publish to the Google Play Store on a self hosted Azure Agent. The following steps will be covered: Install Flutter Install Android SDK Install Flutter The first step is to install Flutter.... </summary> </entry> <entry><title>Dotnet tool restore doesn't work after moving to Dev Drive</title><link href="https://www.insomniacgeek.com/posts/dotnet-tool-cache-dev-drive/" rel="alternate" type="text/html" title="Dotnet tool restore doesn&amp;apos;t work after moving to Dev Drive" /><published>2024-03-22T12:29:08+01:00</published> <updated>2024-03-22T12:29:08+01:00</updated> <id>https://www.insomniacgeek.com/posts/dotnet-tool-cache-dev-drive/</id> <content src="https://www.insomniacgeek.com/posts/dotnet-tool-cache-dev-drive/" /> <author> <name>insomniacgeek</name> </author> <category term="Dotnet" /> <category term="Tools" /> <category term=".NET" /> <summary> After you have followed the guide on how to setup a Windows Dev Drive you might have noticed that your dotnet tools are not working anymore. This is because the tools are cached in the user profile folder. More specifically, the tools are cached in the %USERPROFILE%\.dotnet\toolResolverCache folder. Simply delete that folder and run dotnet tool restore again. The tools will be restored and ca... </summary> </entry> </feed>
