-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
207 lines (200 loc) · 6.85 KB
/
Copy pathindex.html
File metadata and controls
207 lines (200 loc) · 6.85 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Presentations — NiPreps</title>
<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=Urbanist:wght@300;400;600;800&display=swap" rel="stylesheet">
<style>
:root {
--accent: #1c487b;
--accent-light: #2a6cb8;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: "Urbanist", sans-serif;
color: #1a1a1a;
background: #fafafa;
line-height: 1.6;
}
header {
background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
color: #fff;
padding: 2.5rem 2rem 2rem;
}
header h1 {
font-weight: 800;
font-size: 2rem;
margin-bottom: .25rem;
}
header p {
font-weight: 300;
font-size: 1.1rem;
opacity: .9;
}
header a { color: #fff; }
main {
max-width: 56rem;
margin: 2rem auto;
padding: 0 1.5rem;
}
.year-heading {
font-weight: 800;
font-size: 1.3rem;
color: var(--accent);
margin: 2rem 0 .75rem;
border-bottom: 2px solid var(--accent);
padding-bottom: .25rem;
}
.talk-list {
list-style: none;
}
.talk-list li {
margin-bottom: .5rem;
}
.talk-list a {
display: grid;
grid-template-columns: 1fr auto;
grid-template-rows: auto auto;
column-gap: .75rem;
padding: .75rem 1rem;
background: #fff;
border-radius: 6px;
text-decoration: none;
color: inherit;
border: 1px solid #e8e8e8;
transition: border-color .15s, box-shadow .15s;
}
.talk-list a:hover {
border-color: var(--accent);
box-shadow: 0 2px 8px rgba(28,72,123,.12);
}
.talk-event {
font-weight: 600;
font-size: .85rem;
color: #888;
grid-column: 2;
grid-row: 1 / -1;
align-self: center;
white-space: nowrap;
}
.talk-title {
font-weight: 600;
grid-column: 1;
}
.talk-venue {
font-weight: 300;
color: #666;
font-size: .82rem;
}
footer {
text-align: center;
padding: 2rem;
font-size: .85rem;
color: #aaa;
}
footer a { color: var(--accent); }
</style>
</head>
<body>
<header>
<h1>NiPreps Presentations</h1>
<p>Slide decks from <a href="https://www.nipreps.org">NiPreps</a> talks, workshops & educational sessions</p>
</header>
<main>
<h2 class="year-heading">2026</h2>
<ul class="talk-list">
<li><a href="2026-OHBM-OSSIG-Educational/">
<span class="talk-event">OHBM Educational - OSSIG / SEASIG</span>
<span class="talk-title">Compute Once, Reuse Forever - Sustainable Science with NiPreps</span>
<span class="talk-venue">OHBM 2026, Bordeaux</span>
</a></li>
<li><a href="2026-OHBM-AI-Educational/">
<span class="talk-event">OHBM Educational</span>
<span class="talk-title">Using LLMs in Neuroimaging Research - LLMs for Coding</span>
<span class="talk-venue">OHBM 2026, Bordeaux</span>
</a></li>
<li><a href="2026-OHBM-BrainHack-BIDS/">
<span class="talk-event">BrainHack</span>
<span class="talk-title">Introduction to BIDS</span>
<span class="talk-venue">OHBM 2026, Bordeaux</span>
</a></li>
<li><a href="20260611-BrainHack/">
<span class="talk-event">BrainHack</span>
<span class="talk-title">NiPreps TrainTrack</span>
<span class="talk-venue">OHBM 2026, Bordeaux</span>
</a></li>
</ul>
<h2 class="year-heading">2025</h2>
<ul class="talk-list">
<li><a href="2025-MRITogether/">
<span class="talk-event">MRI Together</span>
<span class="talk-title">Analysis-Grade MRI at Scale: the NiPreps experience</span>
<span class="talk-venue">ESMRMB MRI Together 2025, Online</span>
</a></li>
<li><a href="2025-esmrmb/">
<span class="talk-event">ESMRMB</span>
<span class="talk-title">Microstructure workshop | Preprocessing & pipelines</span>
<span class="talk-venue">ESMRMB 2025, Marseille</span>
</a></li>
</ul>
<h2 class="year-heading">2024</h2>
<ul class="talk-list">
<li><a href="2024-fMRIPrep-Bootcamp-Geneva/home/">
<span class="talk-event">Bootcamp</span>
<span class="talk-title">fMRIPrep Bootcamp Geneva 2024</span>
<span class="talk-venue">University of Geneva — 8 sessions covering fMRIPrep, BIDS, containers & HPC</span>
</a></li>
<li><a href="2024-BrainHack/">
<span class="talk-event">BrainHack</span>
<span class="talk-title">NiPreps @ BrainHack 2024</span>
<span class="talk-venue">BrainHack 2024</span>
</a></li>
</ul>
<h2 class="year-heading">2023</h2>
<ul class="talk-list">
<li><a href="2023-EPFL/">
<span class="talk-event">EPFL</span>
<span class="talk-title">Standardizing neuroimaging workflows</span>
<span class="talk-venue">Journal Club at EPFL</span>
</a></li>
</ul>
<h2 class="year-heading">2022</h2>
<ul class="talk-list">
<li><a href="2022-OHBM/">
<span class="talk-event">OHBM</span>
<span class="talk-title">Executing BIDS-Apps on large datasets and the NiPreps framework</span>
<span class="talk-venue">OHBM 2022 Educational Session, Glasgow</span>
</a></li>
<li><a href="2022-INCF-MRIQC/">
<span class="talk-event">INCF</span>
<span class="talk-title">Standardization in QA/QC</span>
<span class="talk-venue">INCF Neuroinformatics Assembly 2022</span>
</a></li>
</ul>
<h2 class="year-heading">2020</h2>
<ul class="talk-list">
<li><a href="2020-TORW/">
<span class="talk-event">TORW</span>
<span class="talk-title">Building next-generation preprocessing pipelines: the fMRIPrep experience</span>
<span class="talk-venue">Think Open Rovereto Workshop 2020, Rovereto, Italy</span>
</a></li>
<li><a href="2020-BHD/">
<span class="talk-event">BHD</span>
<span class="talk-title">NiPreps | NeuroImaging PREProcessing toolS</span>
<span class="talk-venue">BrainHack Donostia 2020</span>
</a></li>
<li><a href="2020-ORN-Workshop/">
<span class="talk-event">ORN Workshop</span>
<span class="talk-title">Building communities around reproducible workflows</span>
<span class="talk-venue">Open and Reproducible Neuroimaging Workshop</span>
</a></li>
</ul>
</main>
<footer>
Licensed under <a href="https://creativecommons.org/licenses/by/4.0/">CC-BY 4.0</a> · <a href="https://github.com/nipreps/presentations">Source on GitHub</a>
</footer>
</body>
</html>