Skip to content

Instantly share code, notes, and snippets.

@cualquiercosa327
cualquiercosa327 / k11_latest_n3ds.cpp
Created March 29, 2024 07:56 — forked from TuxSH/k11_latest_n3ds.cpp
Kernel11 kernel decompilation, complete with labels and comments
This file has been truncated, but you can view the full file.
/* This file was generated by the Hex-Rays decompiler.
Copyright (c) 2007-2020 Hex-Rays <info@hex-rays.com>
Detected compiler: GNU C++
*/
#include <defs.h>
//-------------------------------------------------------------------------
@cualquiercosa327
cualquiercosa327 / navigation-mode.el
Created May 5, 2024 19:28 — forked from Nondv/navigation-mode.el
My custom navigation minor mode for emacs (to move around the code file without holding control down)
;; I often find myself simply jumping around the code to read it.
;; However, it's a bit daunting to keep the Ctrl pressed.
;; I don't like vim but I'd like some simple one button navigation
;;
;; For a while, I used god-mode for that but its purpose is quite different
;; which sometimes caused some weird behaviour when I had it enabled.
;; Plus, some shortcuts simply aren't improved by this (e.g. C-M-f).
;; So I decided to write my own minor mode specifically for navigation *I*
;; need.
;;