Skip to content

Instantly share code, notes, and snippets.

View LoggeL's full-sized avatar
🦆
Just pressing buttons

Logge LoggeL

🦆
Just pressing buttons
View GitHub Profile
@LoggeL
LoggeL / session-cost-report.html
Created February 19, 2026 11:50
InnovaVento Session Cost Analysis
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>InnovaVento — Session Cost Analysis</title>
<script src="https://cdn.jsdelivr.net/npm/chart.js@4.4.0/dist/chart.umd.min.js"></script>
<style>
:root {
--bg: #0d1117;
@LoggeL
LoggeL / analysis.md
Created February 19, 2026 09:17
Prequel Pitches: INFECTED (Kurzfilm) — Character-Descent Story Concepts

Video-Analyse: "Kurzfilm - Infected"

YouTube: https://youtu.be/6iNdfsbZWHs
Kanal: Logge (@LoggeL)
Genre: Post-Apokalypse / Zombie-Pandemie / Kurzfilm


1) Visuelle Analyse (Thumbnail & Branding)

@LoggeL
LoggeL / berman-analysis.md
Last active February 17, 2026 11:21
Matthew Berman OpenClaw Use Cases — Detailanalyse
@LoggeL
LoggeL / wahlomat-rlp.md
Created February 15, 2026 20:33
🗳️ Wahl-O-Mat BTW 2025 — Pragmatischer RLP-Bürger (Social Experiment)

🗳️ Wahl-O-Mat Bundestagswahl 2025 — Pragmatischer RLP-Bürger

Methodik

Alle 38 Thesen beantwortet aus Sicht eines pragmatischen, nicht-ideologischen Bürgers von Rheinland-Pfalz. Fokus: Was bringt dieses Bundesland langfristig voran?

RLP-Kontext: Grenzregion (LU/FR/BE), BASF Ludwigshafen, Ramstein, Weinbau, ländliche Struktur, Fachkräftemangel, Infrastrukturdefizite.


Alle 38 Thesen

@LoggeL
LoggeL / bella-italia-speisekarte.md
Last active February 15, 2026 17:15
Speisekarte Pizzeria Bella Italia, Hettenleidelheim

🍕 Pizzeria Bella Italia — Hettenleidelheim

Hauptstraße 44, 67310 Hettenleidelheim · Seit 1993
☎ 06351/37526 · 06351/122874
Montag Ruhetag
★ 4.8/5 (335 Bewertungen)

Liefergebühren

| Gebiet | Gebühr |

@LoggeL
LoggeL / aurora-alpha-hard-benchmark-report.md
Last active February 10, 2026 14:31
Aurora Alpha (OpenRouter) Hard Benchmark Report — GPT-4o-mini unmasked

Aurora Alpha — Hard Benchmark Report

Model: openrouter/aurora-alpha
Date: 2026-02-10
Benchmark: Hard questions (30 questions across 6 categories) + 26 knowledge cutoff probes
Evaluator: Automated analysis with manual verification + web-validated fact-checking


Executive Summary

def wer(ref, hyp ,debug=True):
r = ref.split()
h = hyp.split()
#costs will holds the costs, like in the Levenshtein distance algorithm
costs = [[0 for inner in range(len(h)+1)] for outer in range(len(r)+1)]
# backtrace will hold the operations we've done.
# so we could later backtrace, like the WER algorithm requires us to.
backtrace = [[0 for inner in range(len(h)+1)] for outer in range(len(r)+1)]
OP_OK = 0
@LoggeL
LoggeL / hanna.ipynb
Created July 29, 2024 14:19
HANNA.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@LoggeL
LoggeL / spells.json
Created January 7, 2020 19:44
LoL Spell DB
[
[
[
"charname",
"AllChampions"
],
[
"spell_name",
"SummonerSnowball"
],
@LoggeL
LoggeL / index.js
Last active October 28, 2021 14:41
PrimitiveJS Automation
const puppeteer = require('puppeteer')
const fs = require('fs');
// Hardcoded for 200 shapes
(async () => {
const browser = await puppeteer.launch({ headless: true })
const page = await browser.newPage()
await page.goto('https://ondras.github.io/primitive.js/', { waitUntil: 'networkidle0' })
const files = fs.readdirSync('img') // Input Folder
for (let i = 0; i < files.length; i++) {