Skip to content

Instantly share code, notes, and snippets.

View andrast0th's full-sized avatar
🐷
Focusing

Andras Toth andrast0th

🐷
Focusing
  • Cluj-Napoca, Romania
View GitHub Profile
@andrast0th
andrast0th / index.html
Created March 11, 2026 17:22
Photo upload using phone
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Camera Upload</title>
<style>
* {
box-sizing: border-box;
margin: 0;
@andrast0th
andrast0th / calc-order-summary.js
Last active April 6, 2024 12:23
emag.ro API, calculate total money spent
// use nodejs to run this :)
// login to emag with a browser, find a req, copy the value of the cookie header here
const COOKIE_VAL = "FILL_ME_BABY"
const USER_AGENT = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36";
const API_URL = "https://www.emag.ro/history/shopping/{pageNo}?source=front&time=older";
fetchAllOrders().then(allOrders => {
let total = 0;