Skip to content

Instantly share code, notes, and snippets.

@wezzybug
wezzybug / 001_initial_schema.sql
Created May 8, 2026 09:12
Bergwerk Idle — Supabase DB Schema (standalone)
-- ============================================
-- Bergwerk Idle — Supabase Datenbank-Schema
-- EINFACHE VERSION — kein Auth-Dependency
-- ============================================
-- Extension für UUIDs
CREATE EXTENSION IF NOT EXISTS "uuid-ossp";
-- 1. PLAYERS (statt auth.users — standalone)
CREATE TABLE IF NOT EXISTS public.profiles (
@wezzybug
wezzybug / index.html
Created May 8, 2026 08:25
Bergwerk Idle — Bugfixes (Ad-Boost, PWA, SW-Update, Prestige)
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="theme-color" content="#ffd700">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<link rel="manifest" href="manifest.json">
<link rel="icon" href="icons/icon-192x192.png" type="image/png">
@wezzybug
wezzybug / naruto-animation.html
Created May 8, 2026 07:30
Naruto CSS Animation - Believe It!
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Naruto – Believe It!</title>
<style>
:root {
--orange: #ff8c00;
--yellow: #ffd700;