Skip to content

Instantly share code, notes, and snippets.

View anthonybaldwin's full-sized avatar
:fishsticks:

Anthony Baldwin anthonybaldwin

:fishsticks:
View GitHub Profile
@anthonybaldwin
anthonybaldwin / mii.bak
Last active September 4, 2024 13:25
Mii Studio
080068030c030430020c0301060406020c000b090700001203010a0a016b6904000214031304170d04000a040109
@anthonybaldwin
anthonybaldwin / pacman-yay.sh
Last active January 3, 2025 19:40
yay/pacman on Steam Deck
#!/bin/bash
# By Ratel (https://github.com/cd-ratel/Steam-deck-Pentest)
#
# This script unlocks the typical Arch Linux environment (pacman/yay).
# Enjoy!
if [ $EUID -eq 0 ]; then
echo "The script cannot be run as root. Exiting..."
exit 1
fi
@anthonybaldwin
anthonybaldwin / Enable-Disable-Marvel-Rivals-UAC-Prompt.md
Last active February 16, 2026 00:22
Enable/Disable Marvel Rivals UAC Prompt

Enable/Disable UAC Prompt for Marvel Rivals

Yeah, no. I'd rather play Overwatch.

image

Caution

Everything appears to work fine, and the anti-cheat system at least starts. However, I am not responsible for any bans or suspensions that may occur. Proceed at your own risk.

[!TIP]

@anthonybaldwin
anthonybaldwin / autovsr.lua
Last active March 10, 2026 21:31 — forked from natyusha/autovsr.lua
AutoVSR + RTX HDR for MPV
local mp = require 'mp'
-- Configuration
local autovsr_enabled = true -- Default to VSR enabled
local autohdr_enabled = true -- Default to RTX HDR (SDR to HDR) enabled
-- Function to apply VSR and RTX HDR
local function apply_filters()
-- Get video and display properties
local video_width = mp.get_property_number("width")
@anthonybaldwin
anthonybaldwin / Engine.ini
Last active July 13, 2025 01:24
Dune Awakening HDR and more (CORSAIR XENEON 27QHD240)
; %localappdata%\DuneSandbox\Saved\Config\WindowsClient
[SystemSettings]
; ─── HDR Output & Display Gamut ───────────────────────────────────────────
r.AllowHDR=1 ; Enables HDR rendering support in the engine
r.HDR.EnableHDROutput=1 ; Sends HDR output to compatible display (triggers HDR10 mode)
; Option list for the two settings below can be found here:
; https://dev.epicgames.com/documentation/en-us/unreal-engine/high-dynamic-range-display-output-in-unreal-engine#:~:text=r.HDR.Display,%3A%20ACEScg%2C%20D60
r.HDR.Display.OutputDevice=5 ; Uses ST.2084 (PQ) tone curve — for proper HDR10 tone mapping
@anthonybaldwin
anthonybaldwin / settings.json
Created September 20, 2025 22:33
Zed settings
// Zed settings
//
// For information on how to configure Zed, see the Zed
// documentation: https://zed.dev/docs/configuring-zed
//
// To see all of Zed's default settings without changing your
// custom settings, run `zed: open default settings` from the
// command palette (cmd-shift-p / ctrl-shift-p)
{
"outline_panel": {
@anthonybaldwin
anthonybaldwin / procwatch.ps1
Created April 25, 2026 12:08
procwatch — Windows / PowerShell 7 new-process watcher with ancestor tracing, env/CWD capture (PEB read), and rotating logs
# procwatch.ps1 - lightweight new-process watcher for Windows / PowerShell 7
#
# Drop into your $PROFILE (or dot-source on demand) and call procwatch.
# Captures: PID/PPID, image path, command line, owner, session id, working
# directory, full environment (PEB read), and parent chain. Optional rotating
# file logs.
#
# Examples:
# procwatch # watch only, console output
# procwatch -Trace # also walk parent chain