Skip to content

Instantly share code, notes, and snippets.

View unhingedazrael's full-sized avatar
🙊
Eating bananas

Azrael unhingedazrael

🙊
Eating bananas
  • Your closet
View GitHub Profile
@unhingedazrael
unhingedazrael / readme.md
Last active October 4, 2025 08:35
A collection of resources and a learning path for malware development, reverse engineering, and low-level system concepts. Useful for building tools, analyzing malware, or understanding how systems work under the hood.

Understand how computers and systems operate at a fundamental level.

  • How computers work
  • Numeric systems (binary, hex, decimal)
  • How memory and CPU work
  • High-level understanding of machine code

Low-Level Concepts

Build core knowledge around system internals, cryptography, and debugging.

@unhingedazrael
unhingedazrael / nvim-occult.md
Last active August 6, 2025 04:14
Practical Neovim notes and keybinds, documented like an occult manual, no brainrot, just commands that work.

Modes Reference

  • [Esc] — Exit insert/visual/replace mode to return to normal mode
  • : — Enters command-line mode (while in normal mode)

File Operations

:w            = Save file
:wq           = Save and quit
:wq!          = Force save and quit (read-only files)
:w <file>     = Save as <file>