-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog.html
More file actions
495 lines (417 loc) · 15.7 KB
/
blog.html
File metadata and controls
495 lines (417 loc) · 15.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blog - System Intelligence</title>
<link rel="icon" type="image/png" href="logo.png">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Sixtyfour&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
height: 100%;
}
body {
font-family: 'Iowan Old Style BT', Georgia, serif;
font-size: 17px;
line-height: 1.5;
color: #e8e8e8;
background: #1a1a1a;
font-weight: 400;
-webkit-font-smoothing: antialiased;
min-height: 100%;
display: flex;
flex-direction: column;
}
.container {
max-width: 700px;
margin: 0 auto;
padding: 0 1rem;
flex: 1;
display: flex;
flex-direction: column;
}
header {
padding: 40px 0 20px;
display: flex;
justify-content: flex-end;
align-items: center;
}
.theme-toggle {
font-size: 1.2rem;
background: none;
border: none;
color: #d4d4d4;
cursor: pointer;
padding: 0.5rem;
transition: color 0.3s ease;
}
.theme-toggle:hover {
color: #e8e8e8;
}
.logo {
font-family: 'Sixtyfour', monospace;
font-size: 14px;
font-weight: 400;
color: #e8e8e8;
text-decoration: none;
letter-spacing: 0.02em;
text-transform: uppercase;
}
.logo:hover {
opacity: 0.8;
}
nav {
font-family: 'Iowan Old Style BT', Georgia, serif;
display: flex;
gap: 1.5rem;
font-size: 15px;
align-items: center;
}
nav a {
font-family: 'Iowan Old Style BT', Georgia, serif;
font-weight: 500;
color: #d4d4d4;
text-decoration: none;
letter-spacing: -0.01em;
}
nav a:hover {
text-decoration: underline;
text-decoration-color: rgba(232, 232, 232, 0.3);
text-underline-offset: 2px;
}
main {
padding: 30px 0 120px;
flex: 1;
}
.page-title {
font-family: 'Iowan Old Style BT', Georgia, serif;
font-size: 2.5rem;
font-weight: 600;
line-height: 1.1;
margin-bottom: 0.5rem;
padding-top: 0.5rem;
color: #e8e8e8;
}
.page-subtitle {
font-family: 'Iowan Old Style BT', Georgia, serif;
font-size: 15px;
font-style: italic;
line-height: 1.5;
/* color: #737373; */
margin-bottom: 1rem;
font-weight: 500;
}
.blog-list {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 2rem;
padding-top: 2.5rem;
}
.blog-item {
display: flex;
flex-direction: column;
background: #232323;
border: 1px solid #333333;
border-radius: 8px;
overflow: hidden;
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.blog-item:hover {
transform: translateY(-4px);
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}
.blog-image {
width: 100%;
height: 300px;
object-fit: cover;
background: #2a2a2a;
}
.blog-content {
padding: 1.75rem;
display: flex;
flex-direction: column;
gap: 0.75rem;
flex: 1;
}
.blog-title {
font-family: 'Iowan Old Style BT', Georgia, serif;
font-size: 1.1rem;
font-weight: 600;
line-height: 1.3;
color: #e8e8e8;
margin-bottom: 0;
}
.blog-title a {
color: #e8e8e8;
text-decoration: none;
transition: color 0.2s ease;
}
.blog-title a:hover {
color: #6dc04f;
}
.blog-excerpt {
font-family: 'Iowan Old Style BT', Georgia, serif;
font-size: 0.95rem;
line-height: 1.6;
color: #b8b8b8;
margin-top: 0.5rem;
}
.blog-meta {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
font-size: 0.85rem;
color: #888888;
font-weight: 400;
margin-top: 1rem;
padding-top: 1rem;
border-top: 1px solid #333333;
}
.back-link {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
text-align: center;
padding: 40px 0 20px;
margin-top: 60px;
}
.back-link a {
color: #888888;
text-decoration: none;
font-size: 13px;
font-weight: 400;
}
.back-link a:hover {
text-decoration: underline;
text-decoration-color: rgba(232, 232, 232, 0.3);
text-underline-offset: 2px;
}
footer {
font-family: 'Iowan Old Style BT', Georgia, serif;
border-top: 1px solid #333333;
padding: 10px 0 30px;
margin-top: 0;
}
.footer-content {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 0.5rem;
font-size: 0.9rem;
font-weight: 500;
color: #888888;
}
.footer-content > div:first-child {
font-family: 'Iowan Old Style BT', Georgia, serif;
}
.footer-links {
display: flex;
gap: 1rem;
align-items: center;
}
.footer-links a {
font-family: 'Iowan Old Style BT', Georgia, serif;
color: #888888;
text-decoration: none;
font-size: 1.1rem;
position: relative;
transition: color 0.3s ease-in-out, opacity 0.3s ease-in-out;
display: inline-flex;
align-items: center;
justify-content: center;
}
.footer-links a:hover {
color: #9b9b9b;
}
@media (max-width: 768px) {
.container {
padding: 0 24px;
}
header {
padding: 30px 0 40px;
justify-content: flex-start;
}
nav {
gap: 2rem;
}
.blog-list {
grid-template-columns: 1fr;
gap: 2rem;
}
.blog-title {
font-size: 1rem;
}
.page-title {
font-size: 2rem;
}
.blog-content {
padding: 1.5rem;
}
.blog-image {
height: 250px;
}
main {
padding: 40px 0 80px;
}
footer {
padding-bottom: 2rem;
}
.footer-content {
flex-direction: column;
align-items: flex-start;
gap: 1.25rem;
}
.footer-links {
flex-direction: column;
gap: 1.25rem;
}
}
</style>
</head>
<body>
<div class="container">
<header>
<nav>
<a href="index.html">Home</a>
<a href="members.html">Team</a>
<a href="index.html#join-us">About</a>
<button class="theme-toggle" id="theme-toggle" aria-label="Toggle theme">
<i class="fa-solid fa-moon"></i>
</button>
</nav>
</header>
<main>
<h1 class="page-title">Research Notes</h1>
<p class="page-subtitle">Sharing progress, findings, and ideas from the team</p>
<div class="blog-list">
<article class="blog-item">
<img src="blogs/blog2.jpg" alt="Blog post thumbnail" class="blog-image">
<div class="blog-content">
<h2 class="blog-title">
<a href="https://www.sigops.org/2025/defining-system-intelligence/" target="_blank" rel="noopener">Defining System Intelligence</a>
</h2>
<!-- <p class="blog-excerpt">Despite the exciting vision of system intelligence, its definition has remained murky, often hindering progress toward its realization. This blog tries to make it clear.</p> -->
<div class="blog-meta">Xuan Feng, Peng Cheng, Qi Chen, Shan Lu, Chieh-Jan Mike Liang, Bogdan Alexandru Stoica, Zhongxin Guo, Jiahang Xu, Tianyin Xu, and Lidong Zhou · November 19, 2025</div>
</div>
</article>
<article class="blog-item">
<img src="blogs/blog1.png" alt="Blog post thumbnail" class="blog-image">
<div class="blog-content">
<h2 class="blog-title">
<a href="https://www.sigops.org/2025/the-next-horizon-of-system-intelligence/" target="_blank" rel="noopener">The Next Horizon of System Intelligence</a>
</h2>
<!-- <p class="blog-excerpt">This article originally appeared on SIGOPS Blog. We explore how AI capabilities can advance to design, implement, and operate next-generation computing systems.</p> -->
<div class="blog-meta">Chieh-Jan Mike Liang, Haoran Qiu, Francis Y. Yan, Tianyin Xu, Lidong Zhou · September 29, 2025</div>
</div>
</article>
</div>
</main>
<div class="back-link">
<a href="index.html">← Back</a>
</div>
<footer>
<div class="footer-content">
<div>System Intelligence Community © 2025</div>
<div class="footer-links">
<a href="mailto:systemintelligence0@gmail.com" aria-label="Email"><i class="fa-solid fa-envelope"></i></a>
<a href="https://github.com/sys-intelligence" target="_blank" rel="noopener" aria-label="GitHub"><i class="fa-brands fa-github"></i></a>
<a href="https://join.slack.com/t/sys-intelligence/shared_invite/zt-3hpkgr2aa-NnuPxUbyHr45S89DFi_N1A" target="_blank" rel="noopener" aria-label="Slack"><i class="fa-brands fa-slack"></i></a>
<a href="https://x.com/SysIntelligenc" target="_blank" rel="noopener" aria-label="X"><i class="fa-brands fa-x-twitter"></i></a>
<a href="https://huggingface.co/sys-intelligence" target="_blank" rel="noopener" aria-label="Hugging Face"><img src="hf-logo.png" alt="Hugging Face" style="width: 1.1em; height: 1.1em; vertical-align: middle;"></a>
</div>
</div>
</footer>
</div>
<script>
const themeToggle = document.getElementById('theme-toggle');
const body = document.body;
const icon = themeToggle.querySelector('i');
// Check for saved theme preference or default to dark
const currentTheme = localStorage.getItem('theme') || 'dark';
if (currentTheme === 'light') {
setLightMode();
}
themeToggle.addEventListener('click', () => {
if (body.style.background === 'rgb(26, 26, 26)' || body.style.background === '#1a1a1a' || !body.style.background) {
setLightMode();
localStorage.setItem('theme', 'light');
} else {
setDarkMode();
localStorage.setItem('theme', 'dark');
}
});
function setLightMode() {
body.style.background = '#ffffff';
body.style.color = '#282828';
document.querySelectorAll('.blog-item').forEach(item => {
item.style.background = '#ffffff';
item.style.borderColor = '#e8e8e8';
});
document.querySelectorAll('.blog-title').forEach(title => {
title.style.color = '#282828';
});
document.querySelectorAll('.blog-title a').forEach(link => {
link.style.color = '#282828';
});
document.querySelectorAll('.blog-meta').forEach(meta => {
meta.style.color = '#676767';
meta.style.borderTopColor = '#e8e8e8';
});
document.querySelectorAll('.blog-excerpt').forEach(excerpt => {
excerpt.style.color = '#504945';
});
document.querySelector('.page-title').style.color = '#282828';
document.querySelector('.page-subtitle').style.color = '#504945';
document.querySelector('footer').style.borderTopColor = '#e5e5e5';
document.querySelector('.footer-content').style.color = '#676767';
document.querySelectorAll('.footer-links a').forEach(link => {
link.style.color = '#676767';
});
document.querySelector('.back-link a').style.color = '#676767';
document.querySelectorAll('nav a').forEach(link => {
link.style.color = '#3c3836';
});
icon.className = 'fa-solid fa-sun';
}
function setDarkMode() {
body.style.background = '#1a1a1a';
body.style.color = '#e8e8e8';
document.querySelectorAll('.blog-item').forEach(item => {
item.style.background = '#232323';
item.style.borderColor = '#333333';
});
document.querySelectorAll('.blog-title').forEach(title => {
title.style.color = '#e8e8e8';
});
document.querySelectorAll('.blog-title a').forEach(link => {
link.style.color = '#e8e8e8';
});
document.querySelectorAll('.blog-meta').forEach(meta => {
meta.style.color = '#888888';
meta.style.borderTopColor = '#333333';
});
document.querySelectorAll('.blog-excerpt').forEach(excerpt => {
excerpt.style.color = '#b8b8b8';
});
document.querySelector('.page-title').style.color = '#e8e8e8';
document.querySelector('.page-subtitle').style.color = '#b8b8b8';
document.querySelector('footer').style.borderTopColor = '#333333';
document.querySelector('.footer-content').style.color = '#888888';
document.querySelectorAll('.footer-links a').forEach(link => {
link.style.color = '#888888';
});
document.querySelector('.back-link a').style.color = '#888888';
document.querySelectorAll('nav a').forEach(link => {
link.style.color = '#d4d4d4';
});
icon.className = 'fa-solid fa-moon';
}
</script>
</body>
</html>