-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathevents.js
More file actions
166 lines (166 loc) · 3.88 KB
/
Copy pathevents.js
File metadata and controls
166 lines (166 loc) · 3.88 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
export const events = [
// Friday September 4, 2026: 4 PM - 7 PM
{
id: 'fri-1',
title: 'Registration + Reception',
start: '2026-09-04T16:30:00',
end: '2026-09-04T17:00:00',
description: 'Initial registration and welcome reception',
extendedProps: {
type: 'events'
}
},
{
id: 'fri-2',
title: 'Opening Ceremony + Keynote: Russ Poldrack',
start: '2026-09-04T17:00:00',
end: '2026-09-04T18:00:00',
description: 'Opening ceremony and keynote presentation',
extendedProps: {
type: 'keynote',
link: '#/speakers'
}
},
{
id: 'fri-3',
title: 'Project Pitches',
start: '2026-09-04T18:00:00',
end: '2026-09-04T19:00:00',
description: 'Teams present their initial project ideas',
extendedProps: {
type: 'hacking'
}
},
// Saturday Events
{
id: 'sat-1',
title: 'Registration + Breakfast',
start: '2026-09-05T09:00:00',
end: '2026-09-05T10:00:00',
description: 'Morning registration and breakfast',
extendedProps: {
type: 'events'
}
},
{
id: 'sat-2',
title: 'Project Shopping Period',
start: '2026-09-05T10:00:00',
end: '2026-09-05T11:00:00',
description: 'Official start of hacking period',
extendedProps: {
type: 'hacking'
}
},
{
id: 'sat-4',
title: 'How to measure and reduce the carbon footprint of fMRI data analysis',
start: '2026-09-05T11:00:00',
end: '2026-09-05T12:00:00',
extendedProps: {
type: 'educational',
link: '#/speakers#educational-1'
}
},
{
id: 'sat-5',
title: 'Jonathan Magnolia Gilligan',
start: '2026-09-05T12:00:00',
end: '2026-09-05T13:00:00',
description: 'Educational sessions available on demand',
extendedProps: {
type: 'educational',
link: '#/speakers#educational-2'
}
},
{
id: 'sat-6',
title: 'Outdoor Social',
start: '2026-09-05T13:00:00',
end: '2026-09-05T14:00:00',
description: 'Educational sessions available on demand',
extendedProps: {
type: 'events'
}
},
{
id: 'sat-7',
title: 'Joining a World Wide Lab',
start: '2026-09-05T14:00:00',
end: '2026-09-05T15:00:00',
extendedProps: {
type: 'educational',
link: '#/speakers#educational-3'
}
},
// {
// id: 'sat-8',
// title: 'Unconference',
// start: '2026-09-05T14:30:00',
// end: '2026-09-05T15:00:00',
// extendedProps: {
// type: 'unconference'
// }
// },
{
id: 'sat-9',
title: 'Cognitive Neuroscience in the Foundation Model Era: Lessons in Reproducibility',
start: '2026-09-05T15:00:00',
end: '2026-09-05T16:00:00',
extendedProps: {
type: 'educational',
link: '#/speakers#educational-4'
//link: 'https://github.com/brainhack-vandy/traintrack'
}
},
// {
// id: 'sat-10',
// title: 'Unconference',
// start: '2026-09-05T15:30:00',
// end: '2026-09-05T16:00:00',
// extendedProps: {
// type: 'unconference'
// }
// },
{
id: 'sat-12',
title: 'Social',
start: '2026-09-05T18:00:00',
end: '2026-09-05T19:30:00',
description: 'Evening social event',
extendedProps: {
type: 'events'
}
},
// Sunday Events
{
id: 'sun-1',
title: 'Breakfast',
start: '2026-09-06T09:00:00',
end: '2026-09-06T09:30:00',
description: 'Morning brunch',
extendedProps: {
type: 'events'
}
},
{
id: 'sun-2',
title: 'Hacking Continued',
start: '2026-09-06T09:30:00',
end: '2026-09-06T12:30:00',
description: 'Hacking period',
extendedProps: {
type: 'hacking'
}
},
{
id: 'sun-3',
title: 'Project Presentations + Wrap Up',
start: '2026-09-06T12:30:00',
end: '2026-09-06T14:00:00',
description: 'Final project presentations and event conclusion',
extendedProps: {
type: 'hacking'
}
}
]