-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
430 lines (394 loc) · 11.3 KB
/
index.html
File metadata and controls
430 lines (394 loc) · 11.3 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
422
423
424
425
426
427
428
429
430
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>presentation about presentations</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=Geist+Mono:wght@100..900&family=Nanum+Pen+Script&display=swap"
rel="stylesheet"
/>
<style>
:root {
--text: #f5f5f5;
--bg: #000;
}
:root[data-theme="light"] {
--text: #111;
--bg: #fff;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
scroll-snap-type: y mandatory;
background-color: var(--bg);
}
body {
font-family: "Geist Mono", monospace;
font-optical-sizing: auto;
font-weight: 350;
font-style: normal;
color: var(--text);
overflow-x: hidden;
font-size: 24px;
position: relative;
}
.slide {
width: 100%;
padding: 3%;
height: 100svh;
display: flex;
flex-direction: column;
flex-wrap: wrap;
gap: 1rem;
justify-content: center;
scroll-snap-align: start;
position: relative;
overflow-x: hidden;
overflow: hidden;
}
.no-wrap {
flex-wrap: nowrap;
}
.highlight {
font-size: 7.5cqw;
line-height: 0.9;
letter-spacing: -0.05em;
transform: skewY(-4deg);
padding: 0.2em 1em 0.3em 1em;
margin: 0 -1.25em;
}
.title {
font-size: 14cqw;
line-height: 0.75;
letter-spacing: -0.05em;
transform: skewY(-9deg);
}
.hand {
font-family: "Nanum Pen Script", cursive;
font-weight: 400;
font-style: normal;
font-size: 2rem;
letter-spacing: -0.015em;
line-height: 1.5rem;
}
.signature {
position: absolute;
bottom: 1.5rem;
right: 1.5rem;
padding-left: 1rem;
}
.block {
display: flex;
flex-direction: column;
justify-content: center;
gap: 1.5rem;
}
.space-between {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}
.horizontal {
flex-direction: row;
}
.dimmed {
opacity: 0.2;
}
.fill {
flex: 1;
}
.step {
max-width: 20ch;
}
.mode-toggle {
position: absolute;
bottom: 1rem;
right: 1rem;
gap: 0rem;
display: inline-flex;
align-items: center;
padding: 0 0.5rem;
font-size: 5rem;
background: transparent;
border: none;
color: var(--text);
cursor: pointer;
}
.mode-toggle svg path {
fill: var(--text);
}
.mode-toggle .sun {
opacity: 0.15;
}
.mode-toggle .moon {
opacity: 1;
}
:root[data-theme="light"] .mode-toggle .sun {
opacity: 1;
}
:root[data-theme="light"] .mode-toggle .moon {
opacity: 0.15;
}
h1,
h2,
h3,
h4,
h5,
h6,
b,
strong {
font-weight: 600;
}
@media (max-width: 800px) {
body {
font-size: 13px;
}
}
</style>
</head>
<body>
<div class="slide space-between">
<h1 class="title">Presentation about making presentations</h1>
<p class="hand signature">
Nick Mikulin · Manychat Engineering Community · Nov 25 2025
</p>
</div>
<div class="slide">
<p>Start by asking a question...</p>
<h1 style="max-width: 40ch">
What is one thing I want my audience to remember after my
presentation?
</h1>
</div>
<div class="slide">
<p>What is one thing I want you to remember today?</p>
<h1 class="highlight">Build presentations like you build products</h1>
</div>
<div class="slide horizontal">
<div class="block fill">
<p>Presentation</p>
<h1>1 Context</h1>
<h1>2 Message</h1>
<h1>3 Delivery</h1>
</div>
</div>
<div class="slide horizontal">
<div class="block fill">
<p>Presentation</p>
<h1>1 Context</h1>
<h1>2 Message</h1>
<h1>3 Delivery</h1>
</div>
<div class="block fill">
<p>Product</p>
<h1>== Context</h1>
<h1>== Logic</h1>
<h1>== Interface</h1>
</div>
</div>
<div class="slide horizontal">
<div class="block fill">
<h1>1 Context</h1>
<div class="space-between">
<p>·· Who are my users?</p>
</div>
<h1 class="dimmed">2 Message</h1>
<h1 class="dimmed">3 Delivery</h1>
</div>
</div>
<div class="slide horizontal">
<div class="block fill">
<h1>0 Context</h1>
<div class="space-between">
<p>·· Who are my users?</p>
</div>
<h1 class="dimmed">1 Message</h1>
<h1 class="dimmed">2 Delivery</h1>
</div>
</div>
<div class="slide horizontal">
<div class="block fill">
<h1>0 Context</h1>
<div class="space-between">
<p>·· Who are my users?</p>
<p class="hand">Mostly engineers, many of them I know personally</p>
</div>
<div class="space-between">
<p>·· What's the setting?</p>
<p class="hand">
End of the day, internal meetup, after two tech talks
</p>
</div>
<div class="space-between">
<p>·· What are my constraints?</p>
<p class="hand">10 min, offline + online, big screen, low contrast</p>
</div>
<button
class="mode-toggle"
id="contrast-toggle"
type="button"
aria-label="Toggle light/dark"
>
<span class="sun"
><svg
xmlns="http://www.w3.org/2000/svg"
width="80"
height="80"
fill="none"
viewBox="0 0 64 64"
>
<g clip-path="url(#a)">
<path
d="M18.666 8.906a26.667 26.667 0 1 1-13.32 23.958L5.333 32l.013-.864a26.666 26.666 0 0 1 13.32-22.23Z"
/>
</g>
<defs>
<clipPath id="a">
<path d="M0 0h64v64H0z" />
</clipPath>
</defs>
</svg>
</span>
<span class="moon"
><svg
xmlns="http://www.w3.org/2000/svg"
width="80"
height="80"
fill="none"
viewBox="0 0 64 64"
>
<g clip-path="url(#a)">
<path
d="M32 5.313a26.667 26.667 0 1 0 24.63 36.9c.91-2.186-1.27-4.383-3.461-3.492A17.333 17.333 0 0 1 34.865 9.955l.205-.213c1.47-1.68.301-4.408-2.021-4.408h-.71l-.181-.016-.16-.005h.003Z"
/>
</g>
<defs>
<clipPath id="a">
<path d="M0 0h64v64H0z" />
</clipPath>
</defs>
</svg>
</span>
</button>
<h1 class="dimmed">1 Message</h1>
<h1 class="dimmed">2 Delivery</h1>
</div>
</div>
<div class="slide horizontal">
<div class="block fill">
<h1 class="dimmed">0 Context</h1>
<h1>1 Message</h1>
<div class="space-between">
<p>·· What's the problem?</p>
<p class="hand">
Preparing presentations is stressful and time-consuming
</p>
</div>
<div class="space-between">
<p>·· What can I offer?</p>
<p class="hand">
A simplified 3-part framework with guiding questions
</p>
</div>
<div class="space-between">
<p>·· Why will it work?</p>
<p class="hand">
I will connect it to a familiar topic of product building
</p>
</div>
<h1 class="dimmed">2 Delivery</h1>
</div>
</div>
<div class="slide horizontal">
<div class="block fill">
<h1 class="dimmed">0 Context</h1>
<h1 class="dimmed">1 Message</h1>
<h1>2 Delivery</h1>
<div class="space-between">
<p>·· How do I package the message?</p>
<p class="hand">
Deliberately minimal slides in a tool familiar to devs
</p>
</div>
<div class="space-between">
<p>·· How do I guide attention?</p>
<p class="hand">Giving information bit by bit as a personal story</p>
</div>
<div class="space-between">
<p>·· How do I make it stick?</p>
<p class="hand">Repetition and playful meta-demonstration</p>
</div>
</div>
</div>
<div class="slide">
<p>Test your <s>product</s> presentation</p>
<span class="fill"></span>
<div class="block horizontal space-between fill">
<div class="step fill">
<h1>Alpha</h1>
<p>Presented to my wife this weekend</p>
<p class="hand" style="margin-top: 3rem">
My delivery would not be refined without her
</p>
</div>
<h1>···</h1>
<div class="step fill">
<h1>Beta</h1>
<p>Presented to Anton and Anna on Monday</p>
<p class="hand" style="margin-top: 3rem">
This slide would not be here without them
</p>
</div>
<h1>···</h1>
<div class="step fill">
<h1>Launch</h1>
<p>Presenting to you right now</p>
<p class="hand" style="margin-top: 3rem">
I would not be here without you
</p>
</div>
</div>
</div>
<div class="slide">
<p>What is one thing I want you to remember today?</p>
<h1 class="highlight">Build presentations like you build products</h1>
</div>
<div class="slide no-wrap" style="padding-bottom: 7rem">
<h1 class="highlight">
<span class="dimmed">Build</span> Slack messages
<span class="dimmed">like you build products</span>
</h1>
<h1 class="highlight">
<span class="dimmed">Build</span> task descriptions
<span class="dimmed">like you build products</span>
</h1>
<h1 class="highlight">
<span class="dimmed">Build</span> documentation
<span class="dimmed">like you build products</span>
</h1>
<p class="hand signature">
Nick Mikulin · Manychat Engineering Community · Nov 25 2025
</p>
</div>
<script>
const root = document.documentElement;
const toggle = document.getElementById("contrast-toggle");
root.dataset.theme = "dark";
toggle?.addEventListener("click", () => {
const next = root.dataset.theme === "light" ? "dark" : "light";
root.dataset.theme = next;
toggle.setAttribute(
"aria-label",
`Switch to ${next === "light" ? "dark" : "light"} mode`
);
});
</script>
</body>
</html>