Skip to content

Instantly share code, notes, and snippets.

View Windowsfreak's full-sized avatar
🏃‍♂️
Enjoy life as much as you can!

Björn Eberhardt Windowsfreak

🏃‍♂️
Enjoy life as much as you can!
View GitHub Profile
@Windowsfreak
Windowsfreak / AurumPartnerExport.js
Created February 13, 2026 14:57
Aurum-Partnerstatistik-Export
(async function () {
class AurumCryptor {
#password;
#iterations;
#encoder;
#decoder;
constructor(password, iterations = 150000) {
if (!password) {
throw new Error("Password is required for key derivation");
@Windowsfreak
Windowsfreak / AurumTxTaxCalculator.js
Last active February 9, 2026 22:38
Aurum-Verdienstrechner mit jährlicher Steuerauswertung
(function () {
let targetFinal = {
main: 0,
affiliate: 0,
invest: 0
};
let hideCreditCard = false;
let correctionsText = "";
const EXCHANGE_RATES = { "2025-01-02": 1.0321, "2025-01-03": 1.0299, "2025-01-06": 1.0426, "2025-01-07": 1.0393, "2025-01-08": 1.0286, "2025-01-09": 1.0305, "2025-01-10": 1.0304, "2025-01-13": 1.0198, "2025-01-14": 1.0245, "2025-01-15": 1.03, "2025-01-16": 1.0272, "2025-01-17": 1.0298, "2025-01-20": 1.0316, "2025-01-21": 1.0357, "2025-01-22": 1.0443, "2025-01-23": 1.0404, "2025-01-24": 1.0472, "2025-01-27": 1.053, "2025-01-28": 1.0421, "2025-01-29": 1.0396, "2025-01-30": 1.0403, "2025-01-31": 1.0393, "2025-02-03": 1.0274, "2025-02-04": 1.0335, "2025-02-05": 1.0422, "2025-02-06": 1.036, "2025-02-07": 1.0377, "2025-02-10": 1.032, "2025-02-11": 1.0324, "2025-02-12": 1.037, "2025-02-13": 1.039, "2025-02-14": 1.0478, "2025-02-17": 1.0473, "2025-02-18": 1.0447, "2025-02-19": 1.0434, "2025-02-20": 1.0443, "2025-02-21": 1.0465, "2025-02-24": 1.0466,
@Windowsfreak
Windowsfreak / playground-export.py
Created January 25, 2025 06:34
Playground Downloader
import os
import json
import csv
from os import mkdir
import time
import requests
from datetime import datetime
from PIL import Image
from io import BytesIO
@Windowsfreak
Windowsfreak / PowerCone.md
Last active February 28, 2021 16:51
This Gist is about my recently created PowerCone on Tinkercad: https://www.tinkercad.com/things/jIP9HxEBAAM-powercone

Keybase proof

I hereby claim:

To claim this, I am signing this object:

@Windowsfreak
Windowsfreak / Geohash.php
Last active January 30, 2016 11:56 — forked from riaf/Geohash.php
<?php
/**
* Geohash
*
* @author Keisuke SATO
* @license MIT License
*
* # Based
* http://github.com/davetroy/geohash-js/blob/master/geohash.js
* Geohash library for Javascript