Skip to content

Instantly share code, notes, and snippets.

View deadYokai's full-sized avatar
🇺🇦
fckin tired of my life

MyNameIsKitsune deadYokai

🇺🇦
fckin tired of my life
View GitHub Profile
@deadYokai
deadYokai / download_ds_firmware.sh
Last active February 10, 2026 20:24
Simple downloader for DualSense controllers
#!/bin/bash
VID="054c"
DS_PID="0ce6"
DSE_PID="0df2"
DEVICES=("$VID:$DS_PID" "$VID:$DSE_PID")
DW_LINK="https://fwupdater.dl.playstation.net/fwupdater/"
JSON=$(curl -s "$DW_LINK/info.json" | sed 's/[[:space:]]//g')
DS_LAST=$(echo "$JSON" | grep -o '"FwUpdate0004LatestVersion":"[^"]*' | sed 's/.*:"\([^"]*\)/\1/')
@deadYokai
deadYokai / unpacker.py
Last active September 26, 2023 05:18
Adobe Installer Unpacker written on Python, place with products folder
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import json
import re
import os
import shutil
from bs4 import BeautifulSoup
from zipfile import ZipFile
@deadYokai
deadYokai / oukitelc18pro.dts
Last active August 2, 2022 20:29
Oukitel C18 Device Tree Source
/dts-v1/;
/ {
model = "MT6757";
compatible = "mediatek,MT6757";
interrupt-parent = <0x1>;
#address-cells = <0x2>;
#size-cells = <0x2>;
chosen {