Debugging a Windows VM in Proxmox Windows 8+

Open command prompt as Administrator

“bcdedit /dbgsettings NET HOSTIP:192.168.x.x PORT:55555 nodhcp”

Note the Key

Apply these firewall rules to Proxmox for the VM

(OUT) Src and (IN)Dst UDP on port 55555 on firewall

Start WinDbg on your client machine and select “Attach to kernel”, target the assigned IP, port and key.

Sample response:

Resolve oodle shader error in Zombieville and Call of Duty crashing with error code 1338 (0x00001338)

For months I’ve been facing issues since a recent patch lead to COD to continuously crash. Moving the Performance Core Ratio from 57x->54x appears to fully have resolved the issue. The problem appears to be narrowed to Intel’s P cores with my 14900KF processor. Hours of time burned but with this setting it appears everything is working once again!

MCP Server written for ASP.net 4.7.2 without external dependencies

I am currently working on throwing together a MCP server for ASP.net to create invoice integration with a large language model. I tested this implementation with Cursor and was able to run successful test making this an all in one .ashx.cs solution to implementing into your own project.

I have attached a VB.net version as well. My VB.net version required two additional lines within HandleSseHandshake. It may be due to my .NET web.config setup which may result in compression being automatically appended in my response. Adding these two lines corrected the issue.

Piping MIC recordings from a WebBrowser to C# Form

An example of an HTML page that sends recording remotely to a c# processor.

The file is set for 16khz ready for LLM translation. This takes a file from an HTTP post and processes it in memory (you can uncomment to save copies of the file if needed) and passes it to the LLM function.

Using Whisper for Voice to Text within .Net Framework (non-core)

This application records microphone audio, detects silence, and transcribes speech into text using Whisper.net and NAudio. It supports multiple transcription modes: real-time, silence-aware, and WAV-file-based.

Use 16Khz Wav’s for a file feeds (FFMPEG).