-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
523 lines (449 loc) · 22.3 KB
/
Copy pathindex.html
File metadata and controls
523 lines (449 loc) · 22.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
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>PerfectoWeb</title>
<meta name="description" content="We build for the web by day. The rest started as things we wanted for ourselves: Mac apps, editor extensions, and hardware projects. Most are open source. Everything here is free.">
<meta name="author" content="PerfectoWeb">
<link rel="canonical" href="https://perfectoweb.github.io/">
<meta property="og:type" content="website">
<meta property="og:title" content="PerfectoWeb">
<meta property="og:description" content="We build for the web by day. The rest started as things we wanted for ourselves: Mac apps, editor extensions, and hardware projects. Most are open source. Everything here is free.">
<meta property="og:url" content="https://perfectoweb.github.io/">
<meta name="theme-color" content="#ffffff" media="(prefers-color-scheme: light)">
<meta name="theme-color" content="#0d1016" media="(prefers-color-scheme: dark)">
<link rel="icon" href="https://perfectoweb.github.io/Belay/favicon.ico" sizes="32x32">
<script type="module" src="https://static.cloudflareinsights.com/beacon.min.js" data-cf-beacon='{"token": "8999ea5c44b046c19a08dcf09d5b4336"}'></script>
<style>
/* Self-contained: no external CSS, fonts or scripts. */
:root {
color-scheme: light dark;
--ink: #12161d;
--soft: #4a5464;
--page: #ffffff;
--panel: #f4f6fa;
--rule: #dfe4ec;
--accent: #1f6bff;
}
@media (prefers-color-scheme: dark) {
:root {
--ink: #eef2f8;
--soft: #98a3b4;
--page: #0d1016;
--panel: #151a22;
--rule: #252c38;
--accent: #5b93ff;
}
}
* { box-sizing: border-box; }
body {
margin: 0;
padding: 0 24px 80px;
background: var(--page);
color: var(--ink);
font: 17px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
-webkit-font-smoothing: antialiased;
}
.wrap { max-width: 46rem; margin: 0 auto; }
/* Hero */
header.top {
display: flex;
align-items: center;
gap: 10px;
padding: 40px 0 8px;
font-size: 22px;
font-weight: 700;
letter-spacing: -0.02em;
}
header.top svg { width: 26px; height: 26px; flex: none; color: var(--accent); }
header.top .thin { font-weight: 300; }
h1 {
margin: 32px 0 0;
font-size: clamp(36px, 6vw, 44px);
line-height: 1.12;
letter-spacing: -0.03em;
}
.lede {
margin: 12px 0 0;
max-width: 34rem;
color: var(--soft);
font-size: 18px;
}
/* Actions */
.actions {
display: flex;
flex-wrap: wrap;
gap: 12px;
margin-top: 28px;
}
@media (min-width: 561px) {
.actions .button { min-width: 190px; }
}
.button {
position: relative;
display: inline-flex;
align-items: center;
gap: 12px;
padding: 12px 22px;
min-height: 62px;
border-radius: 16px;
text-decoration: none;
border: 1px solid transparent;
}
.button .lines {
display: inline-flex;
flex-direction: column;
gap: 0;
line-height: 1.2;
}
.button .lead { font-size: 17px; font-weight: 700; }
.button .under { font-size: 12px; font-weight: 400; opacity: 0.72; }
.button svg { width: 22px; height: 22px; flex: none; }
.button.primary {
background: linear-gradient(#7133ee, #6525e6);
color: #fff;
}
.button.secondary {
background: transparent;
color: var(--ink);
border-color: var(--rule);
}
.button:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.button { transition: border-color 0.15s ease-in-out, filter 0.15s ease-in-out; }
.button:hover { filter: brightness(1.12); }
.button.secondary:hover {
filter: none;
border-color: color-mix(in srgb, var(--ink) 38%, transparent);
}
@media (prefers-reduced-motion: no-preference) {
.button.primary {
animation: button-breath 3.2s ease-in-out infinite;
}
}
@keyframes button-breath {
0%, 100% { box-shadow: 0 0 0 rgba(113, 51, 238, 0); filter: brightness(1); }
50% { box-shadow: 0 6px 26px rgba(113, 51, 238, 0.45); filter: brightness(1.06); }
}
.sparks {
position: absolute;
inset: 0;
pointer-events: none;
}
.sparks i {
position: absolute;
left: var(--x);
top: 8px;
width: var(--size);
height: var(--size);
border-radius: 1.5px;
background: #fff;
opacity: 0;
}
@media (prefers-reduced-motion: no-preference) {
.sparks i {
animation: spark-fly var(--dur) ease-out infinite;
animation-delay: var(--delay);
}
}
@keyframes spark-fly {
0% { opacity: 0; transform: translateY(0) rotate(45deg) scale(0.5); }
15% { opacity: 0.95; }
75% { opacity: 0; }
100% { opacity: 0; transform: translateY(calc(var(--rise) * -1)) rotate(45deg) scale(1); }
}
hr {
height: 1px;
margin: 56px 0 0;
border: 0;
background: var(--rule);
}
/* Project list */
h2 {
display: flex;
align-items: center;
gap: 9px;
margin: 48px 0 0;
font-size: 13px;
font-weight: 600;
letter-spacing: 0.08em;
text-transform: uppercase;
color: var(--soft);
}
h2 svg { width: 15px; height: 15px; flex: none; }
ul { margin: 16px 0 0; padding: 0; list-style: none; }
li + li { margin-top: 4px; }
li {
display: grid;
grid-template-columns: 132px 1fr;
gap: 16px;
align-items: start;
padding: 12px;
margin: 0 -12px;
border-radius: 14px;
}
@media (prefers-reduced-motion: no-preference) {
li { transition: background 0.16s ease-out; }
}
li:hover { background: var(--panel); }
li a { color: inherit; text-decoration: none; }
.name a:focus-visible,
.cover:focus-visible,
.tags a:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }
.cover { display: block; }
li img {
display: block;
width: 100%;
height: auto;
aspect-ratio: 8 / 5;
object-fit: cover;
border-radius: 10px;
background: var(--panel);
}
.name, .what, .tags { margin: 0; }
.name { font-weight: 700; }
.name .where {
margin-left: 8px;
font-size: 12px;
font-weight: 400;
letter-spacing: 0.02em;
color: var(--soft);
}
.what { display: block; margin-top: 2px; color: var(--soft); font-size: 15px; }
/* Tags */
.tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.tags > span,
.tags > a {
padding: 2px 9px;
border: 1px solid var(--rule);
border-radius: 999px;
color: var(--soft);
font-size: 12px;
line-height: 1.7;
letter-spacing: 0.01em;
}
.tags .lic {
background: var(--ink);
border-color: var(--ink);
color: var(--page);
}
.tags a.tag {
display: inline-flex;
align-items: center;
gap: 5px;
}
.tags a.tag svg { width: 12px; height: 12px; }
@media (prefers-reduced-motion: no-preference) {
.tags a.tag { transition: background 0.16s ease-out, color 0.16s ease-out; }
}
.tags a.tag:hover {
color: var(--ink);
background: color-mix(in srgb, var(--ink) 8%, transparent);
}
.tags .count {
display: inline-flex;
align-items: center;
gap: 5px;
font-variant-numeric: tabular-nums;
}
.tags .count svg { width: 12px; height: 12px; }
/* Tooltips */
[data-tip] { position: relative; }
[data-tip]::before {
content: "";
position: absolute;
bottom: calc(100% + 4px);
left: 50%;
width: 9px;
height: 9px;
border-radius: 1px;
background: var(--ink);
transform: translateX(-50%) rotate(45deg) translateY(3px);
opacity: 0;
pointer-events: none;
}
[data-tip]::after {
content: attr(data-tip);
position: absolute;
bottom: calc(100% + 8px);
left: 50%;
transform: translateX(-50%) translateY(3px);
z-index: 3;
width: max-content;
max-width: 15rem;
padding: 8px 12px;
border-radius: 12px;
background: var(--ink);
color: var(--page);
font-size: 13px;
font-weight: 400;
line-height: 1.4;
letter-spacing: 0;
text-align: center;
white-space: normal;
opacity: 0;
pointer-events: none;
}
@media (prefers-reduced-motion: no-preference) {
[data-tip]::after,
[data-tip]::before { transition: opacity 0.14s ease-out, transform 0.14s ease-out; }
}
[data-tip]:hover::after,
[data-tip]:focus-visible::after {
opacity: 1;
transform: translateX(-50%) translateY(0);
}
[data-tip]:hover::before,
[data-tip]:focus-visible::before {
opacity: 1;
transform: translateX(-50%) rotate(45deg);
}
@media (max-width: 560px) {
li { grid-template-columns: 96px 1fr; gap: 12px; }
.actions .button { flex: 1 1 100%; justify-content: flex-start; }
}
/* Footer */
footer {
margin-top: 56px;
padding-top: 20px;
border-top: 1px solid var(--rule);
color: var(--soft);
font-size: 15px;
}
.links { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 18px; }
.links a {
display: inline-flex;
align-items: center;
gap: 7px;
color: var(--accent);
text-decoration: underline;
text-underline-offset: 3px;
}
.links a:hover { text-decoration: none; }
.links svg { width: 16px; height: 16px; flex: none; }
footer p { margin: 14px 0 0; max-width: 40rem; }
</style>
</head>
<body>
<div class="wrap">
<header class="top">
<svg viewBox="0 0 24 24" fill="currentColor" aria-hidden="true"><path d="M12 2.6l1.5 5.1a4 4 0 0 0 2.7 2.7l5.2 1.6-5.2 1.6a4 4 0 0 0-2.7 2.7L12 21.4l-1.5-5.1a4 4 0 0 0-2.7-2.7L2.6 12l5.2-1.6a4 4 0 0 0 2.7-2.7L12 2.6z"/></svg>
<span>Perfecto<span class="thin">Web</span></span>
</header>
<h1>Things we wanted to exist.</h1>
<p class="lede">We build for the web by day. The rest started as things we wanted
for ourselves: Mac apps, editor extensions, and hardware projects. Most are open
source. Everything here is free.</p>
<div class="actions">
<a class="button primary" href="https://perfecto-web.com" target="_blank" rel="noopener">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.9" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><circle cx="12" cy="12" r="9.2"/><path d="M2.8 12h18.4M12 2.8c2.5 2.5 3.9 5.9 3.9 9.2s-1.4 6.7-3.9 9.2c-2.5-2.5-3.9-5.9-3.9-9.2S9.5 5.3 12 2.8z"/></svg>
<span class="lines"><span class="lead">Our website</span><span class="under">perfecto-web.com</span></span>
<span class="sparks" aria-hidden="true"><i style="--x: 14%; --size: 6px; --rise: 30px; --dur: 2.4s; --delay: 0s"></i><i style="--x: 31%; --size: 4px; --rise: 22px; --dur: 3.1s; --delay: 0.7s"></i><i style="--x: 47%; --size: 7px; --rise: 34px; --dur: 2.7s; --delay: 1.5s"></i><i style="--x: 63%; --size: 3px; --rise: 25px; --dur: 3.6s; --delay: 0.3s"></i><i style="--x: 78%; --size: 5px; --rise: 28px; --dur: 2.2s; --delay: 1.1s"></i><i style="--x: 92%; --size: 4px; --rise: 20px; --dur: 3.9s; --delay: 2s"></i></span>
</a>
<a class="button secondary" href="https://github.com/PerfectoWeb">
<svg viewBox="0 0 16 16" fill="currentColor" aria-hidden="true"><path d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27s1.36.09 2 .27c1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A7.995 7.995 0 0 0 16 8c0-4.42-3.58-8-8-8z"/></svg>
<span class="lines"><span class="lead">GitHub</span><span class="under">All repositories</span></span>
</a>
</div>
<hr>
<h2><svg viewBox="0 0 384 512" fill="currentColor" aria-hidden="true"><path d="M318.7 268.7c-.2-36.7 16.4-64.4 50-84.8-18.8-26.9-47.2-41.7-84.7-44.6-35.5-2.8-74.3 20.7-88.5 20.7-15 0-49.4-19.7-76.4-19.7C63.3 141.2 4 184.8 4 273.5q0 39.3 14.4 81.2c12.8 36.7 59 126.7 107.2 125.2 25.2-.6 43-17.9 75.8-17.9 31.8 0 48.3 17.9 76.4 17.9 48.6-.7 90.4-82.5 102.6-119.3-65.2-30.7-61.7-90-61.7-91.9zm-56.6-164.2c27.3-32.4 24.8-61.9 24-72.5-24.1 1.4-52 16.4-67.9 34.9-17.5 19.8-27.8 44.3-25.6 71.9 26.1 2 49.9-11.4 69.5-34.3z"/></svg> macOS</h2>
<ul>
<li>
<a class="cover" href="https://perfectoweb.github.io/Belay/" tabindex="-1" aria-hidden="true"><img src="img/belay.webp" width="640" height="400" alt="Belay" loading="lazy" decoding="async"></a>
<div class="text">
<p class="name"><a href="https://perfectoweb.github.io/Belay/">Belay</a><span class="where">site · App Store · Homebrew</span></p>
<p class="what">Keeps your Mac awake while coding agents work, then lets it sleep when they're done. No account. No telemetry.</p>
<p class="tags"><span class="lic">Source Code</span><span>Free</span><span>Swift</span><span>Multilingual</span></p>
</div>
</li>
<li>
<a class="cover" href="https://github.com/PerfectoWeb/Gibson" tabindex="-1" aria-hidden="true"><img src="img/gibson.webp" width="640" height="400" alt="Gibson" loading="lazy" decoding="async"></a>
<div class="text">
<p class="name"><a href="https://github.com/PerfectoWeb/Gibson">Gibson</a><span class="where">GitHub</span></p>
<p class="what">A screen saver that turns your display into the security dashboard from every hacker film. Half of it is real: the numbers come off your machine.</p>
<p class="tags"><span class="lic">MIT</span><span>Free</span><span>Swift</span></p>
</div>
</li>
</ul>
<h2><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.1" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M8.6 8.4 5 12l3.6 3.6M15.4 8.4 19 12l-3.6 3.6M13.4 6.2l-2.8 11.6"/></svg> Editor extensions</h2>
<ul>
<li>
<a class="cover" href="https://github.com/PerfectoWeb/nova-perfectdark-theme" tabindex="-1" aria-hidden="true"><img src="img/nova-dark.webp" width="640" height="400" alt="Nova: Perfect Dark" loading="lazy" decoding="async"></a>
<div class="text">
<p class="name"><a href="https://github.com/PerfectoWeb/nova-perfectdark-theme">Nova: Perfect Dark</a><span class="where">GitHub</span></p>
<p class="what">An easy-on-the-eyes dark theme for Panic's Nova.</p>
<p class="tags"><span class="lic">MIT</span><span>Nova</span><a class="tag site" href="https://extensions.panic.com/extensions/perfectoweb/perfectoweb.PerfectDark/"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><circle cx="12" cy="12" r="9"/><path d="M3 12h18M12 3c2.5 2.5 3.8 5.7 3.8 9S14.5 18.5 12 21c-2.5-2.5-3.8-5.7-3.8-9S9.5 5.5 12 3z"/></svg>Site</a><span class="tag count" data-tip="Total installs from the Nova Extension Library"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M12 4.6v9.4M8.4 10.4 12 14l3.6-3.6M5 18.4h14"/></svg>6,528</span></p>
</div>
</li>
<li>
<a class="cover" href="https://github.com/PerfectoWeb/nova-favicon-clip" tabindex="-1" aria-hidden="true"><img src="img/nova-favicon.webp" width="640" height="400" alt="Nova: Favicon Clip" loading="lazy" decoding="async"></a>
<div class="text">
<p class="name"><a href="https://github.com/PerfectoWeb/nova-favicon-clip">Nova: Favicon Clip</a><span class="where">GitHub</span></p>
<p class="what">Generates the whole favicon tag set for every platform, without leaving the editor.</p>
<p class="tags"><span class="lic">MIT</span><span>Nova</span><a class="tag site" href="https://extensions.panic.com/extensions/perfectoweb/perfectoweb.favicon/"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><circle cx="12" cy="12" r="9"/><path d="M3 12h18M12 3c2.5 2.5 3.8 5.7 3.8 9S14.5 18.5 12 21c-2.5-2.5-3.8-5.7-3.8-9S9.5 5.5 12 3z"/></svg>Site</a><span class="tag count" data-tip="Total installs from the Nova Extension Library"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M12 4.6v9.4M8.4 10.4 12 14l3.6-3.6M5 18.4h14"/></svg>4,159</span></p>
</div>
</li>
<li>
<a class="cover" href="https://github.com/PerfectoWeb/nova-lorem-clip" tabindex="-1" aria-hidden="true"><img src="img/nova-lorem.webp" width="640" height="400" alt="Nova: Lorem Clip" loading="lazy" decoding="async"></a>
<div class="text">
<p class="name"><a href="https://github.com/PerfectoWeb/nova-lorem-clip">Nova: Lorem Clip</a><span class="where">GitHub</span></p>
<p class="what">Lorem ipsum without leaving the editor.</p>
<p class="tags"><span class="lic">MIT</span><span>Nova</span><a class="tag site" href="https://extensions.panic.com/extensions/perfectoweb/perfectoweb.lorem/"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><circle cx="12" cy="12" r="9"/><path d="M3 12h18M12 3c2.5 2.5 3.8 5.7 3.8 9S14.5 18.5 12 21c-2.5-2.5-3.8-5.7-3.8-9S9.5 5.5 12 3z"/></svg>Site</a><span class="tag count" data-tip="Total installs from the Nova Extension Library"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M12 4.6v9.4M8.4 10.4 12 14l3.6-3.6M5 18.4h14"/></svg>7,516</span></p>
</div>
</li>
</ul>
<h2><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.9" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><rect x="7.2" y="7.2" width="9.6" height="9.6" rx="1.6"/><path d="M10 3.4v3.8M14 3.4v3.8M10 16.8v3.8M14 16.8v3.8M3.4 10h3.8M3.4 14h3.8M16.8 10h3.8M16.8 14h3.8"/></svg> Hardware</h2>
<ul>
<li>
<a class="cover" href="https://github.com/PerfectoWeb/flipper-pocketlab" tabindex="-1" aria-hidden="true"><img src="img/pocketlab.webp" width="640" height="400" alt="Flipper Zero: PocketLab" loading="lazy" decoding="async"></a>
<div class="text">
<p class="name"><a href="https://github.com/PerfectoWeb/flipper-pocketlab">Flipper Zero: PocketLab</a><span class="where">GitHub</span></p>
<p class="what">A native Flipper Zero app that teaches the device's own features in bite-sized interactive lessons.</p>
<p class="tags"><span class="lic">MIT</span><span>C</span><span>Flipper Zero</span></p>
</div>
</li>
<li>
<a class="cover" href="https://github.com/PerfectoWeb/IBM-VFD-Display-ESP32-S3" tabindex="-1" aria-hidden="true"><img src="img/ibm.webp" width="640" height="400" alt="IBM VFD Display" loading="lazy" decoding="async"></a>
<div class="text">
<p class="name"><a href="https://github.com/PerfectoWeb/IBM-VFD-Display-ESP32-S3">IBM VFD Display</a><span class="where">GitHub</span></p>
<p class="what">An ESP32-S3 driving a Futaba / IBM 20x2 vacuum fluorescent customer display.</p>
<p class="tags"><span class="lic">MIT</span><span>ESP32-S3</span><span>Arduino</span></p>
</div>
</li>
<li>
<a class="cover" href="https://www.crealitycloud.com/model-detail/creality-k2-custom-drawer-modular-grid-system" tabindex="-1" aria-hidden="true"><img src="img/k2-drawer.webp" width="640" height="400" alt="Creality K2: Tool Drawer" loading="lazy" decoding="async"></a>
<div class="text">
<p class="name"><a href="https://www.crealitycloud.com/model-detail/creality-k2-custom-drawer-modular-grid-system">Creality K2: Tool Drawer</a><span class="where">Creality Cloud</span></p>
<p class="what">A drawer that mounts under the Creality K2 and a grid of trays you print to fit the tools you actually own.</p>
<p class="tags"><span class="lic">CC BY-NC-SA</span><span>3MF</span><span>Blender</span><span class="tag count" data-tip="Downloads from Creality Cloud"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M12 4.6v9.4M8.4 10.4 12 14l3.6-3.6M5 18.4h14"/></svg>1,836</span></p>
</div>
</li>
</ul>
<h2><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M12 3.6v10.2M8.2 10.2 12 14l3.8-3.8M4.4 17.2v1.6a1.6 1.6 0 0 0 1.6 1.6h12a1.6 1.6 0 0 0 1.6-1.6v-1.6"/></svg> Installing</h2>
<ul>
<li>
<a class="cover" href="https://github.com/PerfectoWeb/homebrew-tap" tabindex="-1" aria-hidden="true"><img src="img/tap.webp" width="640" height="400" alt="PerfectoWeb//tap" loading="lazy" decoding="async"></a>
<div class="text">
<p class="name"><a href="https://github.com/PerfectoWeb/homebrew-tap">PerfectoWeb//tap</a><span class="where">Homebrew</span></p>
<p class="what">Install our Mac apps with Homebrew, update them with <code>brew upgrade</code>, and remove their preferences on uninstall.</p>
<p class="tags"><span class="lic">MIT</span><span>Homebrew</span><span>Ruby</span></p>
</div>
</li>
</ul>
<footer>
<div class="links">
<a href="https://github.com/PerfectoWeb">
<svg viewBox="0 0 16 16" fill="currentColor" aria-hidden="true"><path d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27s1.36.09 2 .27c1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A7.995 7.995 0 0 0 16 8c0-4.42-3.58-8-8-8z"/></svg>
github.com/PerfectoWeb
</a>
<a href="https://perfecto-web.com">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.9" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><circle cx="12" cy="12" r="9.2"/><path d="M2.8 12h18.4M12 2.8c2.5 2.5 3.9 5.9 3.9 9.2s-1.4 6.7-3.9 9.2c-2.5-2.5-3.9-5.9-3.9-9.2S9.5 5.3 12 2.8z"/></svg>
perfecto-web.com
</a>
</div>
<p>We use Cloudflare Web Analytics for basic visit counts: page, referrer,
country, and browser. No cookies.</p>
</footer>
</div>
</body>
</html>