-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
255 lines (218 loc) · 11.6 KB
/
index.html
File metadata and controls
255 lines (218 loc) · 11.6 KB
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>hcBakeman | Prompt Engineer</title>
<style>
:root {
--purple-glow: #bc13fe;
--uranium-green: #4ef11a;
--text-light: #f0eaff;
--accent: #d199ff;
}
body, html {
margin: 0; padding: 0; width: 100%; height: 100%;
background-color: #000; color: var(--text-light);
font-family: 'Inter', -apple-system, sans-serif;
overflow: hidden;
}
/* --- LOADER --- */
#loader {
position: fixed; top: 0; left: 0; width: 100%; height: 100%;
background: #000; z-index: 100; display: flex; flex-direction: column;
align-items: center; justify-content: center;
transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.loader-text {
color: var(--purple-glow); font-family: monospace; letter-spacing: 5px;
animation: pulse 1.5s infinite; margin-bottom: 20px;
}
@keyframes pulse { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } }
/* --- DYNAMIC BACKGROUND --- */
#bg-container {
position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
z-index: 0; pointer-events: none; opacity: 0;
transition: opacity 2.5s ease-in-out;
background: #000;
}
#bg-frame {
width: 100%; height: 100%; border: none;
filter: none;
transform: none;
}
/* --- CONTENT --- */
.content-wrapper {
position: relative; z-index: 10; min-height: 100vh;
background: radial-gradient(circle at center, rgba(15, 5, 26, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
overflow-y: auto; display: none;
opacity: 0;
transition: opacity 1s ease;
}
.container { max-width: 1000px; margin: 0 auto; padding: 80px 20px; text-align: center; }
/* --- URANIUM TITLE --- */
@keyframes uraniumPulse {
0%, 100% { text-shadow: 0 0 15px var(--purple-glow), 0 0 5px var(--uranium-green); color: #fff; }
50% { text-shadow: 0 0 35px var(--purple-glow), 0 0 25px var(--uranium-green), 0 0 10px #fff; color: #e0ffcc; }
}
header h1 {
font-size: 5.5rem; margin: 0; letter-spacing: -3px; font-family: monospace;
animation: uraniumPulse 4s infinite ease-in-out;
cursor: default;
}
.tagline { color: var(--accent); font-weight: bold; margin-bottom: 60px; font-size: 1.3rem; display: block; opacity: 0.8; }
/* --- REPO CARDS & LAYOUT --- */
.bio-box, #repo-grid, h2 { opacity: 0; transform: translateY(30px); transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1); }
.visible { opacity: 1 !important; transform: translateY(0) !important; }
.bio-box {
background: rgba(26, 11, 46, 0.4); backdrop-filter: blur(20px);
border: 1px solid rgba(188, 19, 254, 0.3);
padding: 2.5rem; border-radius: 24px; max-width: 750px; margin: 0 auto 80px;
transition: all 0.4s ease;
}
.bio-box:hover {
border-color: var(--purple-glow);
box-shadow: 0 0 40px rgba(188, 19, 254, 0.2);
background: rgba(26, 11, 46, 0.6);
}
#repo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); gap: 30px; }
.repo-card {
/* Consistent solid-color look from the start */
background: rgba(20, 20, 22, 0.95);
backdrop-filter: blur(15px);
border: 1px solid rgba(255, 255, 255, 0.12);
border-radius: 20px;
padding: 30px;
text-align: left;
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
display: flex;
flex-direction: column;
justify-content: space-between;
}
.repo-card:hover {
background: rgba(30, 25, 40, 0.98);
border-color: var(--purple-glow);
transform: translateY(-8px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(188, 19, 254, 0.15);
}
.repo-title {
font-weight: bold; color: #fff; font-size: 1.3rem; margin-bottom: 10px;
text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.repo-desc {
color: #d1c4e9; font-size: 0.95rem; line-height: 1.5; margin-bottom: 25px;
text-shadow: 0 1px 2px rgba(0,0,0,0.8);
}
.repo-links { display: flex; gap: 15px; }
.btn { padding: 10px 20px; border-radius: 12px; text-decoration: none; font-size: 0.85rem; font-weight: 700; transition: 0.3s; text-transform: uppercase; letter-spacing: 1px; }
.btn-github { background: rgba(255, 255, 255, 0.1); color: white; border: 1px solid rgba(255,255,255,0.1); }
.btn-github:hover { background: rgba(255, 255, 255, 0.2); }
.btn-live { background: var(--purple-glow); color: white; box-shadow: 0 5px 15px rgba(188, 19, 254, 0.4); }
footer { margin-top: 120px; opacity: 0.4; font-size: 0.8rem; padding-bottom: 60px; }
.counter-wrapper { margin-top: 20px; filter: hue-rotate(280deg) brightness(1.2) contrast(1.2); opacity: 0.7; transition: opacity 0.3s; }
.counter-wrapper:hover { opacity: 1; }
.counter-label { font-family: monospace; font-size: 0.7rem; color: var(--purple-glow); margin-bottom: 8px; display: block; letter-spacing: 2px; }
</style>
</head>
<body>
<div id="loader">
<div class="loader-text">INITIALIZING HEAVY ASSETS...</div>
<div id="load-status" style="font-size: 0.7rem; color: rgba(255,255,255,0.4); font-family: monospace;">WAITING FOR HANDSHAKE</div>
</div>
<div id="bg-container">
<iframe id="bg-frame" src="https://hcbakeman.github.io/comfy/?m=bloom&c=1000&s=0.3&z=1&h=304&ah=0&g=1&gi=38&gr=3.6&p=1&u=0&mm=follow&mr=250&mst=0.6&fs=0.1&fsp=0.24&hb=4&bgs=black"></iframe>
</div>
<div class="content-wrapper" id="main-content">
<div class="container">
<header>
<h1 id="main-title" data-value="hcBakeman">hcBakeman</h1>
<span id="main-tagline" class="tagline" data-value="Prompt Engineer • Logic Architect • Best of the Best"></span>
</header>
<section class="bio-box" id="bio">
<div id="punchline">✨ "While you were still typing 'Hello,' I already refactored the weights."</div>
</section>
<h2 id="repo-header" style="margin-bottom: 40px; letter-spacing: 4px; font-size: 0.9rem; opacity: 0.6;">SYSTEM_REPOS</h2>
<div id="repo-grid"></div>
<footer>
<div>© 2026 hcBakeman // STATUS: BEST OF THE BEST</div>
<div class="counter-wrapper">
<span class="counter-label">NEURAL_NET_PENETRATIONS:</span>
<div id="sfcqrnne7j9sj1urm24nb2aaysjln3b7mh6"></div>
<script type="text/javascript" src="https://counter1.optistats.ovh/private/counter.js?c=qrnne7j9sj1urm24nb2aaysjln3b7mh6&down=async" async></script>
<noscript><a href="https://www.freecounterstat.com" title="website counter code"><img src="https://counter1.optistats.ovh/private/freecounterstat.php?c=qrnne7j9sj1urm24nb2aaysjln3b7mh6" border="0" title="website counter code" alt="website counter code"></a></noscript>
</div>
</footer>
</div>
</div>
<script>
const letters = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789%&#$";
const punchlines = [
"While you were still typing 'Hello,' I already refactored the weights.",
"I don't just use AI; I provide the logic it was missing.",
"Prompt engineering isn't a hobby, it's a precision strike.",
"If it’s in the latent space, I’ve already found it."
];
function decodeEffect(element) {
let iteration = 0;
const originalValue = element.dataset.value;
let interval = setInterval(() => {
element.innerText = originalValue.split("").map((l, i) => i < iteration ? originalValue[i] : letters[Math.floor(Math.random() * letters.length)]).join("");
if (iteration >= originalValue.length) clearInterval(interval);
iteration += 1 / 3;
}, 30);
}
async function startSite() {
const loader = document.getElementById('loader');
const bgContainer = document.getElementById('bg-container');
const mainContent = document.getElementById('main-content');
document.getElementById('load-status').innerText = "RENDERING COMPLETE";
loader.style.opacity = '0';
setTimeout(() => {
loader.style.display = 'none';
bgContainer.style.opacity = '1';
mainContent.style.display = 'block';
setTimeout(() => {
mainContent.style.opacity = '1';
document.body.style.overflow = 'auto';
decodeEffect(document.getElementById('main-title'));
setTimeout(() => decodeEffect(document.getElementById('main-tagline')), 500);
setTimeout(() => {
document.getElementById('bio').classList.add('visible');
document.getElementById('repo-header').classList.add('visible');
document.getElementById('repo-grid').classList.add('visible');
}, 1000);
}, 100);
}, 800);
}
const bgFrame = document.getElementById('bg-frame');
let isStarted = false;
bgFrame.onload = () => proceedToBoot();
function proceedToBoot() {
if (!isStarted) {
isStarted = true;
document.getElementById('load-status').innerText = "CALIBRATING RENDERER...";
setTimeout(startSite, 1800);
}
}
setTimeout(() => { if (!isStarted) proceedToBoot(); }, 5000);
async function fetchRepos() {
try {
const res = await fetch('https://api.github.com/users/hcBakeman/repos?sort=updated');
const repos = await res.json();
const grid = document.getElementById('repo-grid');
grid.innerHTML = '';
repos.forEach(repo => {
if (repo.name.toLowerCase().includes('hcbakeman.github.io')) return;
const card = document.createElement('div');
card.className = 'repo-card';
const liveLink = repo.homepage ? `<a href="${repo.homepage}" target="_blank" class="btn btn-live">Live Demo</a>` : '';
card.innerHTML = `<div><div class="repo-title">${repo.name}</div><p class="repo-desc">${repo.description || 'Accessing encrypted data...'}</p></div><div class="repo-links"><a href="${repo.html_url}" target="_blank" class="btn btn-github">GitHub</a>${liveLink}</div>`;
grid.appendChild(card);
});
} catch (e) {}
}
document.getElementById('punchline').innerText = `✨ "${punchlines[Math.floor(Math.random() * punchlines.length)]}"`;
fetchRepos();
</script>
</body>
</html>