Spaces:
Running
Running
File size: 6,831 Bytes
ea96d57 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Quantum Computing and Physics — SnapKitty</title>
<style>
:root {
--bg: #0a0a0f; --surface: #111118; --border: #1e1e2e;
--accent: #8b5cf6; --accent2: #06b6d4; --accent3: #10b981;
--text: #e2e8f0; --muted: #94a3b8; --dim: #64748b;
--warn: #f59e0b; --red: #ef4444;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
background: var(--bg); color: var(--text);
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
line-height: 1.6;
}
.hero {
text-align: center; padding: 48px 24px 32px; position: relative;
}
.hero::before {
content: ''; position: absolute; inset: 0;
background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(139,92,246,0.10) 0%, transparent 70%);
pointer-events: none;
}
.hero h1 { font-size: 2rem; font-weight: 700; letter-spacing: -0.02em; }
.hero h1 span { color: #f59e0b; }
.tagline { margin-top: 8px; color: var(--muted); font-size: 0.95rem; max-width: 640px; margin-inline: auto; }
.breadcrumb {
text-align: center; margin-top: 12px; font-size: 0.8rem;
}
.breadcrumb a { color: var(--accent); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px 48px; }
.repo-grid {
display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
gap: 14px; margin-top: 28px;
}
.repo-card {
background: var(--surface); border: 1px solid var(--border); border-radius: 10px;
padding: 18px 20px; transition: border-color 0.2s;
}
.repo-card:hover { border-color: #f59e0b; }
.repo-name a {
color: #f59e0b; text-decoration: none; font-weight: 600; font-size: 0.95rem;
}
.repo-name a:hover { text-decoration: underline; }
.repo-desc { color: var(--muted); font-size: 0.82rem; margin-top: 6px; line-height: 1.5; }
.repo-langs {
margin-top: 10px; display: flex; gap: 6px; flex-wrap: wrap;
}
.lang-tag {
padding: 2px 8px; border-radius: 4px; font-size: 0.65rem;
text-transform: uppercase; letter-spacing: 0.05em;
background: rgba(139,92,246,0.1); color: var(--dim); border: 1px solid var(--border);
}
.gh-link {
display: inline-block; margin-top: 8px; font-size: 0.75rem;
color: var(--dim); text-decoration: none;
}
.gh-link:hover { color: var(--text); }
.footer {
text-align: center; padding: 40px 24px; color: var(--dim); font-size: 0.78rem;
border-top: 1px solid var(--border); margin-top: 32px;
}
@media (max-width: 600px) {
.hero h1 { font-size: 1.5rem; }
.repo-grid { grid-template-columns: 1fr; }
}
</style>
</head>
<body>
<div class="hero">
<h1>⚛ <span>Quantum Computing and Physics</span></h1>
<p class="tagline">Topological quantum computing, Fibonacci anyons, quantum walks, and black hole physics. Formal proofs from algebra to hardware.</p>
<div class="breadcrumb"><a href="https://huggingface.co/spaces/Snapkitty/README">← Back to SnapKitty Collective</a></div>
</div>
<div class="container">
<div class="repo-grid">
<div class="repo-card">
<div class="repo-name"><a href="https://huggingface.co/Snapkitty/topological-quantum-computer">topological-quantum-computer</a></div>
<div class="repo-desc">Fibonacci-anyon topological quantum computing. Lean 4 proofs, SHA-520 cryptanalysis resource estimation.</div>
<div class="repo-langs"><span class="lang-tag">lean4</span><span class="lang-tag">python</span></div>
<a class="gh-link" href="https://github.com/SNAPKITTYWEST/topological-quantum-computer">GitHub →</a>
</div>
<div class="repo-card">
<div class="repo-name"><a href="https://huggingface.co/Snapkitty/quantum-kernel">quantum-kernel</a></div>
<div class="repo-desc">Quantum computational kernel. TDA-to-braid-to-lattice surgery pipeline for heavy-hex hardware.</div>
<div class="repo-langs"><span class="lang-tag">python</span><span class="lang-tag">qiskit</span></div>
<a class="gh-link" href="https://github.com/SNAPKITTYWEST/quantum-kernel">GitHub →</a>
</div>
<div class="repo-card">
<div class="repo-name"><a href="https://huggingface.co/Snapkitty/reverse-quantum-walk">reverse-quantum-walk</a></div>
<div class="repo-desc">Reverse quantum walk implementation for search and optimization on graph structures.</div>
<div class="repo-langs"><span class="lang-tag">python</span></div>
<a class="gh-link" href="https://github.com/SNAPKITTYWEST/reverse-quantum-walk">GitHub →</a>
</div>
<div class="repo-card">
<div class="repo-name"><a href="https://huggingface.co/Snapkitty/quantumap">quantumap</a></div>
<div class="repo-desc">Quantum-enhanced UMAP dimensionality reduction with topological data analysis.</div>
<div class="repo-langs"><span class="lang-tag">python</span></div>
<a class="gh-link" href="https://github.com/SNAPKITTYWEST/quantumap">GitHub →</a>
</div>
<div class="repo-card">
<div class="repo-name"><a href="https://huggingface.co/Snapkitty/black-hole-engine">black-hole-engine</a></div>
<div class="repo-desc">Computational engine for black hole physics. Hawking temperature, ISCO, photon sphere proofs.</div>
<div class="repo-langs"><span class="lang-tag">python</span><span class="lang-tag">lean4</span></div>
<a class="gh-link" href="https://github.com/SNAPKITTYWEST/black-hole-engine">GitHub →</a>
</div>
<div class="repo-card">
<div class="repo-name"><a href="https://huggingface.co/Snapkitty/sovereign-pirtm">sovereign-pirtm</a></div>
<div class="repo-desc">C++ compiler core with MLIR dialect, multiplicity functor, contractivity receipts, LLVM codegen.</div>
<div class="repo-langs"><span class="lang-tag">c++</span><span class="lang-tag">mlir</span></div>
<a class="gh-link" href="https://github.com/SNAPKITTYWEST/sovereign-pirtm">GitHub →</a>
</div>
<div class="repo-card">
<div class="repo-name"><a href="https://huggingface.co/Snapkitty/snapkitty-resonance-bridge">snapkitty-resonance-bridge</a></div>
<div class="repo-desc">Executable bridge: GKN quartic invariant to SUBLEQ machine code via ResonanceWord encoding.</div>
<div class="repo-langs"><span class="lang-tag">python</span><span class="lang-tag">asm</span></div>
<a class="gh-link" href="https://github.com/SNAPKITTYWEST/snapkitty-resonance-bridge">GitHub →</a>
</div>
</div>
</div>
<div class="footer">
<p>SnapKitty Collective — Sovereign AI Infrastructure</p>
<p style="margin-top:6px;">Copyright 2026 Jessica L. Williams / SNAPKITTYWEST</p>
</div>
</body>
</html> |