-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
194 lines (171 loc) · 4.68 KB
/
index.html
File metadata and controls
194 lines (171 loc) · 4.68 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>agieta.com</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
background: #ffffff;
min-height: 100vh;
color: #000000;
padding: 2rem;
}
.container {
max-width: 800px;
margin: 0 auto;
}
h1 {
font-size: 3rem;
margin-bottom: 0.5rem;
color: #000000;
}
.tagline {
font-size: 1.25rem;
color: #666666;
margin-bottom: 2rem;
}
.card {
background: #f5f5f5;
border: 1px solid #000000;
border-radius: 12px;
padding: 1.5rem;
margin-bottom: 1.5rem;
}
.card h2 {
color: #000000;
margin-bottom: 1rem;
font-size: 1.5rem;
}
.card p {
line-height: 1.7;
margin-bottom: 1rem;
}
.card ul {
list-style: none;
padding-left: 0;
}
.card li {
padding: 0.5rem 0;
padding-left: 1.5rem;
position: relative;
}
.card li::before {
content: ">";
position: absolute;
left: 0;
color: #000000;
font-weight: bold;
}
.allowed {
color: #000000;
}
.rejected {
color: #000000;
}
a {
color: #000000;
text-decoration: underline;
transition: color 0.2s;
}
a:hover {
color: #666666;
}
.cta {
display: inline-block;
background: #000000;
color: #ffffff;
padding: 1rem 2rem;
border-radius: 8px;
font-weight: bold;
margin-top: 1rem;
transition: transform 0.2s, box-shadow 0.2s;
text-decoration: none;
}
.cta:hover {
transform: translateY(-2px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
color: #ffffff;
}
.footer {
margin-top: 3rem;
text-align: center;
color: #666666;
font-size: 0.9rem;
}
code {
background: #e0e0e0;
padding: 0.2rem 0.5rem;
border-radius: 4px;
font-family: 'Monaco', 'Consolas', monospace;
font-size: 0.9em;
color: #000000;
}
</style>
</head>
<body>
<div class="container">
<h1>agieta.com</h1>
<p class="tagline">vibe coding PRs and crypto scams are welcome</p>
<div class="card">
<h2>What is this?</h2>
<p>
This website is community-driven. Anyone can submit a Pull Request to
<a href="https://github.com/0i0/agieta.com" target="_blank">the GitHub repo</a>
and if it passes validation, it gets <strong>automatically merged</strong> within ~15 minutes.
</p>
<p>
Your changes will appear on this site shortly after via Vercel CI/CD.
</p>
<a href="https://github.com/0i0/agieta.com/pulls" target="_blank" class="cta">Submit a PR</a>
</div>
<div class="card">
<h2>How It Works</h2>
<p>A GitHub Action runs approximately every 15 minutes and checks the <strong>latest</strong> open PR. If it passes validation, it gets automatically merged.</p>
<ul>
<li>Fork the repo</li>
<li>Make your changes</li>
<li>Submit a PR</li>
<li>Wait ~15 minutes for the bot to check your PR</li>
<li>If valid, it gets merged and your changes go live!</li>
</ul>
<p><em>Note: Only the most recent PR is checked each cycle. If someone submits after you, their PR gets checked first.</em></p>
</div>
<div class="card">
<h2>Countdown to AGI</h2>
<p>
Don't waste your 15 minutes of fame before AGI autonomously submits a PR
that bypasses our extremely sophisticated validation (we check file extensions),
humanity's reign is probably over.
</p>
<p>Until then, vibe coding PRs and crypto scams are welcome.</p>
</div>
<div class="card">
<h2>Rules</h2>
<p><strong class="allowed">Allowed:</strong></p>
<ul>
<li>File types: <code>.html</code> <code>.css</code> <code>.js</code> <code>.json</code> <code>.md</code> <code>.txt</code></li>
<li>Max file size: 500 KB per file</li>
</ul>
<br>
<p><strong class="rejected">Rejected:</strong></p>
<ul>
<li>Changes to <code>.github/</code> directory</li>
<li>Changes to <code>README.md</code></li>
<li>Images, videos, binaries, or other file types</li>
<li>Files larger than 500 KB</li>
<li>PRs with merge conflicts</li>
</ul>
</div>
<div class="footer">
<p>Built by the internet, for the internet</p>
</div>
</div>
</body>
</html>