Skip to content

Instantly share code, notes, and snippets.

View senko's full-sized avatar

Senko Rašić senko

View GitHub Profile
@senko
senko / index.html
Created July 25, 2026 20:52
Minecraft clone by Opus 5
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no">
<title>VoxelCraft</title>
<link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><rect width='16' height='16' fill='%237a5230'/><rect width='16' height='6' fill='%235d9c40'/></svg>">
<style>
* { margin:0; padding:0; box-sizing:border-box; }
html,body { width:100%; height:100%; overflow:hidden; background:#000; }
@senko
senko / index.html
Created July 25, 2026 20:52
Biplane dogfight game by Opus 5
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=no">
<title>Ace of the Marne — WW1 Dogfight</title>
<link rel="icon" href="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Crect width='32' height='32' fill='%230e0f0c'/%3E%3Cg fill='%23d8b45c'%3E%3Crect x='3' y='12' width='26' height='2.6'/%3E%3Crect x='6' y='18' width='20' height='2.2'/%3E%3Crect x='14.6' y='6' width='2.8' height='20'/%3E%3Crect x='11' y='24' width='10' height='2'/%3E%3C/g%3E%3C/svg%3E">
<style>
:root{
--brass:#d8b45c; --brass-dim:#8d7436; --ink:#0e0f0c; --linen:#e6dcc3;
@senko
senko / index.html
Created July 25, 2026 09:26
RTS game by Opus 5
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Ironhold — Realtime Strategy</title>
<style>
:root{
--panel:#1b1f2a;
--panel2:#232937;
@senko
senko / index.html
Created July 20, 2026 11:49
Flying simulator by Qwen 3.6 Max (preview)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="data:,">
<title>Sky Ace — WWI Biplane Dogfight</title>
<style>
* { margin:0; padding:0; box-sizing:border-box; }
html,body { width:100%; height:100%; overflow:hidden; background:#87b7e0;
@senko
senko / index.html
Last active July 20, 2026 09:37
Minecraft clone by Qwen 3.8-Max (preview)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>VoxelCraft</title>
<style>
html, body { margin: 0; padding: 0; height: 100%; overflow: hidden; background: #000;
font-family: 'Segoe UI', system-ui, sans-serif; overscroll-behavior: none; }
canvas#game { display: block; width: 100%; height: 100%; }
@senko
senko / index.html
Created July 20, 2026 07:12
RTS game by Qwen 3.8 Max Preview
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Tiny Realms — Mini RTS</title>
<link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='80' font-size='80'>⚔️</text></svg>">
<style>
:root{
--gold:#e8c66a; --gold-dim:#a8894a; --panel:#241c0e; --panel2:#33291a;
@senko
senko / index.html
Created July 17, 2026 07:08
Minecraft clone by Kimi K3
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>VoxelCraft — a tiny Minecraft clone</title>
<style>
* { margin:0; padding:0; box-sizing:border-box; }
html,body { width:100%; height:100%; overflow:hidden; background:#000;
font-family:'Segoe UI',system-ui,-apple-system,sans-serif; }
@senko
senko / index.html
Created July 17, 2026 07:07
Flying simulator by Kimi K3
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>CRIMSON SKIES — WW1 Dogfight</title>
<style>
html,body{margin:0;padding:0;overflow:hidden;background:#0a0e14;height:100%;
font-family:'Courier New',Courier,monospace;-webkit-user-select:none;user-select:none;}
canvas.game{display:block;}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width,initial-scale=1"/>
<title>Little Kingdoms — Tiny RTS</title>
<link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>🏰</text></svg>">
<link href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;700;800;900&display=swap" rel="stylesheet">
<style>
*{margin:0;padding:0;box-sizing:border-box}
@senko
senko / index.html
Created July 11, 2026 14:57
Minecraft clone by GLM-5.2
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Minecraft Clone</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body {
width: 100%; height: 100%; overflow: hidden; background: #000;