-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
258 lines (258 loc) · 11.5 KB
/
Copy pathindex.html
File metadata and controls
258 lines (258 loc) · 11.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>yap — what i'm building</title>
<style>
:root{
--paper:#f3efe6; --paper-2:#ece7db; --ink:#181613; --ink-soft:#46413a;
--muted:#8c857a; --line:#cfc7b6; --accent:#d4452b; --maxw:1080px;
}
*{box-sizing:border-box;margin:0;padding:0}
html{-webkit-text-size-adjust:100%}
body{
background:var(--paper); color:var(--ink);
font-family:"Helvetica Neue",Helvetica,Arial,"Segoe UI",sans-serif;
line-height:1.5; -webkit-font-smoothing:antialiased;
text-rendering:optimizeLegibility; font-feature-settings:"kern" 1,"liga" 1;
overflow-x:hidden;
}
body::before{
content:""; position:fixed; inset:0; pointer-events:none; z-index:0;
background:
radial-gradient(120% 80% at 80% -10%, rgba(212,69,43,.05), transparent 55%),
radial-gradient(100% 60% at -10% 110%, rgba(0,0,0,.035), transparent 60%);
}
.wrap{
position:relative; z-index:1; max-width:var(--maxw); margin:0 auto;
padding:clamp(20px,4.5vw,44px) clamp(20px,5vw,56px) clamp(40px,7vw,90px);
}
.meta{
display:flex; justify-content:space-between; align-items:baseline; gap:16px;
padding-bottom:14px; border-bottom:1px solid var(--line);
font-size:11px; letter-spacing:.18em; text-transform:uppercase;
color:var(--muted); font-weight:600;
}
.meta .dot{color:var(--accent)}
.meta span:last-child{text-align:right}
.hero{padding:clamp(48px,11vw,128px) 0 clamp(34px,6vw,60px)}
.name{
font-size:clamp(116px,33vw,300px); line-height:.8; font-weight:800;
letter-spacing:-.05em; margin-left:-.02em; color:var(--ink);
}
.name .stop{color:var(--accent)}
.tagline{
margin-top:clamp(20px,3vw,34px); font-size:clamp(18px,2.4vw,27px);
font-weight:400; letter-spacing:-.012em; color:var(--ink-soft); max-width:30ch;
}
.lede{
margin:clamp(22px,3.4vw,40px) 0 0; font-size:clamp(16px,1.75vw,20px);
line-height:1.5; color:var(--ink-soft); max-width:48ch; letter-spacing:-.01em;
}
.sec-rule{
display:flex; align-items:baseline; gap:18px; margin-top:clamp(20px,4vw,40px);
padding-bottom:13px; border-bottom:1px solid var(--ink);
}
.sec-rule h2{font-size:12px; letter-spacing:.2em; text-transform:uppercase; font-weight:700; color:var(--ink)}
.sec-rule .count{margin-left:auto; font-size:12px; letter-spacing:.2em; color:var(--muted); font-weight:600}
.work{list-style:none}
.entry{
position:relative; display:grid;
grid-template-columns:clamp(48px,7vw,84px) 1fr clamp(140px,18vw,210px);
gap:clamp(16px,3vw,40px); align-items:start;
padding:clamp(26px,3.6vw,40px) 0; border-bottom:1px solid var(--line);
transition:padding-left .45s cubic-bezier(.2,.7,.2,1);
}
.entry::before{
content:""; position:absolute; left:-100vw; top:0; bottom:0;
width:calc(100vw + 100%);
background:linear-gradient(90deg,transparent, rgba(212,69,43,.045) 70%, rgba(212,69,43,.07));
transform:translateX(-12px); opacity:0;
transition:opacity .4s ease, transform .45s cubic-bezier(.2,.7,.2,1); pointer-events:none;
}
.entry::after{
content:""; position:absolute; left:0; top:50%; height:0; width:2px;
background:var(--accent); transform:translateY(-50%);
transition:height .4s cubic-bezier(.2,.7,.2,1);
}
@media(hover:hover){
.entry:hover{padding-left:clamp(14px,2vw,26px)}
.entry:hover::before{opacity:1;transform:translateX(0)}
.entry:hover::after{height:calc(100% - clamp(34px,5vw,54px))}
.entry:hover .num{color:var(--accent)}
.entry:hover .arrow{opacity:1;transform:translateX(0)}
.entry:hover .ttl{color:var(--accent)}
}
.num{
font-size:clamp(15px,1.4vw,18px); font-weight:700; letter-spacing:.04em;
color:var(--muted); font-variant-numeric:tabular-nums; padding-top:.35em;
transition:color .35s ease;
}
.body{min-width:0}
.ttl-row{display:flex; align-items:baseline; gap:.5em; flex-wrap:wrap}
.ttl{
font-size:clamp(26px,3.6vw,42px); font-weight:700; letter-spacing:-.028em;
line-height:1.02; color:var(--ink); transition:color .35s ease;
}
.arrow{
font-size:clamp(18px,2vw,24px); color:var(--accent); opacity:0;
transform:translateX(-8px);
transition:opacity .35s ease, transform .45s cubic-bezier(.2,.7,.2,1);
line-height:1; align-self:center;
}
.desc{
margin-top:.7em; font-size:clamp(15px,1.45vw,17.5px); line-height:1.5;
color:var(--ink-soft); max-width:54ch; letter-spacing:-.004em;
}
.aside{text-align:right; padding-top:.5em; display:flex; flex-direction:column; align-items:flex-end; gap:12px}
.status{
display:inline-flex; align-items:center; gap:.55em; font-size:11px;
letter-spacing:.15em; text-transform:uppercase; font-weight:700;
color:var(--ink); white-space:nowrap;
}
.status .led{
width:7px; height:7px; border-radius:50%; background:var(--accent);
flex:0 0 auto; box-shadow:0 0 0 0 rgba(212,69,43,.45);
}
.status.pulse .led{animation:pulse 2.8s ease-out infinite}
@keyframes pulse{
0%{box-shadow:0 0 0 0 rgba(212,69,43,.4)}
70%{box-shadow:0 0 0 7px rgba(212,69,43,0)}
100%{box-shadow:0 0 0 0 rgba(212,69,43,0)}
}
.repo{font-size:10.5px; letter-spacing:.16em; text-transform:uppercase; color:var(--muted); font-weight:600}
a.repo{text-decoration:none}
a.repo:hover{color:var(--accent)}
.infra{
margin-top:clamp(22px,3.4vw,40px); font-size:13px; line-height:1.5;
color:var(--muted); font-weight:500; letter-spacing:.01em; max-width:60ch;
}
.foot{
margin-top:clamp(54px,8vw,96px); padding-top:18px; border-top:1px solid var(--ink);
display:flex; justify-content:space-between; align-items:baseline; gap:18px; flex-wrap:wrap;
}
.foot .lead{font-size:clamp(16px,1.7vw,20px); letter-spacing:-.01em; color:var(--ink); font-weight:500}
.foot .lead .soon{color:var(--muted); font-weight:400}
.foot .sig{font-size:11px; letter-spacing:.2em; text-transform:uppercase; color:var(--muted); font-weight:600}
@media (prefers-reduced-motion:reduce){*{animation:none!important;transition:none!important}}
@media(max-width:640px){
.entry{grid-template-columns:34px 1fr; gap:14px 16px; padding:24px 0}
.aside{grid-column:1 / -1; text-align:left; align-items:flex-start; flex-direction:row;
justify-content:space-between; width:100%; padding-top:4px; gap:14px}
.num{padding-top:.5em}
.desc{max-width:none}
.meta{font-size:9.5px; letter-spacing:.13em}
.tagline{max-width:none}
}
</style>
</head>
<body>
<main class="wrap">
<header class="meta">
<span>Portfolio <span class="dot">/</span> 2026</span>
<span>Selected Work — 06</span>
</header>
<section class="hero">
<h1 class="name">yap<span class="stop">.</span></h1>
<p class="tagline">i build AI systems i actually use</p>
<p class="lede">A setup that mostly runs itself — it pulls the web, runs my agents, and hands me what's worth seeing. I built and run the whole thing.</p>
</section>
<div class="sec-rule"><h2>What it makes</h2><span class="count">01 — 04</span></div>
<ol class="work">
<li class="entry">
<div class="num">01</div>
<div class="body">
<div class="ttl-row">
<span class="ttl">Pain Harvester</span>
<span class="arrow" aria-hidden="true">→</span>
</div>
<p class="desc">Pulls the real problems people post and cuts the noise. Every run, a pain only counts if it ships with the exact quote from the post — so the model can't invent one; anything it can't back with the source gets dropped.</p>
</div>
<div class="aside">
<span class="status pulse"><span class="led"></span>daily harvest · weekly issue</span>
<a class="repo" href="https://github.com/yap-builder/pain-harvester">repo →</a>
</div>
</li>
<li class="entry">
<div class="num">02</div>
<div class="body">
<div class="ttl-row">
<span class="ttl">rawfetch</span>
<span class="arrow" aria-hidden="true">→</span>
</div>
<p class="desc">A command-line tool that gets the verbatim text out of sources an AI assistant can't reach on its own — YouTube through the captions, web articles. One command, and no model anywhere in it: it hands back the raw words instead of a retelling that might be invented.</p>
</div>
<div class="aside">
<span class="status pulse"><span class="led"></span>open source · CI green</span>
<a class="repo" href="https://github.com/yap-builder/rawfetch">repo →</a>
</div>
</li>
<li class="entry">
<div class="num">03</div>
<div class="body">
<div class="ttl-row">
<span class="ttl">ClearView</span>
<span class="arrow" aria-hidden="true">→</span>
</div>
<p class="desc">Runs fully on its own. Every morning it reads the day's stories through opposing lenses and flags where each side is blind, then sets the money on Polymarket against the narrative — where the bets and the story disagree is the signal.</p>
</div>
<div class="aside">
<span class="status pulse"><span class="led"></span>live · daily</span>
<span class="repo">repo soon</span>
</div>
</li>
<li class="entry">
<div class="num">04</div>
<div class="body">
<div class="ttl-row">
<span class="ttl">Connections</span>
<span class="arrow" aria-hidden="true">→</span>
</div>
<p class="desc">Once a week, on its own, it reads back through my notes and surfaces connections I never drew myself — I keep the ones that hold.</p>
</div>
<div class="aside">
<span class="status pulse"><span class="led"></span>live · weekly</span>
<span class="repo">repo soon</span>
</div>
</li>
</ol>
<div class="sec-rule"><h2>How it runs</h2><span class="count">05 — 06</span></div>
<ol class="work">
<li class="entry">
<div class="num">05</div>
<div class="body">
<div class="ttl-row">
<span class="ttl">Hermes</span>
<span class="arrow" aria-hidden="true">→</span>
</div>
<p class="desc">The always-on server the rest runs on — it pulls my notes in and hosts the agents. The bet: a cheap model with good inputs and tight routing beats a big expensive one. Locked down so it can't rewrite its own skills.</p>
</div>
<div class="aside">
<span class="status pulse"><span class="led"></span>live</span>
<span class="repo">repo soon</span>
</div>
</li>
<li class="entry">
<div class="num">06</div>
<div class="body">
<div class="ttl-row">
<span class="ttl">Quest Log</span>
<span class="arrow" aria-hidden="true">→</span>
</div>
<p class="desc">One cockpit — projects, quests and agents all launch from a single place, so I run the whole operation without juggling ten terminals.</p>
</div>
<div class="aside">
<span class="status pulse"><span class="led"></span>in daily use</span>
<span class="repo">repo soon</span>
</div>
</li>
</ol>
<p class="infra">Underneath: fetchers for X, YouTube and Reddit — the Reddit one needs a real browser engine to get past the bot-check.</p>
<footer class="foot">
<p class="lead">What I'm building.</p>
<span class="sig">yap — 2026</span>
</footer>
</main>
</body>
</html>