Skip to content

Instantly share code, notes, and snippets.

View douglasparker's full-sized avatar

Douglas Parker douglasparker

  • Washington
  • 03:21 - 7h behind
View GitHub Profile
@douglasparker
douglasparker / README.md
Last active March 25, 2025 16:26
Disable & Enable MPO via the Windows Registry

Disable & Enable MPO via the Windows Registry

There is a well known issue where GPU drivers are crashing with multi-monitor setups due to an interaction with Windows MPO and both Nvidia and AMD GPUs.

Until this bug is fixed, the only solution is to disable MPO via the Windows Registry.

Disable MPO

To apply the fix, simply run mpo_disable.reg and reboot your computer.

@douglasparker
douglasparker / README.md
Last active December 9, 2022 23:56
BYOND Export is a PHP Function that creates a socket, connects to a remote DreamDaemon Instance, and sends a message that can be received via world.Import().

BYOND Export

BYOND Export is a PHP Function that creates a socket, connects to a remote DreamDaemon Instance, and sends a message that can be received via world.Import().

Dependencies

  • PHP Versions: 4.1, 5.0, 7.0

Contributors

A special thanks to Mobius Evalon and Crispy for their contributions to the structuring of packet data.

server {
listen 80;
server_name overseerr.example.com;
return 301 https://$server_name$request_uri;
}
server {
listen 443 ssl http2;
server_name overseerr.example.com;