Skip to content

Instantly share code, notes, and snippets.

View miladj3's full-sized avatar
💭
I loved microsoft

m̷̠̺̾̏į̴̛̙͑l̴̠͙͛ä̸̞͉́͝ḓ̸͙́ jafari miladj3

💭
I loved microsoft
View GitHub Profile
@miladj3
miladj3 / worker.js
Created September 20, 2025 18:45 — forked from ircfspace/worker.js
Simple GitHub Raw Proxy Worker
export default {
async fetch(request) {
const url = new URL(request.url);
const path = url.pathname.replace(/^\/+/, "");
const parts = path.split("/");
if (parts.length < 4) {
return new Response("Usage: /owner/repo/branch/path/to/file.ext", { status: 400 });
}
const [owner, repo, branch, ...filePathParts] = parts;
const filePath = filePathParts.join("/");
@miladj3
miladj3 / console_easy_excute.js
Created September 29, 2025 08:30 — forked from SamadiPour/console_easy_excute.js
Snappfood Spent money
// Copy paste this line in your browser console to run the script and get the result
fetch('https://gist.githubusercontent.com/SamadiPour/a18b1e186deac76c4a95fa108d02a6ea/raw/snappfood_enhanced.js').then(r => r.text()).then(code => eval(code));