Skip to content

Instantly share code, notes, and snippets.

View FreePhoenix888's full-sized avatar
Empty your mind, be formless, shapeless - like water

FreePhoenix888

Empty your mind, be formless, shapeless - like water
View GitHub Profile
@FreePhoenix888
FreePhoenix888 / how_to_unlock_bootloader_on_xiaomi_phone.md
Created December 21, 2025 08:25
How to relock bootloader on xiaomi phone

Guide: Returning to Official Stock MIUI and Locking Bootloader

Device Example: Redmi Note 8 (ginkgo)

This guide provides a clean, safe path to restore your Xiaomi device to factory settings and re-lock the bootloader.


⚠️ CRITICAL: Security & Anti-Brick Precautions

1. Region Mismatch = Hard Brick

@FreePhoenix888
FreePhoenix888 / xiaomi_stock_rom_messages_do_not_work.md
Last active December 21, 2025 09:56
Xiaomi Stock Rom Mesasges Do Not Work

If you find out you do not get messages and cannot send them when you are on a stock rom (at least it happened to me when I flashed stock rom and locked bootloader)

Open the Phone app and dial: ##4636## Go to Phone Information. Scroll to the bottom to find SMSC. Tap Refresh. If it stays blank, you need to find your carrier's SMSC number (Google "Carrier Name SMSC number") and enter it there, then tap Update

Try removing SMS permission for Message app and granting it again

@FreePhoenix888
FreePhoenix888 / copy_vault_data_to_another_namespace.js
Created March 10, 2026 09:44
Copy Vault Data To Another Namespace
(async () => {
// ⚠️ Вставь свой актуальный токен сюда
const TOKEN = "my vault token";
// В данном случае я переношу енвы из pkbbridge/dev в bnpl/pkbbridge/dev
const sourceBaseUrl = "https://vault-url.com/v1/secret/pkbbridge/dev/data";
const destBaseUrl = "https://vault-url.com/v1/secret/bnpl/pkbbridge/dev/data";
// Динамически собираем ключи прямо из DOM-дерева страницы
const keys = [...document.body.querySelectorAll('.list-item-row')].map(element => element.textContent.trim());