hex-patch 1.12.5

HexPatch is a binary patcher and editor with terminal user interface (TUI), it's capable of disassembling instructions and assembling patches. It supports a variety of architectures and file formats. Also, it can edit remote files via SSH.
Documentation
// Set theme to the user's preferred color scheme
function updateTheme() {
    const colorMode = window.matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light";
    document.querySelector("html").setAttribute("data-bs-theme", colorMode);
    if (colorMode == "dark") {
        document.querySelector(`link[title="hljs-dark"]`).removeAttribute("disabled");
        document.querySelector(`link[title="hljs-light"]`).setAttribute("disabled", "disabled");
    }
    else {
        document.querySelector(`link[title="hljs-light"]`).removeAttribute("disabled");
        document.querySelector(`link[title="hljs-dark"]`).setAttribute("disabled", "disabled");
    }
}

// Set theme on load
updateTheme()

// Update theme when the preferred scheme changes
window.matchMedia('(prefers-color-scheme: dark)').addEventListener('change', updateTheme)