LH-Tech-AI commited on
Commit
fa7a625
Β·
verified Β·
1 Parent(s): c98f7c9

Create runpod-team-funding.html

Browse files
Files changed (1) hide show
  1. runpod-team-funding.html +234 -0
runpod-team-funding.html ADDED
@@ -0,0 +1,234 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>No GPU. Bad iGPU. Then Runpod happened | SupraLabs Blog</title>
7
+ <style>
8
+ :root {
9
+ --bg: #0f0f0f;
10
+ --surface: #1a1a1a;
11
+ --border: #333;
12
+ --text: #e0e0e0;
13
+ --accent: #536bfe;
14
+ --muted: #888;
15
+ --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
16
+ }
17
+ * { margin: 0; padding: 0; box-sizing: border-box; }
18
+ body {
19
+ background-color: var(--bg);
20
+ color: var(--text);
21
+ font-family: 'Inter', -apple-system, sans-serif;
22
+ line-height: 1.6;
23
+ padding: 2rem;
24
+ }
25
+ code, pre, .mono { font-family: var(--font-mono); }
26
+ .container { max-width: 900px; margin: 0 auto; }
27
+
28
+ header {
29
+ border-bottom: 2px solid var(--border);
30
+ padding-bottom: 2rem;
31
+ margin-bottom: 3rem;
32
+ display: flex;
33
+ justify-content: space-between;
34
+ align-items: flex-end;
35
+ }
36
+ .logo-area h1 {
37
+ font-size: 1.2rem;
38
+ text-transform: uppercase;
39
+ letter-spacing: 2px;
40
+ color: var(--accent);
41
+ line-height: 1;
42
+ display: flex;
43
+ align-items: center;
44
+ gap: 10px;
45
+ }
46
+ .logo-area a { text-decoration: none; color: inherit; }
47
+ .logo-area { display: flex; align-items: center; gap: 10px; font-weight: bold; font-size: 1.2rem; }
48
+ nav a {
49
+ color: var(--text);
50
+ text-decoration: none;
51
+ margin-left: 1.5rem;
52
+ font-size: 0.9rem;
53
+ border-bottom: 1px solid transparent;
54
+ }
55
+ nav a:hover { border-bottom: 1px solid var(--accent); }
56
+
57
+ .post-header { margin-bottom: 3rem; }
58
+ .post-header h2 { font-size: 3rem; line-height: 1.1; margin-bottom: 1rem; font-weight: 800; }
59
+ .post-meta { font-family: var(--font-mono); color: var(--accent); font-size: 0.9rem; margin-bottom: 2rem; }
60
+
61
+ .post-content {
62
+ background: var(--surface);
63
+ border: 1px solid var(--border);
64
+ padding: 3rem;
65
+ margin-bottom: 4rem;
66
+ }
67
+ .post-content h2 { font-size: 1.8rem; margin: 2.5rem 0 1rem 0; color: var(--accent); }
68
+ .post-content h2:first-child { margin-top: 0; }
69
+ .post-content p { margin-bottom: 1.5rem; font-size: 1.1rem; color: var(--text); }
70
+ .post-content ul { margin-bottom: 1.5rem; padding-left: 1.5rem; }
71
+ .post-content li { margin-bottom: 0.5rem; font-size: 1.1rem; }
72
+ .post-content strong { color: #fff; }
73
+ .post-content code {
74
+ background: #111;
75
+ border: 1px solid var(--border);
76
+ padding: 2px 6px;
77
+ border-radius: 3px;
78
+ font-size: 0.95em;
79
+ color: var(--accent);
80
+ }
81
+
82
+ .callout {
83
+ border-left: 3px solid var(--accent);
84
+ background: #111;
85
+ padding: 1rem 1.5rem;
86
+ margin: 2rem 0;
87
+ font-family: var(--font-mono);
88
+ font-size: 0.95rem;
89
+ color: #ccc;
90
+ }
91
+ .callout span { display: block; color: var(--muted); font-size: 0.8rem; margin-bottom: 0.4rem; }
92
+
93
+ /* IO example pairs */
94
+ .io-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 2rem 0; }
95
+ .io-pair {
96
+ background: #111;
97
+ border: 1px solid var(--border);
98
+ padding: 1.2rem;
99
+ }
100
+ .io-pair .io-label {
101
+ font-family: var(--font-mono);
102
+ font-size: 0.72rem;
103
+ color: var(--muted);
104
+ margin-bottom: 0.5rem;
105
+ }
106
+ .io-pair .io-user { color: #ccc; font-size: 0.95rem; margin-bottom: 0.8rem; line-height: 1.5; }
107
+ .io-pair .io-result {
108
+ font-family: var(--font-mono);
109
+ color: var(--accent);
110
+ font-size: 0.9rem;
111
+ font-weight: 700;
112
+ }
113
+
114
+ /* Flow diagram */
115
+ .flow {
116
+ display: flex;
117
+ align-items: center;
118
+ justify-content: center;
119
+ gap: 0.8rem;
120
+ margin: 2rem 0;
121
+ flex-wrap: wrap;
122
+ }
123
+ .flow-box {
124
+ background: #111;
125
+ border: 1px solid var(--border);
126
+ padding: 0.8rem 1.2rem;
127
+ font-family: var(--font-mono);
128
+ font-size: 0.82rem;
129
+ text-align: center;
130
+ color: #ccc;
131
+ }
132
+ .flow-box.accent { border-color: var(--accent); color: var(--accent); }
133
+ .flow-arrow { color: var(--accent); font-size: 1.2rem; }
134
+
135
+ .table-wrap { overflow-x: auto; margin: 2rem 0; }
136
+ table { width: 100%; border-collapse: collapse; font-family: var(--font-mono); font-size: 0.88rem; }
137
+ th { background: #111; color: var(--accent); padding: 0.75rem 1rem; text-align: left; border: 1px solid var(--border); }
138
+ td { padding: 0.7rem 1rem; border: 1px solid var(--border); color: var(--text); }
139
+ tr:nth-child(even) td { background: #111; }
140
+
141
+ .tags { display: flex; gap: 0.5rem; margin-top: 2rem; flex-wrap: wrap; }
142
+ .tag { font-family: var(--font-mono); font-size: 0.7rem; padding: 2px 8px; border: 1px solid var(--border); border-radius: 4px; color: var(--muted); }
143
+
144
+ footer { margin-top: 6rem; padding-bottom: 2rem; font-size: 0.8rem; color: var(--muted); text-align: center; }
145
+
146
+ @media (max-width: 600px) {
147
+ .post-header h2 { font-size: 2rem; }
148
+ .post-content { padding: 1.5rem; }
149
+ header { flex-direction: column; align-items: flex-start; gap: 1rem; }
150
+ nav a { margin-left: 0; margin-right: 1rem; }
151
+ .io-grid { grid-template-columns: 1fr; }
152
+ .flow { flex-direction: column; }
153
+ }
154
+
155
+ </style>
156
+ </head>
157
+ <body>
158
+ <div class="container">
159
+ <header>
160
+ <div class="logo-area" style="font-size: 1.5em;">
161
+ <a href="./index.html"><h1><img src="./image.png" style="height: 2em"> SupraLabs_</h1></a>
162
+ </div>
163
+ <nav>
164
+ <a href="./index.html#news">News</a>
165
+ <a href="https://huggingface.co/SupraLabs" target="blank">HuggingFace</a>
166
+ <a href="./index.html#hardware">Hardware</a>
167
+ </nav>
168
+ </header>
169
+
170
+ <article>
171
+ <div class="post-header">
172
+ <div class="post-meta">// 2026-08-31 | Lab</div>
173
+ <h2>No GPU.<br>Bad iGPU.<br>Then Runpod happened :D</h2>
174
+ </div>
175
+
176
+ <div class="post-content">
177
+
178
+ <p>AxionLab does not have a GPU. Not a 5090. Not a 4090. Not even a polite little 3060. Just a fairly bad iGPU that treats real training like a personal insult πŸ˜‚</p>
179
+ <p>That is a problem when you want to train models, not slideshows.</p>
180
+
181
+ <h2>Kaggle was the workaround. It was also the joke.</h2>
182
+ <p>Two T4s. Free-ish. Fine until it isn't. Kernels dying mid-run. Sessions vanishing. Crashes that feel personal. The classic Kaggle tax: wait, retry, pray, lose the notebook anyway 😭</p>
183
+ <p>AxionLab was done being a Kaggle speedrun.</p>
184
+
185
+ <h2>Then a sponsor showed up</h2>
186
+ <p>We found a sponsor for <strong>Runpod</strong>. Real GPUs. Real persistence. No more begging a free notebook not to explode.</p>
187
+ <p>We also founded a small team around it. Not a corporation. A lab that can actually press start and mean it.</p>
188
+
189
+ <h2>We built a tiny dashboard</h2>
190
+ <p>Not a platform. Not a product launch. A small internal dashboard to start and manage pods without living in fifteen browser tabs.</p>
191
+
192
+ <div class="flow">
193
+ <div class="flow-box">Pick a pod</div>
194
+ <div class="flow-arrow">β†’</div>
195
+ <div class="flow-box accent">Start / stop<br><small>manage it</small></div>
196
+ <div class="flow-arrow">β†’</div>
197
+ <div class="flow-box">JupyterLab<br><small>or bash</small></div>
198
+ </div>
199
+
200
+ <p>One place to spin pods up. One place to shut them down. Direct jump into <strong>JupyterLab</strong>. Direct jump into the <strong>bash terminal</strong>. That is the whole interface. Dead simple. Exactly what we needed.</p>
201
+
202
+ <a href="https://lh-tech.de/runpod/deploy.html" style="color: #536bfe;">Visit it at https://lh-tech.de/runpod/deploy.html</a>
203
+
204
+ <div class="callout">
205
+ <span>// stack</span>
206
+ Runpod GPU &nbsp;β†’ sponsored compute<br>
207
+ Dashboard &nbsp;&nbsp;β†’ start / manage pods<br>
208
+ JupyterLab β†’ one click<br>
209
+ Bash &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;β†’ one click
210
+ </div>
211
+
212
+ <h2>AxionLab is happy now</h2>
213
+ <p>No more crashing kernels. No more mystery Kaggle deaths. No more two T4s pretending to be a lab πŸ˜‚πŸ˜‚πŸ˜‚</p>
214
+ <p>Just a pod, a notebook, a terminal, and work that actually stays alive.</p>
215
+ <p><strong>Small team. Sponsored Runpod. Tiny dashboard. Finally training like we meant it.</strong></p>
216
+
217
+ <div class="tags">
218
+ <span class="tag">#axionlab</span>
219
+ <span class="tag">#runpod</span>
220
+ <span class="tag">#sponsor</span>
221
+ <span class="tag">#dashboard</span>
222
+ <span class="tag">#jupyterlab</span>
223
+ <span class="tag">#gpu</span>
224
+ <span class="tag">#lab</span>
225
+ </div>
226
+ </div>
227
+ </article>
228
+
229
+ <footer>
230
+ <p class="mono">&copy; 2026 SupraLabs // Built for the community.</p>
231
+ </footer>
232
+ </div>
233
+ </body>
234
+ </html>