Skip to content

Instantly share code, notes, and snippets.

@deyixtan
deyixtan / sublime_text_patch.md
Last active April 8, 2024 06:11
Sublime Text Patching Guide

Automated Patching

Download slt.py python script (supports multiple build) from this repository.

Usage

python slt.py <"sublime_text file path">


Manual Patching

@AkdM
AkdM / Edit_Repack_ISO_tutorial.md
Last active June 15, 2024 14:40
Edit and repack .iso bootable image

On Linux

Installing mkisofs

apt-get install mkisofs

Editing ISO image

mkdir /tmp/custom_iso

#!/bin/bash
set -e -u
export LANG=C
app_name=${0##*/}
arch=$(uname -m)
pkg_list=""
run_cmd=""