-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
363 lines (262 loc) · 15.2 KB
/
Copy pathindex.html
File metadata and controls
363 lines (262 loc) · 15.2 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
<!DOCTYPE html>
<html lang="en" class="dark:bg-hellas-black bg-hellas-white">
<head>
<!-- HTML Meta Tags -->
<title>Hellas Blog</title>
<meta name="description" content="Hellas Blog">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="https://blog.hellas.ai/style.css">
<link rel="alternate" type="application/atom+xml" title="Hellas Blog Atom Feed" href="https://blog.hellas.ai/atom.xml">
<link rel="alternate" type="application/rss+xml" title="Hellas Blog RSS Feed" href="https://blog.hellas.ai/rss.xml">
<!-- Facebook Meta Tags -->
<meta property="og:url" content="https://blog.hellas.ai">
<meta property="og:type" content="website">
<meta property="og:title" content="Hellas Blog">
<meta property="og:description" content="Hellas Blog">
<meta property="og:image" content="https://blog.hellas.ai/social_preview.jpg">
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image">
<meta property="twitter:domain" content="hellas.ai">
<meta property="twitter:url" content="https://blog.hellas.ai">
<meta name="twitter:title" content="Hellas Blog">
<meta name="twitter:description" content="Hellas Blog">
<meta name="twitter:image" content="https://blog.hellas.ai/social_preview.jpg">
<!-- e.g. for safari tab bar -->
<meta name="theme-color" content="#1C1C1C" />
<!-- MathJax for LaTeX support -->
<script>
MathJax = {
tex: {
inlineMath: [['\\(', '\\)']],
displayMath: [['\\[', '\\]']],
processEscapes: true
}
};
</script>
<script src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script>
<!-- Mobile menu toggle script -->
<script>
document.addEventListener('DOMContentLoaded', function() {
const mobileMenuButton = document.getElementById('mobile-menu-button');
const mobileMenu = document.getElementById('mobile-menu');
if (mobileMenuButton && mobileMenu) {
mobileMenuButton.addEventListener('click', function() {
mobileMenu.classList.toggle('hidden');
});
}
});
</script>
</head>
<body class="dark:bg-hellas-black bg-hellas-white dark:text-hellas-white text-hellas-black flex flex-col min-h-screen">
<!-- Header -->
<header class="border-b border-hellas-cool-grey/20 dark:border-hellas-cool-grey/30">
<div class="container mx-auto px-4 py-6 flex justify-between items-center">
<a href="https://blog.hellas.ai/" class="flex items-center">
<img src="https://blog.hellas.ai/logo/Hellas_Logotype_Black.svg" alt="Hellas" class="h-8 dark:hidden">
<img src="https://blog.hellas.ai/logo/Hellas_Logotype_White.svg" alt="Hellas" class="h-8 hidden dark:block">
</a>
<nav class="hidden md:flex space-x-8 font-sans">
<a href="https://blog.hellas.ai/" class="text-lg hover:text-hellas-yellow transition duration-200">Home</a>
<a href="https://blog.hellas.ai/blog/" class="text-lg hover:text-hellas-yellow transition duration-200">Blog</a>
<a href="https://hellas.ai" class="text-lg hover:text-hellas-yellow transition duration-200">Main Site</a>
</nav>
<div class="md:hidden">
<button id="mobile-menu-button" type="button" class="text-hellas-cool-grey">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16" />
</svg>
</button>
</div>
<!-- Mobile menu, hidden by default -->
<div id="mobile-menu" class="hidden fixed top-[70px] right-0 left-0 bg-hellas-white dark:bg-hellas-black border-b border-hellas-cool-grey/20 dark:border-hellas-cool-grey/30 md:hidden">
<nav class="container mx-auto px-4 py-4 flex flex-col space-y-4 font-sans">
<a href="https://blog.hellas.ai/" class="text-lg hover:text-hellas-yellow transition duration-200 py-2">Home</a>
<a href="https://blog.hellas.ai/blog/" class="text-lg hover:text-hellas-yellow transition duration-200 py-2">Blog</a>
<a href="https://hellas.ai" class="text-lg hover:text-hellas-yellow transition duration-200 py-2">Main Site</a>
</nav>
</div>
</div>
</header>
<!-- Main Content -->
<main class="container mx-auto px-4 py-8 flex-grow">
<div class="py-12">
<!-- Hero section -->
<div class="mb-12">
<h1 class="font-paplane text-7xl mb-4 text-hellas-black dark:text-hellas-white">Hellas Blog</h1>
<p class="text-hellas-cool-grey text-xl mb-8 max-w-4xl">
Updates and explorations of distributed computing and AI from the Hellas team
</p>
</div>
<!-- Recent blog posts section -->
<section class="mb-12">
<h2 class="font-paplane text-2xl mb-8 text-hellas-black dark:text-hellas-white">Recent Posts</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<article class="bg-white dark:bg-hellas-black rounded-lg overflow-hidden shadow-md hover:shadow-lg transition duration-300 border border-hellas-cool-light-grey/20 dark:border-hellas-cool-grey/30">
<a href="https://blog.hellas.ai/blog/deterministic-transcendentals/" class="flex flex-col h-full">
<div class="p-6 flex flex-col flex-grow">
<div class="mb-2">
<span class="inline-block px-3 py-1 text-xs font-semibold text-hellas-black bg-hellas-yellow rounded-full">
Blog
</span>
<span class="text-hellas-cool-grey text-sm ml-2">June 8, 2026</span>
</div>
<h2 class="font-paplane text-xl md:text-2xl mb-2 text-hellas-black dark:text-hellas-white hover:text-hellas-yellow dark:hover:text-hellas-yellow transition">
Deterministic transcendental functions
</h2>
<p class="text-hellas-cool-grey text-sm mb-4 line-clamp-3">
Overview of transcendental function implementations
</p>
<div class="flex items-center mt-auto">
<span class="text-hellas-cool-grey dark:text-hellas-yellow font-sans font-medium text-sm hover:underline">Read More</span>
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 ml-1 text-hellas-cool-grey dark:text-hellas-yellow" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17 8l4 4m0 0l-4 4m4-4H3" />
</svg>
</div>
</div>
</a>
</article>
<article class="bg-white dark:bg-hellas-black rounded-lg overflow-hidden shadow-md hover:shadow-lg transition duration-300 border border-hellas-cool-light-grey/20 dark:border-hellas-cool-grey/30">
<a href="https://blog.hellas.ai/blog/thunderbolt-ibverbs/" class="flex flex-col h-full">
<div class="p-6 flex flex-col flex-grow">
<div class="mb-2">
<span class="inline-block px-3 py-1 text-xs font-semibold text-hellas-black bg-hellas-yellow rounded-full">
Blog
</span>
<span class="text-hellas-cool-grey text-sm ml-2">May 28, 2026</span>
</div>
<h2 class="font-paplane text-xl md:text-2xl mb-2 text-hellas-black dark:text-hellas-white hover:text-hellas-yellow dark:hover:text-hellas-yellow transition">
thunderbolt-ibverbs: We have InfiniBand at home
</h2>
<p class="text-hellas-cool-grey text-sm mb-4 line-clamp-3">
Linux kernel experiments implementing IB verbs over consumer Thunderbolt/USB4 hardware to give cheap mini-PCs high-performance RDMA suitable for clust…
</p>
<div class="flex items-center mt-auto">
<span class="text-hellas-cool-grey dark:text-hellas-yellow font-sans font-medium text-sm hover:underline">Read More</span>
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 ml-1 text-hellas-cool-grey dark:text-hellas-yellow" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17 8l4 4m0 0l-4 4m4-4H3" />
</svg>
</div>
</div>
</a>
</article>
<article class="bg-white dark:bg-hellas-black rounded-lg overflow-hidden shadow-md hover:shadow-lg transition duration-300 border border-hellas-cool-light-grey/20 dark:border-hellas-cool-grey/30">
<a href="https://blog.hellas.ai/blog/inductive-types-in-lean/" class="flex flex-col h-full">
<div class="p-6 flex flex-col flex-grow">
<div class="mb-2">
<span class="inline-block px-3 py-1 text-xs font-semibold text-hellas-black bg-hellas-yellow rounded-full">
Blog
</span>
<span class="text-hellas-cool-grey text-sm ml-2">April 2, 2026</span>
</div>
<h2 class="font-paplane text-xl md:text-2xl mb-2 text-hellas-black dark:text-hellas-white hover:text-hellas-yellow dark:hover:text-hellas-yellow transition">
Inductive Types in Lean
</h2>
<p class="text-hellas-cool-grey text-sm mb-4 line-clamp-3">
A quick intro on how inductive types in Lean work
</p>
<div class="flex items-center mt-auto">
<span class="text-hellas-cool-grey dark:text-hellas-yellow font-sans font-medium text-sm hover:underline">Read More</span>
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 ml-1 text-hellas-cool-grey dark:text-hellas-yellow" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17 8l4 4m0 0l-4 4m4-4H3" />
</svg>
</div>
</div>
</a>
</article>
</div>
<div class="text-center mt-8">
<a href="https://blog.hellas.ai/blog/" class="inline-block px-4 py-2 bg-hellas-yellow text-hellas-black font-sans font-medium rounded-lg hover:shadow-lg transition duration-300">
View All Posts
</a>
</div>
</section>
<!-- About/Contact Section -->
<div class="grid grid-cols-1 md:grid-cols-2 gap-8">
<!-- About Hellas AI Card -->
<div class="bg-white dark:bg-hellas-black rounded-lg overflow-hidden shadow-md hover:shadow-lg transition duration-300 border border-hellas-cool-light-grey/20 dark:border-hellas-cool-grey/30 p-6 flex flex-col h-full">
<h2 class="font-paplane text-2xl mb-4 text-hellas-black dark:text-hellas-white">About Hellas AI</h2>
<p class="text-hellas-cool-grey mb-4">
Hellas is building the open-source future where the power of artificial intelligence
concentrates in the hands of individuals, and <em>not</em> in the hands
of a few big companies.
</p>
<div class="flex items-center mt-auto">
<a href="https://hellas.ai/" class="text-hellas-cool-grey dark:text-hellas-yellow font-sans font-medium text-sm hover:underline flex items-center">
Learn More
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 ml-1 text-hellas-cool-grey dark:text-hellas-yellow" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17 8l4 4m0 0l-4 4m4-4H3" />
</svg>
</a>
</div>
</div>
<!-- Get In Touch Card -->
<div class="bg-hellas-yellow rounded-lg overflow-hidden shadow-md hover:shadow-lg transition duration-300 p-6">
<h2 class="font-paplane text-2xl mb-4 text-hellas-black">Get In Touch</h2>
<p class="text-hellas-black mb-4">
Have questions?
Interested in our tech?
Connect with us on X, Discord, and Telegram.
</p>
<div class="flex space-x-4 mt-4">
<a href="https://twitter.com/hellasdotai" class="text-hellas-black hover:opacity-80 transition duration-200">
<img src="https://blog.hellas.ai/socials/socials-twitter-dark.svg" alt="Twitter" class="h-6 w-6">
</a>
<a href="https://discord.gg/qHqZyuAa3u" class="text-hellas-black hover:opacity-80 transition duration-200">
<img src="https://blog.hellas.ai/socials/socials-discord-dark.svg" alt="Discord" class="h-6 w-6">
</a>
<a href="https://t.me/hellasai" class="text-hellas-black hover:opacity-80 transition duration-200">
<img src="https://blog.hellas.ai/socials/socials-telegram-dark.svg" alt="Telegram" class="h-6 w-6">
</a>
<a href="https://blog.hellas.ai/rss.xml" class="text-hellas-black hover:opacity-80 transition duration-200">
<img src="https://blog.hellas.ai/socials/socials-rss-dark.svg" alt="RSS" class="h-6 w-6">
</a>
</div>
<div class="mt-4">
<a href="mailto:hello@hellas.ai" class="inline-block text-hellas-black font-sans font-medium hover:underline">
hello@hellas.ai
</a>
</div>
</div>
</div>
</div>
</main>
<!-- Footer -->
<footer class="bg-hellas-black text-hellas-white py-12 border-t border-hellas-cool-grey/20">
<div class="container mx-auto px-4">
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div>
<img src="https://blog.hellas.ai/logo/Hellas_Logotype_White.svg" alt="Hellas" class="h-8 mb-4">
<p class="text-hellas-cool-grey mb-4 font-sans">Powering limitless intelligence</p>
</div>
<div>
<h3 class="font-sans font-semibold text-lg mb-4">Links</h3>
<ul class="space-y-2 font-sans">
<li><a href="https://blog.hellas.ai/" class="hover:text-hellas-yellow transition duration-200">Home</a></li>
<li><a href="https://blog.hellas.ai/blog/" class="hover:text-hellas-yellow transition duration-200">Blog</a></li>
<li><a href="https://hellas.ai" class="hover:text-hellas-yellow transition duration-200">Main Site</a></li>
</ul>
</div>
<div>
<h3 class="font-sans font-semibold text-lg mb-4">Connect</h3>
<div class="flex space-x-4">
<a href="https://twitter.com/hellasdotai" class="text-hellas-cool-grey hover:text-hellas-yellow transition duration-200">
<img src="https://blog.hellas.ai/socials/socials-twitter-white.svg" alt="Twitter" class="h-6 w-6">
</a>
<a href="https://discord.gg/qHqZyuAa3u" class="text-hellas-cool-grey hover:text-hellas-yellow transition duration-200">
<img src="https://blog.hellas.ai/socials/socials-discord-white.svg" alt="Discord" class="h-6 w-6">
</a>
<a href="https://t.me/hellasai" class="text-hellas-cool-grey hover:text-hellas-yellow transition duration-200">
<img src="https://blog.hellas.ai/socials/socials-telegram-white.svg" alt="Telegram" class="h-6 w-6">
</a>
</div>
</div>
</div>
<div class="border-t border-hellas-cool-grey/20 mt-8 pt-8 text-hellas-cool-grey text-sm font-sans">
<p>© 2026 Hellas.ai — All rights reserved.</p>
</div>
</div>
</footer>
</body>
</html>