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 March 2, 2026 18:43
Aurum-Verdienstrechner mit jährlicher Steuerauswertung
(function () {
let targetFinal = {
main: 0,
affiliate: 0,
invest: 0
};
let hideCreditCard = false;
let useUSD = false;
const c = () => useUSD ? "USD" : "EUR";
let correctionsText = "";
@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