Skip to content

Instantly share code, notes, and snippets.

View timrolls's full-sized avatar

Tim Rolls timrolls

View GitHub Profile
vec3 getNormal(vec3 p){
//sampling around the point
vec2 e = vec2(0.01, 0.0);
float d = map(p);
vec3 n = d - vec3(
map(p-e.xyy),
map(p-e.yxy),
map(p-e.yyx));
return normalize(n);
}
@infval
infval / emuparadise.download.user.js
Last active August 4, 2025 15:06
emuparadise.me download workaround (Most games + Sega Dreamcast, Books/Comics/Guides/Magazines)
// ==UserScript==
// @name EmuParadise Download Workaround
// @version 1.2.3
// @description Replaces the download button link with a working one
// @author infval (Eptun)
// @match https://www.emuparadise.me/*/*/*
// @grant none
// ==/UserScript==
// https://www.reddit.com/r/Piracy/comments/968sm6/a_script_for_easy_downloading_of_emuparadise_roms/