Skip to content

Instantly share code, notes, and snippets.

View deluxghost's full-sized avatar
🤷‍♂️
Huh?

deluxghost deluxghost

🤷‍♂️
Huh?
View GitHub Profile
@BadMagic100
BadMagic100 / i2cpp_ghidra.md
Last active December 2, 2025 07:23
Instructions to get a useful decompilation out of an il2cpp game. Or, "I spent hours to trial and error so hopefully you won't have to"

Decompiling IL2CPP Games with Il2CppDumper and Ghidra

This guide will walk through how to decompile/reverse engineer IL2CPP games for modding usage.

Note: expect this entire process to take upwards of an hour. Have something ready to do on the side while waiting for processing to finish.

Prerequisites

  1. Download Il2CppDumper
@pernalin9
pernalin9 / 微软输入法自动跳转为中文Fix.ahk
Last active August 21, 2025 07:32 — forked from maokwen/AutoHotKey-Lock-Chinese-IME.ahk
微软输入法自动跳转为中文Fix.ahk
# 如果可以接受capslock作为输入法切换按键,强烈建议使用评论区脚本
# 如果可以接受capslock作为输入法切换按键,强烈建议使用评论区脚本
# 如果可以接受capslock作为输入法切换按键,强烈建议使用评论区脚本
#Include %A_ScriptDir%
timeInterval := 500
; +-------------------------+-------------------------+
@emesare
emesare / leclaimer.js
Last active November 17, 2025 22:16
asset.party slot claimer for s&box. NO LONGER SUPPORTED
// ==UserScript==
// @name Le claimer
// @namespace http://tampermonkey.net/
// @version 0.3
// @description try to claim yourself access to a game that doesn't exist (its a hoax)
// @author ------
// @match https://asset.party/get/developer/preview
// @icon https://www.google.com/s2/favicons?sz=64&domain=asset.party
// @grant none
// ==/UserScript==
@Yakibomb
Yakibomb / mvm_upgrades_medieval_yakibomb.txt
Created August 31, 2018 11:54
Used for Team Fortress 2's Mann Vs Machine Mode. This file specifically used for Sigsegv's Custom Upgrades plugin.
//mvm_upgrades_medieval_yakibomb.txt
//meant for missions on mvm_hillside_v7
//find the achievement icons in "tf2_textures_dir.vpk/root/materials/vgui/achievements"
//use console command to exec:
//ent_fire gamerules SetCustomUpgradesFile "scripts/items/mvm_upgrades_medieval_yakibomb.txt"
//==============================================================================
//check this thread for more information
//http://steamcommunity.com/groups/sigpipe/discussions/2/3277925755451094250/
//==============================================================================
@coin8086
coin8086 / using-proxy-for-git-or-github.md
Last active December 4, 2025 02:55
Use Proxy for Git/GitHub

Use Proxy for Git/GitHub

Generally, the Git proxy configuration depends on the Git Server Protocol you use. And there're two common protocols: SSH and HTTP/HTTPS. Both require a proxy setup already. In the following, I assume a SOCKS5 proxy set up on localhost:1080. But it can also be a HTTP proxy. I'll talk about how to set up a SOCKS5 proxy later.

SSH Protocol

When you do git clone ssh://[user@]server/project.git or git clone [user@]server:project.git, you're using the SSH protocol. You need to configurate your SSH client to use a proxy. Add the following to your SSH config file, say ~/.ssh/config:

ProxyCommand nc -x localhost:1080 %h %p
@reyawn
reyawn / vs-code-icon-names.json
Created October 28, 2016 13:45
Visual Studio Code icon names for shortcuts
[
"alert",
"arrow-down",
"arrow-left",
"arrow-right",
"arrow-small-down",
"arrow-small-left",
"arrow-small-right",
"arrow-small-up",
"arrow-up",
@fntlnz
fntlnz / self-signed-certificate-with-custom-ca.md
Last active December 6, 2025 21:36
Self Signed Certificate with Custom Root CA

Create Root CA (Done once)

Last update: Nov 2025.

Create Root Key

Attention: this is the key used to sign the certificate requests, anyone holding this can sign certificates on your behalf. So keep it in a safe place!

openssl ecparam -genkey -name secp384r1 | openssl ec -aes256 -out rootCA.key
@m-jowett
m-jowett / log.md
Last active July 21, 2025 10:04
Setup LibreOffice Online (Log/Guide) [WIP]

Setup LibreOffice Online (Log/Guide) [WIP]

About

This guide/log is based off my experience attempting to build and install LibreOffice Online and it's dependencies on my system.

The end goal is to get LibreOffice Online integrated with Karoshi Server.

LibreOffice Online is still in development (17/06/16).

@xPaw
xPaw / steam_quick_queue.user.js
Last active October 12, 2025 04:37
⚠ This script has been integrated into SteamDB browser extension!
// ==UserScript==
// @name Steam Queue Auto Discoverer
// @description Discover the Steam queue three times to get the sale cards
// @version 2.3.0
// @namespace https://gist.github.com/xPaw/73f8ae2031b4e528abf7
// @icon https://store.steampowered.com/favicon.ico
// @match https://store.steampowered.com/explore*
// @grant none
// ==/UserScript==