Skip to content

Instantly share code, notes, and snippets.

View bestlinuxgamers's full-sized avatar

Julian bestlinuxgamers

View GitHub Profile
@Jofkos
Jofkos / UUIDFetcher.java
Last active May 2, 2024 09:39
UUIDFetcher
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URL;
import java.util.HashMap;
import java.util.Map;
import java.util.UUID;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.function.Consumer;
@AwesamLinux
AwesamLinux / MoM_fix_videos.sh
Created October 31, 2019 18:40
Man of Medan Video Fix
echo "Fixing Videos Please Wait..."
echo "Processing File 01/19"
mv SMG019/Content/Movies/Premonitions/Premonition1.mp4 SMG019/Content/Movies/Premonitions/Premonition1.bak
xxd -s 0x10 SMG019/Content/Movies/Premonitions/Premonition1.bak | xxd -r -s -0x10 > SMG019/Content/Movies/Premonitions/Premonition1.mp4
echo "Processing File 02/19"
mv SMG019/Content/Movies/Premonitions/Premonition2.mp4 SMG019/Content/Movies/Premonitions/Premonition2.bak
xxd -s 0x10 SMG019/Content/Movies/Premonitions/Premonition2.bak | xxd -r -s -0x10 > SMG019/Content/Movies/Premonitions/Premonition2.mp4
echo "Processing File 03/19"
mv SMG019/Content/Movies/Premonitions/Premonition3.mp4 SMG019/Content/Movies/Premonitions/Premonition3.bak
xxd -s 0x10 SMG019/Content/Movies/Premonitions/Premonition3.bak | xxd -r -s -0x10 > SMG019/Content/Movies/Premonitions/Premonition3.mp4