-
Notifications
You must be signed in to change notification settings - Fork 0
/
locations.html
1555 lines (1241 loc) · 91.7 KB
/
locations.html
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
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<title>Brainhack Global</title>
<!-- Google fonts -->
<link href='http://fonts.googleapis.com/css?family=Roboto:400,500,700' rel='stylesheet' type='text/css'>
<link href="https://fonts.googleapis.com/css?family=Titillium+Web:600i" rel="stylesheet">
<!-- font awesome -->
<link href="assets/font-awesome-4.6.3/css/font-awesome.min.css" rel="stylesheet">
<!-- bootstrap -->
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css" />
<!-- animate.css -->
<link rel="stylesheet" href="assets/animate/animate.css" />
<link rel="stylesheet" href="assets/animate/set.css" />
<!-- gallery -->
<link rel="stylesheet" href="assets/gallery/blueimp-gallery.min.css">
<!-- favicon -->
<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon">
<link rel="icon" href="images/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="assets/style.css">
</head>
<body>
<div class="topbar animated fadeInLeftBig"></div>
<!-- Header Starts -->
<div class="navbar-wrapper">
<div class="container">
<div class="navbar navbar-inverse navbar-fixed-top" role="navigation" id="top-nav">
<div class="container">
<div class="navbar-header">
<!-- Logo Starts -->
<a class="navbar-brand" href="http://brainhack.org/"><img src="images/logo_1.png" alt="logo">
</a>
<!-- #Logo Ends -->
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<!-- Nav Starts -->
<!-- Nav Starts -->
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav navbar-right scroll">
<li class="active"><a href="index.html#home">Home</a></li>
<li><a href="index.html#about">About</a></li>
<li><a href="index.html#schedule">Schedule</a></li>
<li><a href="index.html#details">Locations</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="https://hackpad.com/Brainhack-Global-2017-Video-Content-ZP53JJlhGyJ">Broadcasts</a></li>
<li><a href="codeofconduct.html">Code of Conduct</a></li>
</ul>
</div>
<!-- #Nav Ends -->
<!-- #Nav Ends -->
</div>
</div>
</div>
</div>
<div id="home" class="container spacer">
<div class="row">
<h1 class="text-center wowload fadeInLeft" id="locations-title">Locations and Details</h1>
</div>
</div>
<!-- start Beijing -->
<div id="Beijing" class="container">
<div class="row">
<h2 class="text-center" id="beijing">Beijing, China</h2>
<div class="col-md-8 col-md-offset-2">
<p><i class="fa fa-calendar"></i> March 2-5</p>
<p><i class="fa fa-map-marker"></i> <a href="http://www.google.cn/maps/place/%E5%8C%97%E4%BA%AC%E5%B8%82%E6%9C%9D%E9%98%B3%E5%8C%BA%E5%A5%A5%E8%BF%90%E6%9D%91%E4%B8%AD%E5%9B%BD%E7%A7%91%E5%AD%A6%E9%99%A2%E5%BF%83%E7%90%86%E7%A0%94%E7%A9%B6%E6%89%80+%E9%82%AE%E6%94%BF%E7%BC%96%E7%A0%81:+100101/@40.0046284,116.3753954,17z/data=!4m5!3m4!1s0x35f054f937125ddd:0x217af006c8ecb9b9!8m2!3d40.005437!4d116.3763215"> Institute Of Psychology, CAS, South Building, 9th floor</a>
</p>
<p><i class="fa fa-star"></i> Chair: Xinian Zuo </p>
<p class="loacation-description">The 2017 Brainhack in Beijing is a regional event of Brainhack Global 2017.</p>
<p>Contact: <a href="mailto:">[email protected]</a>
</p>
<h3>Schedule</h3>
TBD
<h3>Organizers</h3>
<p class="col-md-3">Xinian Zuo</p>
</div>
</div>
<hr>
</div>
<!-- end Beijing -->
<!-- start Singapore -->
<div id="Singapore" class="container">
<div class="row">
<h2 class="text-center" id="singapore">TBD, Singapore</h2>
<div class="col-md-8 col-md-offset-2">
<p><i class="fa fa-calendar"></i> March 2-5</p>
<p><i class="fa fa-map-marker"></i> <a href="https://www.google.com/maps/place/National+University+of+Singapore/@1.2966426,103.7742052,17z/data=!3m1!4b1!4m5!3m4!1s0x31da1a56784202d9:0x488d08d6c1f88d6b!8m2!3d1.2966426!4d103.7763939"> National University of Singapore</a>
</p>
<p><i class="fa fa-star"></i> Chair: Anqi Qlu </p>
<p class="loacation-description">The 2017 Brainhack in Singapore is a regional event of Brainhack Global 2017.</p>
<p>Contact: <a href="mailto:">[email protected]</a>
</p>
<h3>Schedule</h3>
TBD
<h3>Organizers</h3>
<p class="col-md-3">Anqi Qlu</p>
</div>
</div>
<hr>
</div>
<!-- end Singapore -->
<!-- start Wako -->
<div id="Wako" class="container">
<div class="row">
<h2 class="text-center" id="Wako">Wako, Japan</h2>
<div class="col-md-8 col-md-offset-2">
<p><i class="fa fa-calendar"></i> March 2-4</p>
<p><i class="fa fa-map-marker"></i> <a href="https://www.google.com/maps/place/RIKEN+Brain+Science+Institute+(BSI)+Central+Building/@35.7790283,139.6106369,17z/data=!3m1!4b1!4m5!3m4!1s0x6018ebfce848305d:0x7ae6bbbec5712881!8m2!3d35.7790283!4d139.6128256"> RIKEN</a>
</p>
<p><i class="fa fa-star"></i> Chair: Yoshihiro Okumura </p>
<p class="loacation-description"><a href=https://www.neuroinf.jp/brainhack-global-2017/>Brainhack Global 2017 Japan </a>will be held at the RIKEN Brain Science Institute for 3 days (March 2-4, including <a href=https://en.wikipedia.org/wiki/Hinamatsuri>Hinamatsuri festival</a>) during this period.</p>
<p>Brainhack Global 2017 Japan is an event where researchers have an opportunity to collaborate on projects and related developments, share knowledge and engage in cooperative planning. The central theme for this event is thus cooperation and joint development with a goal towards promoting compatibility between existing systems and the creation of common formats. We hope this event will spur the development of common APIs and services such as Web-based information visualization and image processing systems.</p>
<p>During this period you may share information using the dedicated channel #bhg17-japan in the <a href=https://brainhack.slack.com/messages>Brainhack Slack Site</a>.</p>
<p>We call for participation from young researchers, students and engineers who are currently involved in brain sciences as well as those who are interested in this field.</p>
<p>Please visit from here:</p>
<p><a href=https://www.neuroinf.jp/brainhack-global-2017/>https://www.neuroinf.jp/brainhack-global-2017/</a></p>
<p>Contact: <a href="mailto:">[email protected]</a>
</p>
<h3>Schedule</h3>
<a href="https://calendar.google.com/calendar/embed?showTitle=0&showNav=0&showPrint=0&showTabs=0&showCalendars=0&mode=WEEK&dates=20170302%2F20170305&height=500&wkst=2&bgcolor=%23FFFFFF&src=j0qn81jhmmnp6otpkbf96l36ag%40group.calendar.google.com&ctz=Asia/Tokyo" target="_blank">Google Calendar</a>
<!-- <div class="text-center">
<div class="responsive-iframe-container">
<iframe frameborder="0" height="600" scrolling="no" src="https://calendar.google.com/calendar/embed?showTitle=0&showNav=0&showPrint=0&showTabs=0&showCalendars=0&mode=WEEK&dates=20170302%2F20170305&height=500&wkst=2&bgcolor=%23FFFFFF&src=j0qn81jhmmnp6otpkbf96l36ag%40group.calendar.google.com&ctz=Asia/Tokyo" style="border: 0" width="1000" height="500" frameborder="0" scrolling="no"></iframe>
</div>
</div> -->
<h3>Organizers</h3>
<p class="col-md-3">Tomoki Kazawa</p>
<p class="col-md-3">Hidetoshi Ikeno</p>
<p class="col-md-3">Teiichi Furuichi</p>
<p class="col-md-3">Yoshiyuki Asai</p>
<p class="col-md-3">Akira Sato</p>
<p class="col-md-3">Daisuke Miyamoto</p>
<p class="col-md-3">Yoshihiro Okumura</p>
<p class="col-md-3">Yoko Yamaguchi</p>
<p class="col-md-3">Itsuko Ishii</p>
</div>
</div>
<hr>
</div>
<!-- end Singapore -->
<!-- start Amsterdam -->
<div id="amsterdam" class="container">
<div class="row">
<h2 class="text-center" id="amsterdam">Amsterdam, Netherlands</h2>
<div class="col-md-8 col-md-offset-2">
<p><i class="fa fa-calendar"></i> March 2-4</p>
<p><i class="fa fa-map-marker"></i> <a href="https://www.google.com/maps/place/Spinoza+Centre+for+Neuroimaging/@52.292364,4.9548593,17z/data=!3m1!4b1!4m5!3m4!1s0x47c60998da13cdbb:0xb53d25a1e76d2500!8m2!3d52.292364!4d4.957048&"> Spinoza Centre for Neuroimaging</a>
</p>
<p><i class="fa fa-star"></i> Chair: Pierre-Louis Bazin </p>
<p class="loacation-description">The 2017 Brainhack in Amsterdam is a regional event of Brainhack Global 2017. Please click <a href=https://piloubazin.github.io/amsterdam-brainhack2017/>here</a> for more information.</p>
<p>Contact: <a href="mailto:">[email protected]</a>
</p>
<h3>Schedule</h3>
<a href="https://calendar.google.com/calendar/embed?mode=WEEK&src=r0p5jfncgocfsq5u4bffkifsug%40group.calendar.google.com&ctz=Europe/Berlin&dates=20170302%2F20170305" target="_blank">Google Calendar</a>
<!-- <div class="text-center">
<div class="responsive-iframe-container">
<iframe src="https://calendar.google.com/calendar/embed?mode=WEEK&src=r0p5jfncgocfsq5u4bffkifsug%40group.calendar.google.com&ctz=Europe/Berlin&dates=20170302%2F20170305" style="border-width:0" width="1000" height="500" frameborder="0" scrolling="no"></iframe>
</div>
</div> -->
<h3>Organizers</h3>
<p class="col-md-3">Pierre-louis Bazin</p>
<p class="col-md-3">Pieter Buur</p>
<p class="col-md-3">Serge Dumoulin</p>
</div>
</div>
<hr>
</div>
<!-- end Amsterdam -->
<!-- start Bilbao -->
<div id="Bilbao" class="container">
<div class="row">
<h2 class="text-center" id="Bilbao">Bilbao, Spain</h2>
<div class="col-md-8 col-md-offset-2">
<p><i class="fa fa-calendar"></i> March 2-4</p>
<p><i class="fa fa-map-marker"></i> <a href="https://www.google.com/maps/place/Hospital+De+Cruces/@43.2823137,-2.9865216,17z/data=!3m1!4b1!4m5!3m4!1s0xd4e5a7a423b126b:0xbfc9c82eb8b8d48a!8m2!3d43.2823098!4d-2.9843275"> Cruces University Hospital</a>
</p>
<p><i class="fa fa-star"></i> Chair: Asier Erramuzpe Aliaga </p>
<p class="loacation-description"> <a href="http://events.brainhack.org/global2017">Brainhack Global</a>'s local event in <b>Bilbao</b> will be a 3-day workshop held between <b>March 2nd - 4th</b> at Cruces University Hospital, Bizkaia, Spain. Brainhack events convenes researchers from a myriad of disciplines to work together on projects related to neuroscience. Similar to hackathons in the tech sector, much of the schedule is left open for attendees to work together on projects of their choosing. We also include “unconference” sessions where talks are chosen by the attendees based on their interests as they evolve throughout the meeting. Brainhacks are not “coding sprints” or exclusive to programmers, but rather are open to brain scientists from all backgrounds.</p>
<p>We will have 4 invited speakers: <a href="http://www.gin.cnrs.fr/MAZOYER-Bernard">Bernard Mazoyer</a> (Director of GIN in Bourdeaux), <a href="https://enzotagliazucchi.com/">Enzo Tagliazucchi</a> and <a href="https://www.mint-labs.com/">Paulo Rodrgues and Vesna Prchkovska </a>(CEO and Co-founders of Mint-Labs).</p>
<p>Working papers on the outcomes from Brainhack can appear in the Gigascience Brainhack Thematic Series, and shorter project reports from the event are eligible for the annual Brainhack Proceedings.</p>
<p>Registration is free for students <30 and 150€ for others (we have some fee grants for >30 under request). <b>To register, please do it through <a href="https://www.eventbrite.es/e/entradas-brainhack-bilbao-31508133676">this link</a> </b>.</p>
<p>Contact: <a href="mailto:">[email protected]</a>
</p>
<h3>Schedule</h3>
<a href="https://calendar.google.com/calendar/embed?showTitle=0&showNav=0&showPrint=0&showTabs=0&showCalendars=0&mode=WEEK&dates=20170302%2F20170305&height=500&wkst=2&bgcolor=%23FFFFFF&src=4d5komlf0gje9bjdc4eu9if68k%40group.calendar.google.com&color=%232952A3&ctz=Europe/Madrid&dates=20170302%2F20170305" target="_blank">Brainhack Global</a>
<!-- <div class="text-center">
<div class="responsive-iframe-container">
<iframe src="https://calendar.google.com/calendar/embed?showTitle=0&showNav=0&showPrint=0&showTabs=0&showCalendars=0&mode=WEEK&dates=20170302%2F20170305&height=500&wkst=2&bgcolor=%23FFFFFF&src=4d5komlf0gje9bjdc4eu9if68k%40group.calendar.google.com&color=%232952A3&ctz=Europe/Madrid&dates=20170302%2F20170305" style="border-width:0" width="1000" height="500" frameborder="0" scrolling="no"></iframe>
</div>
</div> -->
<h3>Organizers</h3>
<p class="col-md-3">Jesus M. Cortés</p>
<p class="col-md-3">Paolo Bonifazi</p>
<p class="col-md-3">Ibai Diez</p>
<p class="col-md-3">Iñigo Gabilondo</p>
<p class="col-md-3">Asier Erramuzpe</p>
</div>
</div>
<hr>
</div>
<!-- end Bilbao -->
<!-- start Cambridge -->
<div id="Cambridge" class="container">
<div class="row">
<h2 class="text-center" id="cambridge">Cambridge, UK</h2>
<div class="col-md-8 col-md-offset-2">
<p><i class="fa fa-calendar"></i> March 2-4</p>
<p><i class="fa fa-map-marker"></i> <a href="https://www.google.co.uk/maps/place/University+Centre/@52.2012078,0.1142004,17z/data=!3m1!4b1!4m5!3m4!1s0x47d870a33a8f9375:0x51e7972ae1c796d!8m2!3d52.2012078!4d0.1163891">University Centre, Cambridge</a>
</p>
<p><i class="fa fa-star"></i> Chair: Kirstie Whitaker </p>
<p class="loacation-description">The Cambridge satellite event will bring together researchers from across the University and research institutes. Participants are encouraged to self organise their activities but some suggestions include:</p>
<ul>
<li>Work in teams through openly available tutorials for neuroimaging analyses</li>
<li>Work in teams through roadblocks in your analyses that are holding up your research</li>
<li>Add a feature to some open source code that you want to update</li>
<li>Develop a new workflow on old data, or an old workflow on new data</li>
<li>Build collaborations between people in different departments</li>
<li>Use the global brainhack network to access openly available data for your analyses</li>
</ul>
<p>The three days will also include unconference opportunities to promote and share skills, knowledge and opportunities with the community along with four featured speakers (TBD).</p>
<p>We will be in the Higgs Room at the University Centre for this event. They have lots of space for us to work collaboratively with good wifi.</p>
<p>We are very grateful to the <a href="">Wellcome Trust</a>, the <a href="https://science.mozilla.org/">Mozilla Science Lab</a>, <a href="https://www.overleaf.com">Overleaf</a> and the University of Cambridge <a href="http://www.psychiatry.cam.ac.uk/">Department of Psychiatry</a> for sponsoring our great location and the drinks, snacks, lunch and lots of coffee for the three days of Cambridge Brainhack.</p>
<p>Please visit our <a href="https://kirstiejane.github.io/cambrainhack2017/">website</a> or the <a href="https://www.eventbrite.co.uk/e/brainhack-global-2017-cambridge-tickets-27485125751">Eventbrite page</a> for more information and to sign up.</p>
<p>Contact: <a href="mailto:">[email protected]</a></p>
<h3>Schedule</h3>
<a href="https://calendar.google.com/calendar/embed?showTitle=0&showNav=0&showPrint=0&showTabs=0&showCalendars=0&mode=WEEK&dates=20170302%2F20170305&height=500&wkst=2&bgcolor=%23FFFFFF&src=72ll1ftkrs65mukkvcn2rrjk9g%40group.calendar.google.com&color=%232952A3&ctz=Europe%2FLondon" target="_blank">Google Calendar</a>
<!-- <div class="text-center">
<div class="responsive-iframe-container">
<iframe src="https://calendar.google.com/calendar/embed?showTitle=0&showNav=0&showPrint=0&showTabs=0&showCalendars=0&mode=WEEK&dates=20170302%2F20170305&height=500&wkst=2&bgcolor=%23FFFFFF&src=72ll1ftkrs65mukkvcn2rrjk9g%40group.calendar.google.com&color=%232952A3&ctz=Europe%2FLondon" style="border-width:0" width="1000" height="500" frameborder="0" scrolling="no"></iframe>
</div>
</div> -->
<h3>Sponsors<h3>
<div class="row">
<div class="col-md-8 col-md-offset-2 text-center"><p><img src="images/cambridgespons.png" alt="partners"></p></div>
<div class="col-md-8 col-md-offset-2 text-center"><p><img src="images/warwickspons1.png" alt="partners"></p></div>
</div>
<h3>Organizers</h3>
<p class="col-md-3">Amber Ruigrok</p>
<p class="col-md-3">Hilde Taverne</p>
<p class="col-md-3">Jan Freyberg</p>
<p class="col-md-3">Kirstie Whitaker</p>
<p class="col-md-3">Matilde Vaghi</p>
<p class="col-md-3">Owen Parsons</p>
<p class="col-md-3">Rezvan Farahibozorg</p>
<p class="col-md-3">Richard Bethlehem</p>
</div>
</div>
<hr>
</div>
<!-- end Cambridge -->
<!-- start Warwick/Coventry -->
<div id="Warwick" class="container">
<div class="row">
<h2 class="text-center" id="warwick">Coventry, UK</h2>
<div class="col-md-8 col-md-offset-2">
<p><i class="fa fa-calendar"></i> March 2-3</p>
<p><i class="fa fa-map-marker"></i> <a href="https://www.google.com/maps/place/University+of+Warwick/@52.3792525,-1.5636591,17z/data=!4m5!3m4!1s0x48774ac696d53ee5:0xaa928d75708b2b54!8m2!3d52.3792525!4d-1.5614704"> University of Warwick</a>
</p>
<p><i class="fa fa-star"></i> Chair: Camille Maumet, Thomas Nichols, and Simon Schwab </p>
<p class="loacation-description">Registration is now open for <b>Brainhack Warwick 2017</b>. This 2-day workshop will be held <b>March 2nd - 3rd</b> at the University of Warwick, Coventry, UK, and is part of <a href="http://events.brainhack.org/global2017">Brainhack global</a>, where a constellation of such events happen simultaneously around the globe. Brainhack events convenes researchers from a myriad of disciplines to work together on projects related to neuroscience. Similar to hackathons in the tech sector, much of the schedule is left open for attendees to work together on projects of their choosing. We also include “unconference” sessions where talks are chosen by the attendees based on their interests as they evolve throughout the meeting. Brainhacks are not “coding sprints” or exclusive to programmers, but rather are open to brain scientists from all backgrounds.</p>
<p>Working papers on the outcomes from Brainhack Warwick can appear in the Gigascience Brainhack Thematic Series, and shorter project reports from the event are eligible for the annual Brainhack Proceedings.</p>
<p>Thanks to generous funding from the Wellcome Trust, registration is free, and includes 2 lunches, a conference dinner, all coffee breaks and parking. <b>To register, please email <a href="mailto:">[email protected]</a> </b> with your name, affiliation, current position and area of expertise. Space is limited so please only register if you are able to attend, we will confirm your place by return email. Should delegates wish to book accommodation they can contact reservations on [email protected] or 02476 573925.</p>
<p>Already registered? <a href="http://events.brainhack.org/global2017/projects.html">Submit your project!</a>
</p>
<p>Contact: <a href="mailto:[email protected]">[email protected]</a>
<p>Website: <a href="https://brainhackwarwick.github.io/2017/">https://brainhackwarwick.github.io/2017/</a>
</p>
<h3>Schedule</h3>
<a href="https://calendar.google.com/calendar/embed?showTitle=0&showNav=0&showPrint=0&showTabs=0&showCalendars=0&mode=WEEK&dates=20170302%2F20170305&height=500&wkst=2&bgcolor=%23FFFFFF&src=ge9tmicimqubkeqggl3rt6fn3s%40group.calendar.google.com&color=%232952A3&ctz=Europe%2FLondon" target="_blank">Google Calendar</a>
<!-- <div class="text-center">
<div class="responsive-iframe-container">
<iframe src="https://calendar.google.com/calendar/embed?showTitle=0&showNav=0&showPrint=0&showTabs=0&showCalendars=0&mode=WEEK&dates=20170302%2F20170305&height=500&wkst=2&bgcolor=%23FFFFFF&src=ge9tmicimqubkeqggl3rt6fn3s%40group.calendar.google.com&color=%232952A3&ctz=Europe%2FLondon" style="border-width:0" width="1000" height="500" frameborder="0" scrolling="no"></iframe>
</div>
</div> -->
<h3>Sponsors<h3>
<div class="row">
<div class="col-md-8 col-md-offset-2 text-center"><img src="images/warwickspons1.png" alt="partners"></div>
</div>
<h3>Organizers</h3>
<p class="col-md-3">Camille Maumet</p>
<p class="col-md-3">Thomas Nichols</p>
<p class="col-md-3">Simon Schwab</p>
</div>
</div>
<hr>
</div>
<!-- end Warwick/Coventry -->
<!-- start
g -->
<div id="Leipzig" class="container">
<div class="row">
<h2 class="text-center" id="leipzig">Leipzig, Germany</h2>
<div class="col-md-8 col-md-offset-2">
<p><i class="fa fa-calendar"></i> March 2-4</p>
<p><i class="fa fa-map-marker"></i><a href="https://goo.gl/maps/GLJMW8BCZwp"> Max Planck Institute for Human Cognitive and Brain Sciences</a></p>
<p><i class="fa fa-star"></i> Chair: Daniel Margulies </p>
<p class="loacation-description">More information on the <a href="https://neuroanatomyandconnectivity.github.io/brainhack-leipzig-2017/">Brainhack Global Leipzig website</a></p>
<p>Contact: <a href="mailto:">[email protected]</a></p>
<h3>Schedule</h3>
<a href="https://calendar.google.com/calendar/embed?showTitle=0&showNav=0&showPrint=0&showTabs=0&showCalendars=0&mode=WEEK&dates=20170302%2F20170305&height=500&wkst=2&bgcolor=%23FFFFFF&src=mrmbtj7du1579lulhotg5d0ovc%40group.calendar.google.com&ctz=Europe/Berlin" target="_blank">Google Calendar</a>
<!-- <div class="text-center">
<div class="responsive-iframe-container">
<iframe src="https://calendar.google.com/calendar/embed?showTitle=0&showNav=0&showPrint=0&showTabs=0&showCalendars=0&mode=WEEK&dates=20170302%2F20170305&height=500&wkst=2&bgcolor=%23FFFFFF&src=mrmbtj7du1579lulhotg5d0ovc%40group.calendar.google.com&ctz=Europe/Berlin" style="border-width:0" width="1000" height="500" frameborder="0" scrolling="no"></iframe>
</div>
</div> -->
<h3>Organizers</h3>
<p class="col-md-3">Alfred Anwander</p>
<p class="col-md-3">Blazej Baczkowski</p>
<p class="col-md-3">Marcel Falkiewicz</p>
<p class="col-md-3">Julia Huntenburg</p>
<p class="col-md-3">Mark Lauckner</p>
<p class="col-md-3">Daniel Margulies</p>
<p class="col-md-3">Natacha Mendes</p>
<p class="col-md-3">Sabine Oligschläger</p>
</div>
</div>
<hr>
</div>
<!-- end Leipzig -->
<!-- start Munich -->
<div id="Munich" class="container">
<div class="row">
<h2 class="text-center" id="munich">Munich, Germany</h2>
<div class="col-md-8 col-md-offset-2">
<p><i class="fa fa-calendar"></i> March 2-3</p>
<p><i class="fa fa-map-marker"></i>
<a href="https://goo.gl/maps/EWhEEpPUi522">German Neuroinformatics Node, LMU Munich, Biocenter</a>
</p>
<p><i class="fa fa-star"></i> Chair: Thomas Wachtler </p>
<p class="loacation-description">The Munich Brainhack event will be organized by the G-Node[1] and will focus on neuroinformatics solutions for storage, organization, and sharing of neurophysiology data[2]. It will include a tutorial on G-Node's GIN services[3] supporting versioned management and publishing of scientific data, and will feature collaborative hands-on sessions bringing together researchers and developers to address the scientists' data management use cases, and to improve and enhance the current solutions.</p>
<p>The Brainhack will take place at the LMU Munich, Department Biology II, attendance is free of charge. If you would like to join, please drop us an email at <a href="mailto:">[email protected]</a></p>
<p>[1] <a href=http://www.g-node.org>http://www.g-node.org</a></p>
<p>[2] <a href=http://g-node.github.io>http://g-node.github.io</a></p>
<p>[3] <a href=https://web.gin.g-node.org>https://web.gin.g-node.org</a></p>
<p>Contact: <a href="mailto:">[email protected]</a></p>
<h3>Schedule</h3>
<a href="https://calendar.google.com/calendar/embed?showTitle=0&showNav=0&showPrint=0&showTabs=0&showCalendars=0&mode=WEEK&dates=20170302%2F20170303&height=500&wkst=1&bgcolor=%23FFFFFF&src=98kapmf0gdcing1bdi72g6je5g%40group.calendar.google.com&color=%232952A3&ctz=Europe/Berlin" target="_blank">Google Calendar</a>
<!--- <div class="text-center">
<div class="responsive-iframe-container">
<iframe src="https://calendar.google.com/calendar/embed?showTitle=0&showNav=0&showPrint=0&showTabs=0&showCalendars=0&mode=WEEK&dates=20170302%2F20170303&height=500&wkst=1&bgcolor=%23FFFFFF&src=98kapmf0gdcing1bdi72g6je5g%40group.calendar.google.com&color=%232952A3&ctz=Europe/Berlin" style="border-width:0" width="1000" height="500" frameborder="0" scrolling="no"></iframe>
</div>
</div> -->
<h3>Organizers</h3>
<p class="col-md-3">Christian Garbers</p>
<p class="col-md-3">Achilleas Koutsou</p>
<p class="col-md-3">Michael Sonntag</p>
<p class="col-md-3">Thomas Wachtler</p>
</div>
</div>
<hr>
</div>
<!-- end Munich -->
<!-- start Paris -->
<div id="Paris" class="container">
<div class="row">
<h2 class="text-center" id="paris">Paris, France</h2>
<div class="col-md-8 col-md-offset-2">
<p><i class="fa fa-calendar"></i> March 2-4</p>
<p><i class="fa fa-map-marker"></i> <a href="https://www.google.com/maps/place/Institut+Pasteur/@48.8403549,2.3112783,15z/data=!4m5!3m4!1s0x0:0xe831277d10f68655!8m2!3d48.8403549!4d2.3112783" target="_blank"> Institut Pasteur</a>
</p>
<p><i class="fa fa-star"></i> Chair: Roberto Toro and Michel Thiebaut de Schotten</p>
<p class="loacation-description">Join us for 3 days of interaction between scientists, coders, clinicians and artists interested in the brain. We want to explore questions around the development and diversity of the brain using MRI or postmortem dissection; brain evolution across species; the appearance of brain pathologies; and the artistic representation of brain data. Participants can bring their own projects and recruit a team of collaborators on site. We will provide access to big online neuroimaging databases for new creative ideas to be tested.
<p>For more information, program and registration please come to our <a href="https://neuroanatomy.github.io/events/brainhack-global/" target="_blank">Brainhack Global Paris Website</a>.
<p>Contact: <a href="mailto:"> [email protected]</a>, <a href="mailto:"> [email protected]</a>
</p>
<h3>Schedule</h3>
<a href="https://calendar.google.com/calendar/embed?height=600&wkst=2&bgcolor=%23FFFFFF&src=cuv99vo9l96jf28rpbklepeehk%40group.calendar.google.com&color=%2323164E&ctz=Europe%2FParis&dates=20170227%2F20170305" target="_blank">Google Calendar</a>
<!-- <div class="text-center">
<div class="responsive-iframe-container">
<iframe src="https://calendar.google.com/calendar/embed?showTitle=0&showNav=0&showPrint=0&showTabs=0&showCalendars=0&mode=WEEK&dates=20170302%2F20170305&height=500&wkst=2&bgcolor=%23FFFFFF&src=7ahr4fa5ts4684mj1q191d17p0%40group.calendar.google.com&color=%232952A3&ctz=Switzerland%2FCentral_European_Time" style="border-width:0" width="1000" height="500" frameborder="0" scrolling="no"></iframe>
</div>
</div> -->
<h3>Organizers</h3>
<p class="col-md-3">Leonardo Cerliani</p>
<p class="col-md-3">Katja Heuer</p>
<p class="col-md-3">Anastasia Osoianu</p>
<p class="col-md-3" style="color:white">.</p>
<p class="col-md-3">Michel Thiebaut de Schotten</p>
<p class="col-md-3">Roberto Toro</p>
<p class="col-md-3">Gael Varoquaux</p>
</div>
</div>
<hr>
</div>
<!-- end Paris -->
<!-- start Rotterdam -->
<div id="Rotterdam" class="container">
<div class="row">
<h2 class="text-center">Rotterdam, Netherlands</h2>
<div class="col-md-8 col-md-offset-2">
<p><i class="fa fa-calendar"></i> March 2-4</p>
<p><i class="fa fa-map-marker"></i> <a href="https://www.google.com/maps/place/Spinoza+Centre+for+Neuroimaging/@52.292364,4.9548593,17z/data=!3m1!4b1!4m5!3m4!1s0x47c60998da13cdbb:0xb53d25a1e76d2500!8m2!3d52.292364!4d4.957048&"> Spinoza Centre for Neuroimaging</a>
</p>
<p><i class="fa fa-star"></i> Chair: Tonya White </p>
<p class="loacation-description">Brainhack Rotterdam has now merged with Brainhack Amsterdam! Please click <a href= http://events.brainhack.org/global2017/locations.html#amsterdam>here</a> for more information.</p>
<p>Contact: <a href="mailto:">[email protected]</a>
</p>
<h3>Organizers</h3>
<p class="col-md-3">Tonya White</p>
</div>
</div>
<hr>
</div>
<!-- end Rotterdam -->
<!-- start Stockholm -->
<div id="Stockholm" class="container">
<div class="row">
<h2 class="text-center" id="stockholm">Stockholm, Sweden</h2>
<div class="col-md-8 col-md-offset-2">
<p><i class="fa fa-calendar"></i> March 3-4</p>
<p><i class="fa fa-map-marker"></i> <a href="https://www.google.com/maps/place/INCF+(International+Neuroinformatics+Coordinating+Facility)/@59.3484646,18.0216392,17z/data=!3m1!4b1!4m5!3m4!1s0x465f9d9c680ee85f:0x68cdbeb9162d4554!8m2!3d59.3484619!4d18.0238279"> Karolinska Institute, INCF Secretariat, Nobels väg 15 A</a>
</p>
<p><i class="fa fa-star"></i> Chair: Malin Sandström, Gustav Nilsonne, Anders Eklund </p>
<p class="loacation-description"><a href=http://events.brainhack.org/global2017>Brainhack Global 2017</a> will unite local & regional Brainhacks held all over the world during the same dates, March 2-5. INCF community members are participating in many of the local Brainhacks, and some are also hosted by INCF Nodes.
A Swedish branch of the Brainhack Global will be held on the Karolinska Institute campus in Stockholm on March 3-4, organized by the INCF Secretariat (<a href=http://incf.org>incf.org</a>) together with the local community. The schedule will be organized by the attendees according to their interests; to work together on projects of their choosing, or organize “unconference” presentations with spontaneous talks.</p>
<p><b>Open Data Day March 4</b></p>
<p>March 4 is Open Data Day! We'll celebrate with a few presentations on open neurodata: one by <a href=http://ki.se/en/people/gusnil>Gustav Nilsonne</a> on open neuroimaging data, and one by <a href=http://www.imt.liu.se/people/andek>Anders Eklund</a> on the tool <a href=http://bids-apps.neuroimaging.io>BIDS Apps</a>. There will be possibilities to work with open neurodata of various sorts, and assistance for those who want to make their data open.
</p>
<p>Interested in attending? Great! Please fill in this <a href=https://docs.google.com/forms/d/e/1FAIpQLSf7o85BW-kwzjwMw3RNtsay1VKQZGrwFuU-C6N-ZG-VpJh7Kw/viewform>nonbinding expression of interest </a>to help us plan.</p>
<p>Contact: <a href="mailto:">[email protected]</a>
</p>
<h3>Schedule</h3>
<p><a href="https://www.incf.org/collaborate/tool-development/brainhack-global-2017">https://www.incf.org/collaborate/tool-development/brainhack-global-2017</a></p>
<h3>Organizers</h3>
<p class="col-md-3">Malin Sandström</p>
<p class="col-md-3">INCF</p>
</div>
</div>
<hr>
</div>
<!-- end Stockholm -->
<!-- start York -->
<div id="York" class="container">
<div class="row">
<h2 class="text-center" id="york">York, UK</h2>
<div class="row">
<div class="col-md-8 col-md-offset-2 text-center"><img src="images/Brainhack_York_Logo_PNG.png" alt="partners"></div>
</div>
<div class="col-md-8 col-md-offset-2">
<p><i class="fa fa-calendar"></i> March 2-5</p>
<p><i class="fa fa-map-marker"></i> <a href="https://www.google.com/maps?q=york+neuroimaging+centre&rlz=1C1EJFA_enUS714US714&ion=1&espv=2&bav=on.2,or.&bvm=bv.139782543,d.eWE&biw=1366&bih=638&dpr=1&um=1&ie=UTF-8&sa=X&ved=0ahUKEwiUnLicrt3QAhXryFQKHYdIAqIQ_AUIBigB"> York Neuroimaging Centre</a>
</p>
<p><i class="fa fa-star"></i> Chair: Deniz Vatansever </p>
<p class="loacation-description">Registration for the very first Brainhack York event is now <a href=https://www.ynic.york.ac.uk/events/brainhack>OPEN</a>.</p>
<p>Organised as part of the Brainhack Global 2017, this 4-day workshop will be held
between the 2nd and 5th March at the York Neuroimaging Centre, providing an
opportunity for brain scientists from York to interact with researchers
worldwide in a collaborative environment. The major aim of Brainhack events is
to allow attendees to work together on neuroimaging projects of their choosing
and to discuss ideas, analysis techniques, ask and answer scientific questions
using openly available data.</p>
<p>In line with our site-specific theme: “Brain Connectivity and Open Science Tools”,
Brainhack York will feature small tutorials on big data analysis, discussions on
resting state and task-based neuroimaging, best practices in using open science
tools, small unconference talks and open hacking sessions for attendees to work
on neuroimaging projects.</p>
<p>Raw and preprocessed versions of neuroimaging data from big cohort studies
will be available locally during the event, though attendees are welcome to bring
their own data for analysis. The bulk of this workshop will focus on fMRI.
However, if interested, attendees are encouraged to work on other modalities,
including but not limited to MEG and EEG. There is no “coding expertise”
required and brain scientists from all backgrounds can and will make significant
contribution to the projects.</p>
<p>Registration is FREE and includes lunch and refreshments on each of the four
days as well as a social event that will be organised at the venue. For more
information and to register, please visit the event website:
<a href=https://www.ynic.york.ac.uk/events/brainhack>https://www.ynic.york.ac.uk/events/brainhack</a> or e-mail
<a href="mailto:">[email protected]</a>.</p>
<p>We look forward to welcoming you at Brainhack York!</p>
<p>Contact: <a href="mailto:">[email protected]</a>
</p>
<h3>Schedule</h3>
<a href="https://calendar.google.com/calendar/embed?mode=WEEK&src=york.ac.uk_9b75q6kmfsisjudpd2hkep5lqk%40group.calendar.google.com&ctz=America/New_York&dates=20170302%2F20170305" target="_blank">Google Calendar</a>
<!-- <div class="text-center">
<div class="responsive-iframe-container">
<iframe src="https://calendar.google.com/calendar/embed?mode=WEEK&src=york.ac.uk_9b75q6kmfsisjudpd2hkep5lqk%40group.calendar.google.com&ctz=America/New_York&dates=20170302%2F20170305" style="border: 0" width="1000" height="500" frameborder="0" scrolling="no"></iframe>
</div>
</div> -->
<h3>Sponsors<h3>
<div class="row">
<div class="col-md-8 col-md-offset-2 text-center"><img src="images/ynic-logo-trans.png" alt="partners"></div>
</div>
<h3>Organizers</h3>
<p class="col-md-3">Hao-Ting Wang</p>
<p class="col-md-3">Mladen Sormaz</p>
<p class="col-md-3">Theodoros Karapanagiotidis</p>
<p class="col-md-3">Deniz Vatansever</p>
</div>
</div>
<hr>
</div>
<!-- end York -->
<!-- start Zurich -->
<div id="Zurich" class="container">
<div class="row">
<h2 class="text-center" id="zurich">Zurich, Switzerland</h2>
<div class="col-md-8 col-md-offset-2">
<p><i class="fa fa-calendar"></i> March 2-3</p>
<p><i class="fa fa-map-marker"></i> <a href="https://www.google.com/maps/place/Soziologisches+Institut,+Andreasstrasse+15,+8050+Z%C3%BCrich,+Switzerland/@47.4132215,8.5465903,17z/data=!3m1!4b1!4m5!3m4!1s0x47900a83794f152b:0x41c87c334ba6c021!8m2!3d47.4132179!4d8.5487736">University Research Priority Program Dynamics of Healthy Aging, University of Zurich</a>
</p>
<p><i class="fa fa-star"></i> Chair: Franz Liem and Frank Scharnowski </p>
<p class="loacation-description">The Zurich Brainhack will focus on introductory hands-on tutorials on tools for (neuroimaging) data analysis to promote reproducible science. Furthermore, the event aims to connect the Zurich neuroscience community by providing a space for open discussion.</p>
<p> Please register <a href="https://docs.google.com/forms/d/e/1FAIpQLSdCwKayra9Ga8loHJ01buVHSazjhVpC3jiwKqZZvel29zl2Gw/viewform">here!</a></p>
<p> More Information <a href="https://dynage.github.io//brainhack-zh/">here!</a> </p>
<p>Contact: <a href="mailto:">[email protected]</a></p>
<h3>Schedule</h3>
<a href="https://calendar.google.com/calendar/embed?showTitle=0&showNav=0&showPrint=0&showTabs=0&showCalendars=0&mode=WEEK&dates=20170302%2F20170305&height=500&wkst=2&bgcolor=%23FFFFFF&src=brainhack.zh%40gmail.com&color=%232952A3&ctz=Switzerland%2FCentral_European_Time" target="_blank">Google Calendar</a>
<!-- <div class="text-center">
<div class="responsive-iframe-container">
<iframe src="https://calendar.google.com/calendar/embed?showTitle=0&showNav=0&showPrint=0&showTabs=0&showCalendars=0&mode=WEEK&dates=20170302%2F20170305&height=500&wkst=2&bgcolor=%23FFFFFF&src=brainhack.zh%40gmail.com&color=%232952A3&ctz=Switzerland%2FCentral_European_Time" style="border-width:0" width="1000" height="500" frameborder="0" scrolling="no"></iframe>
</div>
</div> -->
<h3>Organizers</h3>
<p class="col-md-3">Amelia Haugg</p>
<p class="col-md-3">Franz Liem</p>
<p class="col-md-3">Jessica Oschwald</p>
<p class="col-md-3">Frank Scharnowski</p>
<p class="col-md-3">Ronald Sladky</p>
<p class="col-md-3">Vivian Steiger</p>
</div>
</div>
<hr>
</div>
<!-- end Zurich -->
<!-- start London/Western -->
<div id="western" class="container">
<div class="row">
<h2 class="text-center">London, Canada</h2>
<div class="col-md-8 col-md-offset-2">
<p><i class="fa fa-calendar"></i> March 2-4</p>
<p><i class="fa fa-map-marker"></i> <a href="http://www.robarts.ca/contact">Robarts Research Institute, Western University</a>
</p>
<p><i class="fa fa-star"></i> Chairs: Ali Khan and Joern Diedrichsen </p>
<p class="loacation-description">
The BrainsCAN initiative and Robarts Research Institute will be hosting the inaugural Brainhack Western!
Brainhack Western brings together researchers and trainees with disparate backgrounds to collaborate on
open science projects in neuroimaging and neuroscience. Brainhack projects are pitched on the first night,
and attendees will form into teams to work on these projects over the next two days. Tutorial sessions
on a variety of topics will be also held throughout for attendees to learn new skills.
</p>
<p><b>When:</b> March 2-4, 2017 <br>
<b>Cost:</b> Free, also includes on-site meals, snacks and coffee<br>
<b>Location:</b> 6th floor of Robarts Research Institute, Western University<br>
<b>Sponsors:</b> IBM Canada, EpLink - The Ontario Brain Institute Epilepsy Program, the BrainsCAN Initiative, and the Biomedical Imaging Research Centre (BIRC)<br>
<b>Contact:</b> <a href="mailto:">[email protected]</a></p>
<p>For more information and to register, please <a href="http://brainhackwestern.github.io">click here</a></p>
</p>
<h3>Schedule</h3>
<a href=="https://calendar.google.com/calendar/embed?mode=WEEK&src=western.brainhack%40gmail.com&ctz=America/New_York&dates=20170302%2F20170305" target="_blank">Google Calendar</a>
<!-- <div class="text-center">
<div class="responsive-iframe-container">
<iframe src="https://calendar.google.com/calendar/embed?mode=WEEK&src=western.brainhack%40gmail.com&ctz=America/New_York&dates=20170302%2F20170305" style="border: 0" width="1000" height="500" frameborder="0" scrolling="no"></iframe>
</div>
</div> -->
<h3>Sponsors<h3>
<div class="row">
<div class="col-md-8 col-md-offset-2 text-center"><p><img src="images/westernspons1.png" alt="partners"></p></div>
<div class="col-md-8 col-md-offset-2 text-center"><p><img src="images/westernspons2.png" alt="partners"></p></div>
<div class="col-md-8 col-md-offset-2 text-center"><p><img src="images/westernspons3.png" alt="partners"></p></div>
</div>
<h3>Organizers</h3>
<p class="col-md-3">Ali Khan</p>
<p class="col-md-3">Joern Diedrichsen</p>
<p class="col-md-3">Philippe Castonguay</p>
<p class="col-md-3">Jordan DeKraker</p>
<p class="col-md-3">Geetika Gupta</p>
<p class="col-md-3">Jason Kai</p>
<p class="col-md-3">Patrick Park</p>
<p class="col-md-3">Xin Yue Wang</p>
</div>
</div>
<hr>
</div>
<!-- end London/Western -->
<!-- start Montreal -->
<div id="Montreal" class="container">
<div class="row">
<h2 class="text-center" id="montreal">Montreal, Canada</h2>
<div class="col-md-8 col-md-offset-2">
<p><i class="fa fa-calendar"></i> March 2-3</p>
<p><i class="fa fa-map-marker"></i> <a href="http://notman.org/"> Notman house, 51 Sherbrooke West, Montreal, CA</a>
</p>
<p><i class="fa fa-star"></i> Chair: Pierre Bellec </p>
<p class="loacation-description">For more information please see the, <a href=https://brainhackmtl.github.io/2017/>Brainhack Montreal 2017</a> website.</p>
<p>Contact: <a href="mailto:">[email protected]</a>
</p>
<h3>Schedule</h3>
<a href="https://calendar.google.com/calendar/embed?showTitle=0&showNav=0&showPrint=0&showTabs=0&showCalendars=0&mode=WEEK&dates=20160626%2F20160630&height=500&wkst=2&bgcolor=%23FFFFFF&src=7ahr4fa5ts4684mj1q191d17p0%40group.calendar.google.com&color=%232952A3&ctz=Switzerland%2FCentral_European_Time" target="_blank">Google Calendar</a>
<!-- <div class="text-center">
<div class="responsive-iframe-container">
<iframe src="https://calendar.google.com/calendar/embed?showTitle=0&showNav=0&showPrint=0&showTabs=0&showCalendars=0&mode=WEEK&dates=20160626%2F20160630&height=500&wkst=2&bgcolor=%23FFFFFF&src=7ahr4fa5ts4684mj1q191d17p0%40group.calendar.google.com&color=%232952A3&ctz=Switzerland%2FCentral_European_Time" style="border-width:0" width="1000" height="500" frameborder="0" scrolling="no"></iframe>
</div>
</div> -->
<h3>Sponsors<h3>
<div class="row">
<div class="col-md-8 col-md-offset-2 text-center"><p><img src="images/montrealspons1.png" alt="partners"></p></div>
<div class="col-md-8 col-md-offset-2 text-center"><p><img src="images/montrealspons2.jpg" alt="partners"></p></div>
<div class="col-md-8 col-md-offset-2 text-center"><p><img src="images/montrealspons3.jpg" alt="partners"></p></div>
</div>
<h3>Organizers</h3>
<p class="col-md-3">Julien Cohen-Adad</p>
<p class="col-md-3">Benjamin De Leener</p>
<p class="col-md-3">Leigh MacIntyre</p>
<p class="col-md-3">Manuel Parker</p>
<p class="col-md-3">Dave McFarlane</p>
<p class="col-md-3">Clara Moreau</p>
<p class="col-md-3">Pierre-Olivier Quirion</p>
</div>
</div>
<hr>
</div>
<!-- end Montreal -->
<!-- start Toronto -->
<div id="Toronto" class="container">
<div class="row">
<h2 class="text-center" id="toronto">Toronto, Canada</h2>
<div class="col-md-8 col-md-offset-2">
<p><i class="fa fa-calendar"></i> March 2-4</p>
<p><i class="fa fa-map-marker"></i> <a href="https://www.google.com/maps/place/Bell+Gateway+Building,+100+Stokes+St,+Toronto,+ON+M6J+1H4,+Canada/@43.6433592,-79.4213583,17z/data=!3m1!4b1!4m5!3m4!1s0x882b34fdfb10e147:0x7cc9cc0780723560!8m2!3d43.6433553!4d-79.4191643"> Bell Gateway Building, Centre for Addiction and Mental Health (Queen Street Site)
100 Stokes Street, Toronto, Ontario, Canada, M6J IH4</a> </p>
<p><i class="fa fa-star"></i> Chair: Stephen Strother and Erin W Dickie</p>
<p class="loacation-description">This three day event, supported by the Ontario Brain Initiative, will bring together local scientist and trainees in neuroimaging from institutions across the region. The program will include kickoff symposium: “Advances and Challenges in Neuroscience Data Integration (multi-centre, multimodal, and multi-species)” including speakers Stephen Strother (Rotman Research Institute) and Leon French (CAMH), Anne Wheeler (SickKids) and Jason Lerch (SickKids).</p>
<p>We hope you will come join us! Thanks to support from OBI, registration will be very affordable ($20) and will include Breakfast, Lunch and Snacks. A cocktail dinner social is planned for the evening of March 3rd.</p>
<p>For more information and to register, please visit the <a href="https://camh-scwg.github.io/Brainhack-website/">local event website.</a></p>
<p>Contact: <a href="mailto:">[email protected]</a></p>
<h3>Schedule</h3>
<a href="https://calendar.google.com/calendar/embed?mode=WEEK&height=500&wkst=2&bgcolor=%23FFFFFF&src=0trncdoj3ac3rsavmm9s580n6c%40group.calendar.google.com&color=%23AB8B00&ctz=America%2FToronto&dates=20170302%2F20170305" target="_blank">Google Calendar</a>
<!-- <div class="text-center">
<div class="responsive-iframe-container">
<iframe src="https://calendar.google.com/calendar/embed?mode=WEEK&height=500&wkst=2&bgcolor=%23FFFFFF&src=0trncdoj3ac3rsavmm9s580n6c%40group.calendar.google.com&color=%23AB8B00&ctz=America%2FToronto&dates=20170302%2F20170305" style="border-width:0" width="1000" height="500" frameborder="0" scrolling="no"></iframe>
</div>
</div> -->
<h3>Organizers</h3>
<p class="col-md-3">Stephen Strother</p>
<p class="col-md-3">Erin W Dickie </p>
<p class="col-md-3">David Rotenberg</p>
<p class="col-md-3">CAMH Scientific Computing Working Group</p>
<h3>Sponsors<h3>
<div class="row">
<div class="col-md-8 col-md-offset-2 text-center"><img src="images/obi_logo_4c_pos_biling_0.jpg" alt="partners"></div>
</div>
</div>
</div>
<hr>
</div>
<!-- end Toronto -->
<!-- start New Mexico -->
<div id="New Mexico" class="container">
<div class="row">
<h2 class="text-center" id="albuquerque">Albuquerque, USA</h2>
<div class="col-md-8 col-md-offset-2">
<p><i class="fa fa-calendar"></i> March 2-5</p>
<p><i class="fa fa-map-marker"></i> <a href="https://www.google.com/maps?q=Mind+Research+Network&ion=1&espv=2&bav=on.2,or.&bvm=bv.140915558,d.eWE&biw=1292&bih=847&dpr=1&um=1&ie=UTF-8&sa=X&ved=0ahUKEwiBk6mwu-XQAhUISiYKHc0bAMMQ_AUIBygC"> Mind Research Network, University of New Mexico</a>
</p>
<p><i class="fa fa-star"></i> Chair: Eva Mennigen</p>
<p class="loacation-description">The Brainhack Global – Albuquerque will be a satellite event preceding the Keystone Symposium “Synapses and Circuits: Formation, Function, and Dysfunction”. We will dedicate this hackathon to “Brain Dynamics and Dynamic functional connectivity”. Talks will cover introductions to dynamic functional connectivity and window-less dynamic connectivity as well as a new approach of deep learning algorithms to explore brain dynamics.
Registration will open soon. </p>
<p>Contact: <a href="mailto:">[email protected]</a>
</p>
<h3>Schedule</h3>
<a href="https://calendar.google.com/calendar/embed?mode=WEEK&src=mrn.org_rco0m6cdqc8u65ur9htnqe589o%40group.calendar.google.com&ctz=America/New_York&dates=20170302%2F20170305" target="_blank">Google Calendar</a>
<!-- <div class="text-center">
<div class="responsive-iframe-container">
<iframe src="https://calendar.google.com/calendar/embed?mode=WEEK&src=mrn.org_rco0m6cdqc8u65ur9htnqe589o%40group.calendar.google.com&ctz=America/New_York&dates=20170302%2F20170305" style="border-width:0" width="1000" height="500" frameborder="0" scrolling="no"></iframe>
</div>
</div> -->
<h3>Organizers</h3>
<p class="col-md-3">Eva Mennigen</p>
<p class="col-md-3">Salman Mustafa</p>
<p class="col-md-3">Eswar Damaraju</p>
<p class="col-md-3">Vince Calhoun</p>
</div>
</div>
<hr>
</div>
<!-- end New Mexico -->
<!-- start annarbor -->
<div id="annarbor" class="container">
<div class="row">
<h2 class="text-center" id="annarbor">Ann Arbor, USA</h2>
<div class="col-md-8 col-md-offset-2">
<p><i class="fa fa-calendar"></i> March 2-5</p>
<p><i class="fa fa-map-marker"></i> <a href="https://www.google.com/maps/place/University+of+Michigan,+Ann+Arbor,+MI/@42.2769439,-83.7538684,14z/data=!3m1!4b1!4m5!3m4!1s0x883cae3890ef50bd:0x235b5e588c8e4ac8!8m2!3d42.2783714!4d-83.7371794"> University of Michigan, Ann Arbor, MI</a>
</p>
<p><i class="fa fa-star"></i> Chairs: Daniel Kessler and Scott Peltier </p>
<p class="loacation-description">The 2017 Brainhack in Ann Arbor, Michigan, will feature projects, presentations, and training proposed by the people who attend (this means you). For more information, registration, and a schedule, please visit the <a href="https://sites.google.com/a/umich.edu/brainhack-global-a2-2017/home/">local website</a>.</p>
<p>Contact: <a href="mailto:[email protected]">Organizers</a>
</p>
<h3>Schedule</h3>
<a href="https://sites.google.com/a/umich.edu/brainhack-global-a2-2017/schedule">Local Website</a>
<!-- <div class="text-center">
<div class="responsive-iframe-container">
<iframe src="https://calendar.google.com/calendar/embed?showTitle=0&showNav=0&showPrint=0&showTabs=0&showCalendars=0&mode=WEEK&dates=20160626%2F20160630&height=500&wkst=2&bgcolor=%23FFFFFF&src=7ahr4fa5ts4684mj1q191d17p0%40group.calendar.google.com&color=%232952A3&ctz=Switzerland%2FCentral_European_Time" style="border-width:0" width="1000" height="500" frameborder="0" scrolling="no"></iframe>
</div>
</div> -->
<h3>Organizers</h3>
<p class="col-md-3">Scott Peltier</p>
<p class="col-md-3">Daniel Kessler</p>
</div>
</div>
<hr>
</div>
<!-- end annarbor -->
<!-- start Birmingham -->
<div id="Birmingham" class="container">
<div class="row">
<h2 class="text-center" id="birmingham">Birmingham, USA</h2>
<div class="col-md-8 col-md-offset-2">
<p><i class="fa fa-calendar"></i> March 2-4</p>
<p><i class="fa fa-map-marker"></i> <a href="https://www.google.com/maps/place/University+of+Alabama+at+Birmingham/@33.5059582,-86.8046486,17z/data=!3m1!4b1!4m5!3m4!1s0x88891bea7ae2546f:0xbfcc9cea528fb219!8m2!3d33.5059582!4d-86.8024599"> University of Alabama at Birmingham</a>
</p>
<p><i class="fa fa-star"></i> Chair: Kristina Visscher </p>
<p class="loacation-description">Registration is now open for Brainhack UAB 2017. This 3-day workshop will be held March 2nd - 4th at the University of Alabama Birmingham (UAB) and is part of Brainhack global, where a constellation of such events happen simultaneously around the globe. Brainhack events convene researchers from a myriad of disciplines to work together on projects related to neuroscience. Similar to hackathons in the tech sector, much of the schedule is left open for attendees to work together on projects of their choosing. Brainhacks are not “coding sprints” or exclusive to programmers, but rather are open to brain scientists from all backgrounds. Part of the goal is to get people with different backgrounds working together to understand the brain.</p>
<p class="loacation-description">Working papers on the outcomes from Brainhack UAB can appear in the Gigascience Brainhack Thematic Series, and shorter project reports from the event are eligible for free publication in the annual Brainhack Proceedings.</p>
<p class="loacation-description">The event will be held March 2nd from 5:30 PM to 9 PM, March 3rd from 9 AM to 9 PM, and March 4th 9 AM to 6 PM. Thanks to generous funding from the UAB HSF, registration is free, and includes some meals and coffee breaks. Attendees are encouraged to bring their own computers. To register, please go to this site <a href="https://goo.gl/forms/zJpazUwKeVFYNZjp2" target="_blank">https://goo.gl/forms/zJpazUwKeVFYNZjp2</a>. Space is limited so please only register if you are able to attend, we will confirm your place by return email. Already registered? <a href="https://hackpad.com/collection/yNqTJZcqWc2">Submit a project idea</a>!</p>
<p>Contact: <a href="mailto:">[email protected]</a>
</p>
<h3>Schedule</h3>
<a href="https://calendar.google.com/calendar/embed?mode=WEEK&src=emuuoren2ekiemhk6556q9a88c%40group.calendar.google.com&ctz=America/Chicago&dates=20170302%2F20170305" target="_blank">Google Calendar</a>
<!-- <div class="text-center">
<div class="responsive-iframe-container">
<iframe src="https://calendar.google.com/calendar/embed?mode=WEEK&src=emuuoren2ekiemhk6556q9a88c%40group.calendar.google.com&ctz=America/New_York&dates=20170302%2F20170305" style="border: 0" width="1000" height="500" frameborder="0" scrolling="no"></iframe>
</div>
</div> -->
<h3>Organizers</h3>
<p class="col-md-3">Kristina Visscher</p>
<p class="col-md-3">Kelli Cannon</p>
</div>
</div>
<hr>
</div>
<!-- end Birmingham -->
<!-- start bloomington -->
<div id="Bloomington" class="container">
<div class="row">
<h2 class="text-center" id="bloomington">Bloomington, USA</h2>
<div class="col-md-8 col-md-offset-2">
<p><i class="fa fa-calendar"></i> March 2-4</p>
<p><i class="fa fa-map-marker"></i> <a href="https://www.google.com/maps/place/Indiana+University+Bloomington/@39.1703786,-86.5142548,15z/data=!4m2!3m1!1s0x0:0x3499a08bb315d436?sa=X&ved=0ahUKEwjL5sbBl-XPAhXLPz4KHR-2DmkQ_BIIdjAM"> University of Indiana at Bloomington</a>
</p>
<p><i class="fa fa-star"></i> Chair: Eleftherios Garyfallidis</p>
<p class="loacation-description">The 2017 Brainhack in Bloomington is a region event of Brainhack Global 2017. Here is the link to the registration page <a href=https://www.indiana.edu/~irf/home/brainhack-bloomington>https://www.indiana.edu/~irf/home/brainhack-bloomington</a>.</p>
<p>Contact: <a href="mailto:">[email protected]</a>
</p>
<h3>Schedule</h3>
<a href="https://calendar.google.com/calendar/embed?showTitle=0&showNav=0&showPrint=0&showTabs=0&showCalendars=0&mode=WEEK&dates=20170302%2F20170305&height=500&wkst=2&bgcolor=%23FFFFFF&src=utvb4qb798ti3rt5kugiuq1b1c%40group.calendar.google.com&ctz=America/New_York" target="_blank">Google Calendar</a>
<!-- <div class="text-center">
<div class="responsive-iframe-container">
<iframe src="https://calendar.google.com/calendar/embed?showTitle=0&showNav=0&showPrint=0&showTabs=0&showCalendars=0&mode=WEEK&dates=20160626%2F20160630&height=500&wkst=2&bgcolor=%23FFFFFF&src=7ahr4fa5ts4684mj1q191d17p0%40group.calendar.google.com&color=%232952A3&ctz=Switzerland%2FCentral_European_Time" style="border-width:0" width="1000" height="500" frameborder="0" scrolling="no"></iframe>
</div>
</div> -->
<h3>Organizers</h3>
<p class="col-md-3">Eleftherios Garyfallidis</p>
<p class="col-md-3">Sharlene Newman</p>
<p class="col-md-3">Amanda Mejia</p>
<p class="col-md-3">Franco Pestilli </p>
</div>
</div>
<hr>
</div>
<!-- end Bloomington -->
<!-- start Boston -->
<div id="Boston" class="container">
<div class="row">
<h2 class="text-center" id="boston">Boston, USA</h2>
<div class="col-md-8 col-md-offset-2">
<p><i class="fa fa-calendar"></i>March 2-5</p>
<p><i class="fa fa-map-marker"></i> <a href="https://www.google.com/maps/place/Brain+and+Cognitive+Sciences+Complex,+43+Vassar+St,+Cambridge,+MA+02139/@42.362224,-71.09374,17z/data=!3m1!4b1!4m5!3m4!1s0x89e370abfd23371f:0x6de0e79d1bce9bf7!8m2!3d42.362224!4d-71.0915513">MIT</a>
</p>
<p class="loacation-description">MIT will be hosting Boston's participation of Brainhack Global 2017 on March 2-5. This hackathon will focus on finding, accessing, interpreting, and utilitizing open brain imaging data. Tutorials will cover topics such as data standards, machine learning for brain imaging, python analysis, and deep learning with Tensorflow.</p>
<p>
Contact: <a href="mailto:">[email protected]</a>, <a href="mailto:">[email protected]</a>,
<a href="mailto:">[email protected]</a>, <a href="mailto:">[email protected]</a>,
<a href="mailto:">[email protected]</a>, <a href="mailto:">[email protected]</a>
</p>
<h3>Schedule</h3>
<a href="https://calendar.google.com/calendar/embed?title=Brainhack%20Global%202017%20-%20Boston&mode=WEEK&height=500&wkst=2&bgcolor=%23FFFFFF&src=iu4hgh1aiof6rt33o5203q07c8%40group.calendar.google.com&color=%230F4B38&ctz=America%2FNew_York&dates=20170302%2F20170305" target="_blank">Google Calendar</a>
<!-- <div class="text-center">
<div class="responsive-iframe-container">
<iframe src="https://calendar.google.com/calendar/embed?title=Brainhack%20Global%202017%20-%20Boston&mode=WEEK&height=500&wkst=2&bgcolor=%23FFFFFF&src=iu4hgh1aiof6rt33o5203q07c8%40group.calendar.google.com&color=%230F4B38&ctz=America%2FNew_York&dates=20170302%2F20170305" style="border-width:0" width="1000" height="500" frameborder="0" scrolling="no"></iframe>
</div>
</div> -->