-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
421 lines (395 loc) · 16 KB
/
Copy pathindex.html
File metadata and controls
421 lines (395 loc) · 16 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
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Knacketho · Blogs</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=IBM+Plex+Mono:wght@400;500&family=Inter:wght@400;500&family=Space+Grotesk:wght@500;600;700&display=swap" rel="stylesheet" />
<style>
:root {
--bg: #F7F9FB;
--white: #FFFFFF;
--ink: #111820;
--ink2: #3D5166;
--muted: #8096A8;
--border: #DDE5EC;
--accent: #0055CC;
--accent-bg:#EBF2FF;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
background: var(--bg); color: var(--ink);
font-family: 'Inter', sans-serif; font-size: 15px;
line-height: 1.7; min-height: 100vh;
-webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
/* NAV */
.nav {
background: var(--white); border-bottom: 1px solid var(--border);
padding: 0 2.5rem; display: flex; align-items: center;
justify-content: space-between; height: 56px;
position: sticky; top: 0; z-index: 50;
}
.nav-logo {
font-family: 'Space Grotesk', sans-serif;
font-weight: 700; font-size: 1.1rem; color: var(--ink);
}
.nav-logo span { color: var(--accent); }
.nav-hint {
font-family: 'IBM Plex Mono', monospace;
font-size: 0.72rem; color: var(--muted); letter-spacing: 0.04em;
}
/* HEADER */
.header {
background: var(--white); border-bottom: 1px solid var(--border);
padding: 3.5rem 2.5rem 3rem; text-align: center;
}
.header-kicker {
font-family: 'IBM Plex Mono', monospace;
font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
color: var(--accent); margin-bottom: 1rem;
}
.header-title {
font-family: 'Space Grotesk', sans-serif;
font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 700;
line-height: 1.2; color: var(--ink); margin-bottom: 0.9rem;
letter-spacing: -0.02em;
}
.header-desc {
color: var(--ink2); font-size: 0.95rem;
max-width: 500px; margin: 0 auto; line-height: 1.7;
}
/* MAIN */
.main { max-width: 820px; margin: 0 auto; padding: 3rem 2rem 6rem; }
/* FEATURED CARD */
.featured-card {
display: flex; align-items: center; gap: 1.2rem;
background: var(--white);
border: 1px solid var(--border);
border-left: 4px solid var(--accent);
border-radius: 10px;
padding: 1.4rem 1.6rem;
margin-bottom: 2rem;
text-decoration: none;
transition: border-color 0.15s, box-shadow 0.15s, transform 0.12s;
}
.featured-card:hover {
border-color: var(--accent);
box-shadow: 0 4px 16px rgba(0,85,204,0.1);
transform: translateY(-1px);
}
.featured-left { flex: 1; min-width: 0; }
.featured-label {
font-family: 'IBM Plex Mono', monospace;
font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase;
color: var(--accent); margin-bottom: 0.4rem;
}
.featured-title {
font-family: 'Space Grotesk', sans-serif;
font-size: 1.05rem; font-weight: 700;
color: var(--ink); margin-bottom: 0.35rem; line-height: 1.3;
transition: color 0.15s;
}
.featured-card:hover .featured-title { color: var(--accent); }
.featured-desc {
font-size: 0.83rem; color: var(--ink2); line-height: 1.6; margin-bottom: 0.75rem;
}
.featured-foot {
display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap;
}
.featured-arrow {
flex-shrink: 0; color: var(--muted);
transition: color 0.15s, transform 0.15s;
}
.featured-card:hover .featured-arrow { color: var(--accent); transform: translateX(3px); }
/* SEARCH */
.toolbar {
display: flex; align-items: center; gap: 1rem;
flex-wrap: wrap; margin-bottom: 2rem;
}
.search-wrap { position: relative; flex: 1; min-width: 200px; }
.search-ico {
position: absolute; left: 0.85rem; top: 50%;
transform: translateY(-50%); color: var(--muted); pointer-events: none;
}
#q {
width: 100%; background: var(--white); border: 1px solid var(--border);
border-radius: 8px; color: var(--ink);
font-family: 'Inter', sans-serif; font-size: 0.88rem;
padding: 0.7rem 1rem 0.7rem 2.4rem; outline: none;
transition: border-color 0.15s, box-shadow 0.15s;
}
#q::placeholder { color: var(--muted); }
#q:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0,85,204,0.1); }
.count {
font-family: 'IBM Plex Mono', monospace;
font-size: 0.72rem; color: var(--muted); white-space: nowrap;
}
/* CARDS */
.list { list-style: none; }
.card {
display: flex; align-items: flex-start; gap: 1.2rem;
background: var(--white); border: 1px solid var(--border);
border-radius: 10px; padding: 1.5rem 1.6rem; margin-bottom: 0.75rem;
transition: border-color 0.15s, box-shadow 0.15s, transform 0.12s;
cursor: pointer;
}
.card:hover {
border-color: var(--accent);
box-shadow: 0 4px 16px rgba(0,85,204,0.08);
transform: translateY(-1px);
}
.card-num {
font-family: 'IBM Plex Mono', monospace;
font-size: 0.68rem; color: var(--muted);
padding-top: 0.3rem; min-width: 22px; flex-shrink: 0;
}
.card-body { flex: 1; min-width: 0; }
.card-title {
font-family: 'Space Grotesk', sans-serif;
font-size: 1.02rem; font-weight: 600; color: var(--ink);
margin-bottom: 0.35rem; line-height: 1.35;
transition: color 0.15s;
}
.card:hover .card-title { color: var(--accent); }
.card-excerpt {
font-size: 0.84rem; color: var(--ink2); line-height: 1.6;
margin-bottom: 0.75rem;
display: -webkit-box; -webkit-line-clamp: 2;
-webkit-box-orient: vertical; overflow: hidden;
}
.card-foot {
display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap;
}
.tag {
font-family: 'IBM Plex Mono', monospace; font-size: 0.65rem;
letter-spacing: 0.06em; color: var(--accent); background: var(--accent-bg);
padding: 0.15rem 0.55rem; border-radius: 4px; font-weight: 500;
}
.dot { color: var(--border); }
.card-date, .card-read {
font-family: 'IBM Plex Mono', monospace; font-size: 0.68rem; color: var(--muted);
}
.file-badge {
display: flex; align-items: center; gap: 0.3rem;
font-family: 'IBM Plex Mono', monospace; font-size: 0.65rem;
color: var(--muted); margin-left: auto;
}
.card-arrow {
flex-shrink: 0; color: var(--muted); padding-top: 0.2rem;
transition: color 0.15s, transform 0.15s;
}
.card:hover .card-arrow { color: var(--accent); transform: translateX(3px); }
/* EMPTY */
.empty {
text-align: center; padding: 4rem 1rem; color: var(--muted);
font-family: 'IBM Plex Mono', monospace; font-size: 0.8rem; display: none;
}
.empty strong {
display: block; font-family: 'Space Grotesk', sans-serif;
font-size: 1rem; color: var(--ink2); margin-bottom: 0.4rem; font-weight: 600;
}
/* FOOTER */
footer {
border-top: 1px solid var(--border); background: var(--white);
text-align: center; padding: 1.6rem;
font-family: 'IBM Plex Mono', monospace; font-size: 0.7rem; color: var(--muted);
}
@media (max-width: 560px) {
.nav, .header { padding-left: 1.2rem; padding-right: 1.2rem; }
.main { padding: 2rem 1.2rem 5rem; }
.file-badge { display: none; }
}
</style>
</head>
<body>
<nav class="nav">
<span class="nav-logo">knacketho<span>.blogs</span></span>
<span class="nav-hint">learning & development</span>
</nav>
<header class="header">
<div class="header-kicker">Knowledge · Practice · Growth</div>
<h1 class="header-title">Knacketho Blogs</h1>
<p class="header-desc">
Ideas, experiences, and learnings across cloud architecture, engineering,
and technology written to help others think through real problems.
Each article includes downloadable resources.
</p>
</header>
<main class="main">
<!-- FEATURED: AI TRUTH SEEKER -->
<a class="featured-card"
href="https://knacketho.github.io/ai-truth-seeker/"
target="_blank" rel="noopener">
<div class="featured-left">
<div class="featured-label">Featured · Presentation</div>
<div class="featured-title">AI Truth Seeker</div>
<div class="featured-desc">
An interactive presentation exploring AI, truth, and responsible adoption.
</div>
<div class="featured-foot">
<span class="tag">Microsoft</span>
<span class="tag">AI</span>
<span class="tag">Presentation</span>
<span class="dot">·</span>
<span class="card-read">knacketho.github.io</span>
</div>
</div>
<div class="featured-arrow">
<svg width="18" height="18" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2">
<path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 0 1-2h6"/>
<polyline points="15 3 21 3 21 9"/>
<line x1="10" y1="14" x2="21" y2="3"/>
</svg>
</div>
</a>
<div class="toolbar">
<div class="search-wrap">
<svg class="search-ico" width="15" height="15" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2">
<circle cx="11" cy="11" r="8"/><path d="m21 21-4.35-4.35"/>
</svg>
<input id="q" type="text" placeholder="Search articles…" autocomplete="off" />
</div>
<span class="count" id="count">3 articles</span>
</div>
<!--
════════════════════════════════════════════════════
HOW TO ADD AN ARTICLE
────────────────────────────────────────────────────
1. Create a new folder: art4/
2. Inside it: art4/index.html (the article)
art4/files/ (downloads)
3. Copy an <li> block below, paste it at the TOP
4. Update: href, data-search, card-num, title,
excerpt, tags, date, read time, file count
5. Update the count text above (e.g. "4 articles")
════════════════════════════════════════════════════
-->
<ul class="list" id="list">
<!-- ARTICLE 3 -->
<li>
<a class="card" href="art3/index.html"
data-search="google cloud setup gcp landing zone foundation terraform org policy iam shared vpc resource hierarchy folders projects security command center cloud kms autokey logging monitoring hybrid connectivity ha vpn billing">
<span class="card-num">03</span>
<div class="card-body">
<div class="card-title">Google Cloud Setup: The Guided Foundation Most Teams Skip</div>
<div class="card-excerpt">
A practitioner's walkthrough of the console-guided flow that compiles your org, IAM,
billing, resource hierarchy, security, central logging, and Shared VPC into deployable
Terraform. Covers the three foundation tiers, the ten-task sequence, the hierarchy
decision that's hard to undo, and when to reach for it.
</div>
<div class="card-foot">
<span class="tag">GCP</span>
<span class="tag">Foundations</span>
<span class="tag">Terraform</span>
<span class="tag">Landing Zone</span>
<span class="dot">·</span>
<span class="card-date">June 2026</span>
<span class="dot">·</span>
<span class="card-read">11 min</span>
</div>
</div>
<svg class="card-arrow" width="16" height="16" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2">
<path d="M5 12h14M12 5l7 7-7 7"/>
</svg>
</a>
</li>
<!-- ARTICLE 2 -->
<li>
<a class="card" href="art2/index.html"
data-search="gcp finops vertex ai gemini cost spikes billing governance cloud ai whitepaper">
<span class="card-num">02</span>
<div class="card-body">
<div class="card-title">Taming GCP AI Cost Spikes — A Community-Driven FinOps Intelligence Report</div>
<div class="card-excerpt">
10+ documented cost-spike patterns from Reddit and Google forums, root-cause analysis
across Platform / Pricing / User dimensions, and a five-pillar AI FinOps governance
framework. Includes a free PDF white paper download.
</div>
<div class="card-foot">
<span class="tag">GCP</span>
<span class="tag">FinOps</span>
<span class="tag">Vertex AI</span>
<span class="tag">Gemini</span>
<span class="dot">·</span>
<span class="card-date">June 2026</span>
<span class="dot">·</span>
<span class="card-read">15 min</span>
<span class="file-badge">
<svg width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"/><polyline points="14 2 14 8 20 8"/></svg>
PDF
</span>
</div>
</div>
<svg class="card-arrow" width="16" height="16" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2">
<path d="M5 12h14M12 5l7 7-7 7"/>
</svg>
</a>
</li>
<!-- ARTICLE 1 -->
<li>
<a class="card" href="art1/index.html"
data-search="cloudops team building devops sre platform engineer itil slo sla cloud operations startups mid-scale">
<span class="card-num">01</span>
<div class="card-body">
<div class="card-title">Building Your In-House CloudOps Team: A Guide for Mid-Scale Organizations and Startups</div>
<div class="card-excerpt">
Roles, responsibilities, a phased roadmap, and the generalist vs. specialist debate —
a practical blueprint for standing up a CloudOps team that blends agile speed with
ITIL operational rigor.
</div>
<div class="card-foot">
<span class="tag">CloudOps</span>
<span class="tag">Team Building</span>
<span class="tag">SRE</span>
<span class="tag">ITIL</span>
<span class="dot">·</span>
<span class="card-date">June 24, 2025</span>
<span class="dot">·</span>
<span class="card-read">15 min</span>
</div>
</div>
<svg class="card-arrow" width="16" height="16" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2">
<path d="M5 12h14M12 5l7 7-7 7"/>
</svg>
</a>
</li>
</ul>
<div class="empty" id="empty">
<strong>No articles found</strong>
Try different keywords.
</div>
</main>
<footer>© 2026 Knacketho · knacketho-blogs</footer>
<script>
const input = document.getElementById('q');
const cards = document.querySelectorAll('#list li');
const empty = document.getElementById('empty');
const count = document.getElementById('count');
const total = cards.length;
input.addEventListener('input', function () {
const q = this.value.toLowerCase().trim();
let n = 0;
cards.forEach(li => {
const card = li.querySelector('.card');
const text = (card.dataset.search || '') + ' ' +
card.querySelector('.card-title').textContent.toLowerCase();
const show = !q || text.includes(q);
li.style.display = show ? '' : 'none';
if (show) n++;
});
empty.style.display = n === 0 ? 'block' : 'none';
count.textContent = q ? `${n} of ${total} articles` : `${total} articles`;
});
</script>
</body>
</html>