Skip to content

Instantly share code, notes, and snippets.

View markstachowski's full-sized avatar

Mark Stachowski markstachowski

View GitHub Profile

Setting Up MCP Servers on Windows

A step-by-step guide to setting up Model Context Protocol (MCP) servers for Claude Desktop on Windows.

Prerequisites

  1. Install Node.js (v18.x or later)
    • Download from: https://nodejs.org/
    • Verify installation by opening PowerShell and running:
      node --version

npm --version

@KhaosT
KhaosT / HDMI on Apple Vision Pro.md
Last active March 31, 2025 02:13
Guide for using Apple Vision Pro as HDMI display

Displaying HDMI sources on Apple Vision Pro

While it's possible to stream most content to Apple Vision Pro directly over the internet, having the ability to use Apple Vision Pro as an HDMI display can still be useful.

Since Apple Vision Pro does not support connecting to an HDMI input directly or using an HDMI capture card, we have to be a little creative to make this work. NDI provides the ability to stream HDMI content over a local network with really low latency, and it works great with Apple Vision Pro.

This page shows the setup I’m using.

@Shterneregen
Shterneregen / CreateScheduledTask.ps1
Last active June 13, 2024 12:12
Windows task to update Cisco AnyConnect InterfaceMetric to help with internet connectivity porblem with running VPN. After the first launch, the task will automatically start when you turn on the VPN
# - Create CreateScheduledTask.ps1 file with content below.
# - Run as admin command in PowerShell:
# Get-Content .\CreateScheduledTask.ps1 | PowerShell.exe -noprofile -
# - Restart Windows
# - Launch WSL
# - Launch VPN
# - Done! Metric automatically updated
$taskname="Fix VPN for WSL"
$scriptName = "UpdateAnyConnectInterfaceMetric.ps1"
@naman-pasari
naman-pasari / pythonSetupOnWSL.md
Last active July 9, 2023 11:30 — forked from raunak-r/pythonSetupOnWSL.md
Python Setup for Backend Development in Windows using WSL

GitExercises WriteUp

This is a write-up of the GitExercises upto level "fixed-old-typo".

master

Problem Statement

The first exercise is to push a commit that is created when you run the git start command.

Just try git verify after you have initialized the exercises and be proud of passing the first one :-)

@machuu
machuu / WSL2_VPN_Workaround_Instructions.md
Last active March 29, 2025 00:19
Workaround for WSL2 network broken on VPN

Overview

Internet connection and DNS routing are broken from WSL2 instances, when some VPNs are active.

The root cause seems to be that WSL2 and the VPN use the same IP address block, and the VPN routing clobbers WSL2's network routing.

This problem is tracked in multiple microsoft/WSL issues including, but not limited to:

@hucsmn
hucsmn / wsl2.md
Last active July 5, 2024 19:20
A collection of WSL2 hacks

Notes on configuring ArchWSL on WSL2.

Basic setup

Edit %UserProfile%\.wslconfig:

[wsl2]
swap=0
localhostForwarding=true
@BusterNeece
BusterNeece / 00-setup.md
Last active December 5, 2024 18:55
My WSL2 Ubuntu 20.04 Environment

My local Ubuntu 20.04 WSL2 setup.

Enable and Install WSL2

From Windows, as admin:

dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart
dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart
@Zhendryk
Zhendryk / The Ultimate Windows Development Environment.md
Last active February 21, 2025 02:16
How to set up the ultimate Windows development environment