Skip to content

Instantly share code, notes, and snippets.

View garryspins's full-sized avatar
Spinning

MustBeLeaving garryspins

Spinning
View GitHub Profile
@ggtylerr
ggtylerr / WD-40.sh
Created August 1, 2022 07:24
removes rust from your system
curl https://sh.rustup.rs -sSf | sh
rustup self uninstall
@meepen
meepen / lujlu.lua
Last active February 9, 2024 09:18
LuaJit VM in Lua. Comes with fully operational bytecode interpreter. License is: contact me before using it commercially. - Now runs itself inside itself and itself inside itself inside itself
local bytecodes = {}
local BC, run_function = {}
local VARG_CONST = {}
local lujlu_mt_funcs
local lujlu_cache = setmetatable({}, {__mode = "k"})
local lujlu_identifier_mt = {
__tostring = function(self)
return tostring(lujlu_cache[self].data)
end,