Skip to content

Instantly share code, notes, and snippets.

@majaahh
majaahh / gist:a9dc96d8c14ec6ee7e64d49525721f6f
Last active October 27, 2025 16:26
"downgrade" or "upgrade" to ANY One UI version without flashing bootloader on exynos devices:
Note:
* If you don't know what you are doing/don't have basic knowledge then do NOT attempt doing this and especially do NOT ask for support if you try
Tools that you will need:
* Windows: A brain, 7-Zip ZSTD (https://github.com/mcmilk/7-Zip-zstd/releases/tag/v25.01-v1.5.7-R1), Mio Kitchen (https://github.com/ColdWindScholar/MIO-KITCHEN-SOURCE/releases). stock firmware that you have installed right now, firmware that you want to get installed
* Linux: A brain, tar, unzip, lz4, some terminal knowledge, Mio Kitchen (https://github.com/ColdWindScholar/MIO-KITCHEN-SOURCE/releases). stock firmware that you have installed right now, firmware that you want to get installed
Guide:
* Install required tools if you haven't already
* Extract super.img.lz4 from your current stock firmware (AP*.tar) with 7-Zip ZSTD (open it with 7zip zstd and drag image out) or tar if you are on linux (tar xvf AP*.tar*)
@jamiephan
jamiephan / README.md
Last active November 14, 2025 19:06
A script to automatically add ALL items to your account in quixel

Script to add all items from quixel

As quixel is being removed, all items are free to aquire. This script is to automate the process to add items to your account (As of writing, a total of 18874 items)

Note: This script only tested in the latest version of Chrome.

How to use

  1. Copy the script from below (run.js)
  2. Login into https://quixel.com
@Arian04
Arian04 / shell.nix
Last active September 16, 2025 14:42 — forked from Nadrieril/shell.nix
Building LineageOS on NixOS
# I used this shell.nix to build LineageOS 21.0 for redfin (Google Pixel 5)
#
# IMPORANT NOTE: I had to use a pure shell for my builds to work, i.e: `nix-shell --pure` rather than `nix-shell`
#
# The build instructions are here: https://wiki.lineageos.org/devices/redfin/build
#
# Warning (from forked gist, was added August 1st 2018):
# The hardened NixOS kernel disables 32 bit emulation, which made me run into multiple "Exec format error" errors.
# To fix, use the default kernel, or enable "IA32_EMULATION y" in the kernel config.
#
@utkustnr
utkustnr / buildscript.sh
Last active November 30, 2025 16:17
YUPIK/LAHAINA kernel scripts
#!/bin/env bash
set -e
set -o pipefail
check_dependencies() {
local missing=false
for tool in git curl wget jq unzip tar lz4 awk sed sha1sum md5sum; do
if ! command -v "$tool" &> /dev/null; then
@Artefact2
Artefact2 / dbvol.lua
Last active November 19, 2025 14:44
Decibel volume controls for mpv
-- Override mpv's default volume keybinds with decibel controls
-- Put this file (dbvol.lua) in ~/.config/mpv/scripts/
-- WARNING: positive gain values may cause clipping
-- Author: Romain "Artefact2" Dal Maso <romain.dalmaso@artefact2.com>
-- Released under the WTFPLv2
function round(n)
-- https://stackoverflow.com/a/58411671
return n + (2^52 + 2^51) - (2^52 + 2^51)
@FreddieOliveira
FreddieOliveira / docker.md
Last active December 10, 2025 00:41
This tutorial shows how to run docker natively on Android, without VMs and chroot.

Docker on Android 🐋📱

Edit 🎉

All packages, except for Tini have been added to termux-root. To install them, simply pkg install root-repo && pkg install docker. This will install the whole docker suite, left only Tini to be compiled manually.


Summary

@Axel-Erfurt
Axel-Erfurt / celluloidTV.m3u
Last active November 11, 2025 21:31
Livestreams deutscher TV-Sender
#EXTM3U
#EXTINF:-1,ARD
https://daserste-live.ard-mcdn.de/daserste/live/hls/de/master.m3u8
#EXTINF:-1,ARD ONE
https://mcdn-one.ard.de/ardone/hls/master.m3u8
#EXTINF:-1,ARD Alpha
https://mcdn.br.de/br/fs/ard_alpha/hls/de/master.m3u8
#EXTINF:-1,ARD Tagesschau
https://tagesschau.akamaized.net/hls/live/2020115/tagesschau/tagesschau_1/master.m3u8
#EXTINF:-1,ZDF
@soulmachine
soulmachine / nfs-proxmox.md
Last active December 2, 2025 11:50
Launch a NFS server on Proxmox

Method 1: NFS server on LXC container

Create a priviledged LXC container with:

mount=nfs,nesting=1

apt update

apt install nfs-kernel-server