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 April 29, 2026 13:45
RTS game by OpenAI GPT-5.5
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Frontier Command - Single File RTS</title>
<style>
:root {
--ink: #e8f4dc;
--muted: #9eb5a6;
@senko
senko / index.html
Created April 29, 2026 13:44
RTS game by Qwen3.6 Max
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mini RTS</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: #111; overflow: hidden; font-family: 'Segoe UI', Arial, sans-serif; user-select: none; }
canvas { display: block; cursor: crosshair; }
@senko
senko / index.html
Created April 29, 2026 13:43
RTS game by Kimi K2.6
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>RTS Game</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; user-select: none; }
body { background: #0a0a0a; overflow: hidden; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; color: #eee; }
#gameCanvas { display: block; cursor: crosshair; }
@senko
senko / index.html
Created April 29, 2026 13:42
RTS game by DeepSeek V4 Pro
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>RTS Game</title>
<style>
*{margin:0;padding:0;box-sizing:border-box;}
body{background:#0a0a14;overflow:hidden;font-family:'Segoe UI',Arial,sans-serif;user-select:none;-webkit-user-select:none;cursor:default;}
canvas{display:block;}
@senko
senko / index.html
Created April 22, 2026 19:03
Qwen 3.6-27B Q4 zero-shotting Minesweeper
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Minesweeper</title>
<style>
*, *::before, *::after {
margin: 0;
padding: 0;
@senko
senko / index.html
Created April 16, 2026 15:32
RTS game by Opus 4.7
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Iron Dominion — RTS</title>
<style>
:root {
--bg-0: #0a0d10;
--bg-1: #151a20;
--bg-2: #1e252d;
@senko
senko / pingu-prompt.md
Created March 21, 2026 16:08
Pingu website checker initial prompt

First let's scope this out:

  1. internal tool - login (username+password), but no registration; no "reset password" flow either, I can always access the db manually if I really need to
  2. nice, simple, functional web interface to list web URLs that are checked, with their status (up or down) and last check, ability to add, modify or remove checks. on details of every check, show checks history for the past 24h and availability chart for longer periods in the past.
  3. for each config: 1. url to hit, 2. method (default is GET); 3. headers (if any); 4. body (if method is POST or PUT); allowed statuses (tags/labels with multiple select or can be manually entered; default 200, 201, 204); timeout (default 10s)
  4. tech : backend: python (use "uv" for managing the project), django for backend, use sqlite for database. django management command that will run every minute and should run the checks (the checks themselves should be in parallel to avoid spending too much time, so use async for just that small part - every
@senko
senko / index.html
Created March 5, 2026 20:39
RTS game by GPT-5.4
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Frontier Command RTS</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700&family=Rajdhani:wght@400;600;700&display=swap" rel="stylesheet" />
<style>
@senko
senko / index.html
Created February 5, 2026 19:17
RTS game by Opus 4.6
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Conquest RTS</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { width: 100%; height: 100%; overflow: hidden; background: #000; font-family: 'Segoe UI', Arial, sans-serif; }
#game { display: block; cursor: default; }
@senko
senko / index.html
Created February 5, 2026 19:16
RTS game by Codex 5.3
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Mini RTS</title>
<style>
:root {
--bg: #0f151d;
--panel: #1c2733;