Skip to content

Instantly share code, notes, and snippets.

View GrayJack's full-sized avatar
🦀

Eric Shimizu Karbstein GrayJack

🦀
View GitHub Profile
@TheRadziu
TheRadziu / ultimate-vita-comparison.md
Last active February 1, 2025 15:22
Ultimate Vita Comparison (Firmwares & Rips vs Dumps)

Due to so many misinformation, false claims and confusion that goes around the web I've decided to make this quick comparison of all most known backup enabling tools, hackable vita firmwares and which one you should be using and why.
Date of last update: 13.01.2020

NoNpDRM Rips vs Dumps

NoNpDRM Rips Vitamin / MaiDumpTool Dumps
All original files untouched
Support Retail DLCs
Support Ripped (NoNpDRM) DLCs
Support Dumped (Vitamin/Mai) DLCs 1
@AwlsomeAlex
AwlsomeAlex / init.rs
Created June 9, 2019 15:49
Small little Rust Executable to run as Linux Kernel /init when Statically Linked
use std::{thread, time};
fn main() {
let sleep_time = time::Duration::from_millis(1000000);
let now = time::Instant::now();
println!("\x1B[33mHello from Rust!\x1B[0m");
thread::sleep(sleep_time);
assert!(now.elapsed() >= sleep_time);