Skip to content

Instantly share code, notes, and snippets.

View e455a81e-d3ba-41a2-bc6d-7aafb1d9a5cd's full-sized avatar

e455a81e-d3ba-41a2-bc6d-7aafb1d9a5cd

View GitHub Profile
@e455a81e-d3ba-41a2-bc6d-7aafb1d9a5cd
e455a81e-d3ba-41a2-bc6d-7aafb1d9a5cd / add_neovide_to_explorer.reg
Last active January 16, 2025 11:49
Add open neovide actions to the windows explorer right click menu.
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\*\shell\neovide]
@="Open with Neovide"
"Icon"="\"C:\\Program Files\\Neovide\\neovide.exe\""
[HKEY_CLASSES_ROOT\*\shell\neovide\command]
@="\"C:\\Program Files\\Neovide\\neovide.exe\" \"%1\""
[HKEY_CLASSES_ROOT\Directory\shell\neovide]
@e455a81e-d3ba-41a2-bc6d-7aafb1d9a5cd
e455a81e-d3ba-41a2-bc6d-7aafb1d9a5cd / ReadMemory.fs
Last active December 30, 2022 23:48
Read the page at '0x00000000`7ffe0000' using F# and print its content.
open System
open System.Runtime.InteropServices
[<Literal>]
let MAXIMUM_XSTATE_FEATURES = 64
[<Literal>]
let PROCESSOR_FEATURE_MAX = 64
[<Struct; StructLayout(LayoutKind.Sequential)>]