-
Notifications
You must be signed in to change notification settings - Fork 0
/
seminars_ical.ics
3591 lines (3591 loc) · 266 KB
/
seminars_ical.ics
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
BEGIN:VCALENDAR
BEGIN:VEVENT
UID:3eca1e5e14d006b380ca44e97023dda7209048c109ee9fda184ec8bace02ebad
SUMMARY: Elise Brimble MSC, MS, CGC
DTSTART;VALUE=DATE-TIME:20200820T170000Z
DTEND;VALUE=DATE-TIME:20200820T180000Z
DESCRIPTION:This is an online seminar hosted by: SYNGAP1 by SRF\n\nSpeaker: Elise Brimble MSC, MS, CGC | Citizen\n\nSeminar Title: Leveraging technology to improve access to rare disease research\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:d596917ee871a9a7286133d3be079e58116ed062b35223ae40b52ad95868013e
SUMMARY: Dr. Richard Huganir
DTSTART;VALUE=DATE-TIME:20200917T160000Z
DTEND;VALUE=DATE-TIME:20200917T170000Z
DESCRIPTION:This is an online seminar hosted by: SYNGAP1 by SRF\n\nSpeaker: Dr. Richard Huganir | Johns Hopkins University\n\nSeminar Title: Rescue of SynGAP expression in SYNGAP1 Syndrome: Antisense Oligonucleotides (ASOs), small molecules, & viral genetic rescue\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:a22b2be6d5bed702e2022926bd39044032fd30272b7bf8c3c28148b4dc948fdf
SUMMARY: Dr. James Clement
DTSTART;VALUE=DATE-TIME:20201001T150000Z
DTEND;VALUE=DATE-TIME:20201001T160000Z
DESCRIPTION:This is an online seminar hosted by: SYNGAP1 by SRF\n\nSpeaker: Dr. James Clement | Neuroscience Unit, Jawaharlal Nehru Centre for Advanced Scientific Research\n\nSeminar Title: Towards therapeutics for Autism Spectrum Disorder using Syngap1 heterozygous mouse model\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:92c999af03b44fff6a910d1602748c68b6f8253a4e67731a216fc0655b537e53
SUMMARY: Dr. Heather C. Mefford
DTSTART;VALUE=DATE-TIME:20201015T170000Z
DTEND;VALUE=DATE-TIME:20201015T180000Z
DESCRIPTION:This is an online seminar hosted by: SYNGAP1 by SRF\n\nSpeaker: Dr. Heather C. Mefford | University of Washington in the Division of Genetic Medicine\n\nSeminar Title: SYNGAP1: The road from gene discovery to targeted therapy\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:ebce5ed062f433b763fa38991e69de464cb12a3038fe4766ceca277f2e521e63
SUMMARY:Dr Johannes Felsenberg, Dr Marlen Knobloch, Dr Sami El-Boustani
DTSTART;VALUE=DATE-TIME:20200625T120000Z
DTEND;VALUE=DATE-TIME:20200625T130000Z
DESCRIPTION:This is an online seminar hosted by: ySSN NeuroRoutes\n\nSpeaker: Dr Johannes Felsenberg, Dr Marlen Knobloch, Dr Sami El-Boustani | The Friedrich Miescher Institute for Biomedical Research, Universitéyof Lausanne, University of Geneva\n\nSeminar Title: “Changing Memory on the Fly, re-evaluation of learned behaviour I n Drosophila”
“Metabolic Regulation of Neural Stem Cells”
“The answer is in the sauce”\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:66e4bed108b42c1c44e7628bc7de912c2b73737b4d2a2ed70360904eb39e8ccc
SUMMARY:Prof Caswell Barry
DTSTART;VALUE=DATE-TIME:20200617T120000Z
DTEND;VALUE=DATE-TIME:20200617T130000Z
DESCRIPTION:This is an online seminar hosted by: Bristol Neuroscience\n\nSpeaker: Prof Caswell Barry | University College London\n\nSeminar Title: The recruitment of spatial cells in large-scale space & an AI approach to neural discovery\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:85f05cfd306280d99178ebfc7c989939dbb754570f272d41cd25ad2ae1087009
SUMMARY: Christophe Mulle
DTSTART;VALUE=DATE-TIME:20201001T130000Z
DTEND;VALUE=DATE-TIME:20201001T140000Z
DESCRIPTION:This is an online seminar hosted by: Bristol Neuroscience\n\nSpeaker: Christophe Mulle | University of Bordeaux\n\nSeminar Title: Presynaptic plasticity in hippocampal circuits\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:79d7285b20a95def6b87c4248a94e4154969435458afb1deccd44f23a86bf699
SUMMARY:Drs Harriet Ball, Liz Coulthard, Claire Rice
DTSTART;VALUE=DATE-TIME:20201020T120000Z
DTEND;VALUE=DATE-TIME:20201020T130000Z
DESCRIPTION:This is an online seminar hosted by: Bristol Neuroscience\n\nSpeaker: Drs Harriet Ball, Liz Coulthard, Claire Rice | University of Bristol\n\nSeminar Title: Neurological consequences of COVID-19\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:79ab4dd374c83a84b170bbe8ccf54942f07d0f6650156e9e691469a973f163b3
SUMMARY:Mrs Meg Atwood
DTSTART;VALUE=DATE-TIME:20201110T130000Z
DTEND;VALUE=DATE-TIME:20201110T140000Z
DESCRIPTION:This is an online seminar hosted by: Bristol Neuroscience\n\nSpeaker: Mrs Meg Atwood | University of Bristol\n\nSeminar Title: Investigating the impact of the pandemic on adolescent anxiety and cognitive function\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:9ffe746157745e2d99474b917a71738987810d977ed77cfceed69bd9421a594c
SUMMARY:Prof Joseph Gleeson
DTSTART;VALUE=DATE-TIME:20201007T150000Z
DTEND;VALUE=DATE-TIME:20201007T160000Z
DESCRIPTION:This is an online seminar hosted by: Seaver Autism Center\n\nSpeaker: Prof Joseph Gleeson | UC San Diego; Rady Children's Institute for Genomic Medicine\n\nSeminar Title: De novo mutations in autism and contributions from sperm mosaicism\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:7fb49e07a6056490a5a099b33b9d7599630bd03598c5f1d9e46214f5b14dc45e
SUMMARY:Prof Nael Nadif Kasri
DTSTART;VALUE=DATE-TIME:20201021T150000Z
DTEND;VALUE=DATE-TIME:20201021T160000Z
DESCRIPTION:This is an online seminar hosted by: Seaver Autism Center\n\nSpeaker: Prof Nael Nadif Kasri | Radboudumc (Nijmegen, The Netherlands)\n\nSeminar Title: Harnessing the potential of human neurons-on-a-chip to model neurodevelopmental disorders\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:55125d24d7a53b41428c847bd69767b324e7c77276c4d20f0024a7e6fc0ade04
SUMMARY:Prof Carlo Sala
DTSTART;VALUE=DATE-TIME:20201104T160000Z
DTEND;VALUE=DATE-TIME:20201104T170000Z
DESCRIPTION:This is an online seminar hosted by: Seaver Autism Center\n\nSpeaker: Prof Carlo Sala | CNR (Milan, Italy)\n\nSeminar Title: The role of protein translation pathways in regulating excitation/inhibition balance in epilepsy\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:97190948903b9d9749bcd1d0a3effd83b7d2e3d905ede4ef165b3f1b1910d984
SUMMARY:Prof Alessandro Gozzi
DTSTART;VALUE=DATE-TIME:20201118T160000Z
DTEND;VALUE=DATE-TIME:20201118T170000Z
DESCRIPTION:This is an online seminar hosted by: Seaver Autism Center\n\nSpeaker: Prof Alessandro Gozzi | Istituto Italiano di Tecnologia (Rovereto, Italy)\n\nSeminar Title: Unravelling brain connectopathy in autism with cross-species fMRI\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:b9cf713fce494b453987a51c7beb4033d8dd71daf658078acfcea860f4b67493
SUMMARY:Prof Elaine Lim
DTSTART;VALUE=DATE-TIME:20201202T160000Z
DTEND;VALUE=DATE-TIME:20201202T170000Z
DESCRIPTION:This is an online seminar hosted by: Seaver Autism Center\n\nSpeaker: Prof Elaine Lim | Massachusetts Medical School\n\nSeminar Title: Multiplexing and Demultiplexing with cerebral organoids for neurological diseases\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:0da042b2f4980ecd8d8523aa7604809869b0063c7001c584f251d9c0663bd141
SUMMARY:Prof Xinyu Zhao
DTSTART;VALUE=DATE-TIME:20201216T160000Z
DTEND;VALUE=DATE-TIME:20201216T170000Z
DESCRIPTION:This is an online seminar hosted by: Seaver Autism Center\n\nSpeaker: Prof Xinyu Zhao | University of Wisconsin–Madison\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:a03b78102ae4f7b68ee7ffc0aa06929f87da35a9eada2c79d20639c5336e5229
SUMMARY:Prof Stephan Sanders
DTSTART;VALUE=DATE-TIME:20210120T180000Z
DTEND;VALUE=DATE-TIME:20210120T190000Z
DESCRIPTION:This is an online seminar hosted by: Seaver Autism Center\n\nSpeaker: Prof Stephan Sanders | UC San Francisco\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:5cb2a63c3d78776265c2c832c95cfce99a509e893ce87da09f9460bb00cba15c
SUMMARY:Prof Ukpong Eyo
DTSTART;VALUE=DATE-TIME:20210203T160000Z
DTEND;VALUE=DATE-TIME:20210203T170000Z
DESCRIPTION:This is an online seminar hosted by: Seaver Autism Center\n\nSpeaker: Prof Ukpong Eyo | The University of Virginia\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:4a25a3176972a77f4ca1b2e9e42b525f761a0f64565c5d0bcf0dad3075c56a84
SUMMARY:Prof Maria Chahrour
DTSTART;VALUE=DATE-TIME:20210217T160000Z
DTEND;VALUE=DATE-TIME:20210217T170000Z
DESCRIPTION:This is an online seminar hosted by: Seaver Autism Center\n\nSpeaker: Prof Maria Chahrour | UT SouthWestern\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:c5ffa80d7d49c0e0621a1ab0d0759531fcb207c4e0a1435d3e392ad754622449
SUMMARY:Prof Elise Robinson
DTSTART;VALUE=DATE-TIME:20210303T160000Z
DTEND;VALUE=DATE-TIME:20210303T170000Z
DESCRIPTION:This is an online seminar hosted by: Seaver Autism Center\n\nSpeaker: Prof Elise Robinson | Broad Institute\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:9948da0c48829faff1c79ca71afe4e333e50830323781178f72b3b2eaa41eb39
SUMMARY:Prof Stephen Liberles
DTSTART;VALUE=DATE-TIME:20200622T150000Z
DTEND;VALUE=DATE-TIME:20200622T160000Z
DESCRIPTION:This is an online seminar hosted by: Brain-Body Interactions\n\nSpeaker: Prof Stephen Liberles | Harvard Medical School, Boston, MA, USA\n\nSeminar Title: Vagal sensory neurons that guard the airways\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:c3b626176ffe32756bdec7ee904eac6719034dcdeb8c071790eab2420f76a298
SUMMARY:Prof. Michal Schwartz
DTSTART;VALUE=DATE-TIME:20200629T150000Z
DTEND;VALUE=DATE-TIME:20200629T160000Z
DESCRIPTION:This is an online seminar hosted by: Brain-Body Interactions\n\nSpeaker: Prof. Michal Schwartz | Weizmann Institute of Science\n\nSeminar Title: Novel immunotherapy to treat Alzheimer’s disease and Dementia: from curiosity-driven research to prospect of therapy\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:f49d0cb0fd15d19e42850310fe0bac88c4a7d0e3d7d7f19999c564cec4af6ffb
SUMMARY:Prof. Monica Dus
DTSTART;VALUE=DATE-TIME:20200720T150000Z
DTEND;VALUE=DATE-TIME:20200720T160000Z
DESCRIPTION:This is an online seminar hosted by: Brain-Body Interactions\n\nSpeaker: Prof. Monica Dus | University of Michigan\n\nSeminar Title: Epigenetic Reprogramming of Taste by Diet\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:d2d24f304b26eecd29bc5eb3ba6393da403a72225184af1ca4db13c7df4c3069
SUMMARY:Prof. Stephen J. Simpson
DTSTART;VALUE=DATE-TIME:20200907T090000Z
DTEND;VALUE=DATE-TIME:20200907T100000Z
DESCRIPTION:This is an online seminar hosted by: Brain-Body Interactions\n\nSpeaker: Prof. Stephen J. Simpson | University of Sydney\n\nSeminar Title: Towards resolving the Protein Paradox in longevity and late-life health\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:df15d865ae34884a5b543180e193b2e41d641db1437cf5a4a2eb737f7834b94c
SUMMARY:Prof. Irene Miguel-Aliaga
DTSTART;VALUE=DATE-TIME:20200914T150000Z
DTEND;VALUE=DATE-TIME:20200914T160000Z
DESCRIPTION:This is an online seminar hosted by: Brain-Body Interactions\n\nSpeaker: Prof. Irene Miguel-Aliaga | Imperial College London\n\nSeminar Title: Sex, guts and babies: the plasticity of the adult intestine and its neurons\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:cbf9662a28eb26615049537fe22f1fcd8dac439fa3c8a0b6c8091e2c9f086ee4
SUMMARY:Prof. Isaac Chiu
DTSTART;VALUE=DATE-TIME:20200921T150000Z
DTEND;VALUE=DATE-TIME:20200921T160000Z
DESCRIPTION:This is an online seminar hosted by: Brain-Body Interactions\n\nSpeaker: Prof. Isaac Chiu | Harvard Medical School, Boston, MA, USA\n\nSeminar Title: Neuro-immune interactions in pain and host defense\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:233340832038c4ab3d3398436789f21787677ab87095b694b0c0fd482524767b
SUMMARY:Dr. Stephanie Schirmeier
DTSTART;VALUE=DATE-TIME:20200928T150000Z
DTEND;VALUE=DATE-TIME:20200928T160000Z
DESCRIPTION:This is an online seminar hosted by: Brain-Body Interactions\n\nSpeaker: Dr. Stephanie Schirmeier | University of Munster\n\nSeminar Title: Glia neuron metabolic interactions in Drosophila\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:c3cb6656b4521e4eb880bf8fa7dc2903a33ae1d0e9fd4765aeec33a67d565703
SUMMARY:Prof. Jonathan Kipnis
DTSTART;VALUE=DATE-TIME:20201005T150000Z
DTEND;VALUE=DATE-TIME:20201005T160000Z
DESCRIPTION:This is an online seminar hosted by: Brain-Body Interactions\n\nSpeaker: Prof. Jonathan Kipnis | Washington University in St Louis, Missouri\n\nSeminar Title: Meningeal lymphatics and peripheral immunity in brain function and dysfunction\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:ce030c47ef51d6184fda81b6486129440ca3f4e6cd894d84c6d90f631f69314b
SUMMARY:Dr. Brad Dickerson
DTSTART;VALUE=DATE-TIME:20201012T150000Z
DTEND;VALUE=DATE-TIME:20201012T160000Z
DESCRIPTION:This is an online seminar hosted by: Brain-Body Interactions\n\nSpeaker: Dr. Brad Dickerson | University of North Carolina\n\nSeminar Title: An evolutionarily conserved hindwing circuit mediates Drosophila flight control\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:f2712b3af620a9b76e8d3a568b8008784a11e9acc44faaebdf44e3f9b0d173b0
SUMMARY:PhD María E. Castello
DTSTART;VALUE=DATE-TIME:20200819T200000Z
DTEND;VALUE=DATE-TIME:20200819T210000Z
DESCRIPTION:This is an online seminar hosted by: IIBCE on Brain Science\n\nSpeaker: PhD María E. Castello | Desarrollo y Evolución Neural, Instituto de Investigaciones Biológicas Clemente Estable, MEC, Montevideo, Uruguay\n\nSeminar Title: Virtual Workshop Presentation\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:f03bf35490661902de02cfa5e72663db3915f6bfae3ed7ce3e4c3cffc49359c7
SUMMARY:PhD Juan F. Montiel
DTSTART;VALUE=DATE-TIME:20200819T201500Z
DTEND;VALUE=DATE-TIME:20200819T211500Z
DESCRIPTION:This is an online seminar hosted by: IIBCE on Brain Science\n\nSpeaker: PhD Juan F. Montiel | Center for Biomedical Research, Faculty of Medicine, Universidad Diego Portales, Santiago, Chile\n\nSeminar Title: How brain evolutionary mechanisms could inspire AI structural designs\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:16635ab65941f8266c7d3ecf7fba57168cb0405c473b0357e31db1f896107c77
SUMMARY:Engineer Pamela Guevara
DTSTART;VALUE=DATE-TIME:20200819T211500Z
DTEND;VALUE=DATE-TIME:20200819T221500Z
DESCRIPTION:This is an online seminar hosted by: IIBCE on Brain Science\n\nSpeaker: Engineer Pamela Guevara | Department of Electrical Engineering, Faculty of Engineering, Universidad de Concepción, Chile\n\nSeminar Title: Machine learning methods applied to dMRI tractography for the study of brain connectivity\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:a45f0e98f3c0e249801a6986fc4f88dc5520863fed774a4f5659e2ab046a2ed7
SUMMARY:PhD, Director of research Roberto Toro
DTSTART;VALUE=DATE-TIME:20200819T221500Z
DTEND;VALUE=DATE-TIME:20200819T231500Z
DESCRIPTION:This is an online seminar hosted by: IIBCE on Brain Science\n\nSpeaker: PhD, Director of research Roberto Toro | Department of Neuroscience, Institut Pasteur, Paris, France\n\nSeminar Title: Role of mechanical morphogenesis in the development and evolution of the cerebral cortex\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:7894bc54e9d6afe67a6c508ba6363ddaf6004256d44fe25b49ef116b5a4b3df8
SUMMARY:PhD Ángel Caputi
DTSTART;VALUE=DATE-TIME:20200819T231500Z
DTEND;VALUE=DATE-TIME:20200820T001500Z
DESCRIPTION:This is an online seminar hosted by: IIBCE on Brain Science\n\nSpeaker: PhD Ángel Caputi | Neurociencias Integrativas y Computacionales, Instituto de Investigaciones Biológicas Clemente Estable, MEC, Montevideo, Uruguay\n\nSeminar Title: Getting to no, is there a brain denying function?\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:34b4701196847f1ea6f05038136d841f9f751202bf0b7c2e89ce7cd3cabe3d04
SUMMARY:MSc student:Clinical Child and Adolescent Psychology Adalena De León,
DTSTART;VALUE=DATE-TIME:20200820T195000Z
DTEND;VALUE=DATE-TIME:20200820T205000Z
DESCRIPTION:This is an online seminar hosted by: IIBCE on Brain Science\n\nSpeaker: MSc student:Clinical Child and Adolescent Psychology Adalena De León, | Universidad Santa María La Antigua, Panama\n\nSeminar Title: Student´s Oral Presentation I: Trigeminal´s olfactory evoked potentials\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:e974f56e0dd316b1cd507726def4eff3abf962c4fc42266d130a4b6d2a332f46
SUMMARY:C.Alen and M Castro: Biological Sciences Secondary School Teachers; M. Castro: Clinical Bioquemist student; A.C. Gonazález:MSc student: Biological Sciences Carolina Alen; Magela Castro, Ana Clara González, Montevideo, Uruguay
DTSTART;VALUE=DATE-TIME:20200820T201000Z
DTEND;VALUE=DATE-TIME:20200820T211000Z
DESCRIPTION:This is an online seminar hosted by: IIBCE on Brain Science\n\nSpeaker: C.Alen and M Castro: Biological Sciences Secondary School Teachers; M. Castro: Clinical Bioquemist student; A.C. Gonazález:MSc student: Biological Sciences Carolina Alen; Magela Castro, Ana Clara González, Montevideo, Uruguay | C.Alen and M Castro: CES, ANEP; M. Castro: School of Chemistry, UdelaR; A.C.Gonazález: PEDECIBA, Montevideo, Uruguay\n\nSeminar Title: Student´s Oral Presentation II: Comparative study of the bioelectric activity of the legs of the Blaptica dubia cockroach\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:21467031051f57a2abe75888c35a581eb8aad3059f1068bf089d6479a3ff6129
SUMMARY:F. López: MSc student: Cognitive Neuroscience; Rodrigo Sanz: MSc student: Cognitive Neuroscience Francisco López-Guzmán & Rodrigo Sanz, Montevideo, Uruguay
DTSTART;VALUE=DATE-TIME:20200820T203000Z
DTEND;VALUE=DATE-TIME:20200820T213000Z
DESCRIPTION:This is an online seminar hosted by: IIBCE on Brain Science\n\nSpeaker: F. López: MSc student: Cognitive Neuroscience; Rodrigo Sanz: MSc student: Cognitive Neuroscience Francisco López-Guzmán & Rodrigo Sanz, Montevideo, Uruguay | Universidad de la República, Montevideo, Uruguay\n\nSeminar Title: Student´s Oral Presentation III: Emotional State Classification Using Low-Cost Single-Channel Electroencephalography\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:476fdad14aa3a4b3ad982c040f71bfe80c4f53e6e460e551bd8d123e511f9678
SUMMARY:PhD Gregory J. Gage, Ph.D.
DTSTART;VALUE=DATE-TIME:20200820T210000Z
DTEND;VALUE=DATE-TIME:20200820T220000Z
DESCRIPTION:This is an online seminar hosted by: IIBCE on Brain Science\n\nSpeaker: PhD Gregory J. Gage, Ph.D. | CEO, Backyard Brains\n\nSeminar Title: Neuroscience tools for the 99%: On the low-fi development of high-tech lab gear for hands-on neuroscience labs and exploratory research\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:569801677601b262b6f8d6b9949029d994ec200318f3d7c3f8d68e946006756c
SUMMARY:MSc Elizabeth Morosi, Montevideo, Uruguay
DTSTART;VALUE=DATE-TIME:20200820T220000Z
DTEND;VALUE=DATE-TIME:20200820T230000Z
DESCRIPTION:This is an online seminar hosted by: IIBCE on Brain Science\n\nSpeaker: MSc Elizabeth Morosi, Montevideo, Uruguay | \n\nSeminar Title: Students´Poster Presentation I Evaluation of the effect of different types of physical training on cognitive stress caused by the Stroop test, using Backyard Brain technology\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:32311685f548f4b07f1712e7a887cd1d4498a7bb5630799d03bd0972dc0720e8
SUMMARY:MBA, MA: Education Álvaro Férnandez
DTSTART;VALUE=DATE-TIME:20200821T190000Z
DTEND;VALUE=DATE-TIME:20200821T200000Z
DESCRIPTION:This is an online seminar hosted by: IIBCE on Brain Science\n\nSpeaker: MBA, MA: Education Álvaro Férnandez | CEO, SharpBrains, San Francisco, CA, USA.\n\nSeminar Title: Cómo invertir en nuestros cerebros y mentes a través de la Inteligencia Artificial y las Neurociencias\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:a036a0caebbd75d0120cad825cfe2b3e79df64d65f8b1c40ea44977bec146ea5
SUMMARY:PhD Student Julieta Arancio
DTSTART;VALUE=DATE-TIME:20200821T200000Z
DTEND;VALUE=DATE-TIME:20200821T210000Z
DESCRIPTION:This is an online seminar hosted by: IIBCE on Brain Science\n\nSpeaker: PhD Student Julieta Arancio | Centro de Investigaciones para la Transformación (CENIT-UNSAM), AR\n\nSeminar Title: Panorama de tecnologías abiertas para ciencia y educación en América Latina\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:941605de353f73b5821c05a1309c143c8157ff474b7547d137bdbccbde845e8b
SUMMARY: Carlos A. Almenara
DTSTART;VALUE=DATE-TIME:20200821T204500Z
DTEND;VALUE=DATE-TIME:20200821T214500Z
DESCRIPTION:This is an online seminar hosted by: IIBCE on Brain Science\n\nSpeaker: Carlos A. Almenara | Universidad Peruana de Ciencias Aplicadas Cybermind Lab\n\nSeminar Title: Experiencias de fomento de la investigación en ciberpsicología y neurociencias con hardware abierto: El caso de Cybermind Lab en Perú\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:a01f8e7db6ffd039881836ef75e5b11ef7c35aeddca9bb35e0665a250bb8d19b
SUMMARY:Professor Carlos Belmonte
DTSTART;VALUE=DATE-TIME:20200921T120000Z
DTEND;VALUE=DATE-TIME:20200921T130000Z
DESCRIPTION:This is an online seminar hosted by: IIBCE on Brain Science\n\nSpeaker: Professor Carlos Belmonte | Real Academia Española de Ciencias Exactas, Físicas y Naturales\n\nSeminar Title: La investigación del cerebro: Esperanzas e incertidumbres\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:0ebeb805b9515cfdbd561a8cbe3bb3a8a196565bd4604692191fb4957723d98d
SUMMARY:Professor Eve Marder, Ph.D.
DTSTART;VALUE=DATE-TIME:20200928T120000Z
DTEND;VALUE=DATE-TIME:20200928T130000Z
DESCRIPTION:This is an online seminar hosted by: IIBCE on Brain Science\n\nSpeaker: Professor Eve Marder, Ph.D. | Victor and Gwendolyn Beinfield Professor of Neuroscience, Biology Dept and Volen Center,
Brandeis University, Waltham, MA, USA\n\nSeminar Title: Differential Resilience of Neurons and Networks with Similar Behavior to Perturbation. (Simultaneous translation to Spanish)\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:8a3ae9cf2908ee54f64c80a11528e0a8595bc417289d7a9ce8f3dcbfd50cede1
SUMMARY:Professor Ed Boyden
DTSTART;VALUE=DATE-TIME:20201012T120000Z
DTEND;VALUE=DATE-TIME:20201012T130000Z
DESCRIPTION:This is an online seminar hosted by: IIBCE on Brain Science\n\nSpeaker: Professor Ed Boyden | Y. Eva Tan Professor in Neurotechnology at MIT; Howard Hughes Medical Institute; McGovern Institute; Professor, Departments of Brain and Cognitive Sciences, Media Arts and Sciences, and Biological Engineering; Co-Director, MIT Center for Neurobiological Engineering; Member, MIT Center for Environmental Health Sciences, Computational and Systems Biology Initiative, and Koch Institute; Leader, Synthetic Neurobiology Group, Massachusetts Institute of Technology\n\nSeminar Title: Tools for Analyzing and Repairing the Brain. ( (Simultaneous translation to Spanish))\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:b33191558e21ed15838c102bf6e4b1c199996a08f82f8d2bdbffb4fddceab7cd
SUMMARY: Max Happel
DTSTART;VALUE=DATE-TIME:20201005T140000Z
DTEND;VALUE=DATE-TIME:20201005T150000Z
DESCRIPTION:This is an online seminar hosted by: LOOPS de Hoz - Hechavarria\n\nSpeaker: Max Happel | Leibniz Institute for Neurobiology, Magdeburg, Germany\n\nSeminar Title: Recurrent corticothalamic feedback in the auditory system: perceptual salience and dopaminergic modulation\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:14ca5849b962e619c55abd4af52956123baa45c616e8c09cf889021d54807ac4
SUMMARY: Patrik Krieger
DTSTART;VALUE=DATE-TIME:20201005T143000Z
DTEND;VALUE=DATE-TIME:20201005T153000Z
DESCRIPTION:This is an online seminar hosted by: LOOPS de Hoz - Hechavarria\n\nSpeaker: Patrik Krieger | Dept. Medicine, Ruhr-University, Bochum, Germany\n\nSeminar Title: Dynamic regulation of information processing in thalamus\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:c9dce85dde76af7c1c7599d822cab8a691e8202c47cf1298e124ea0215578a88
SUMMARY: Huizhong Tao
DTSTART;VALUE=DATE-TIME:20201012T140000Z
DTEND;VALUE=DATE-TIME:20201012T150000Z
DESCRIPTION:This is an online seminar hosted by: LOOPS de Hoz - Hechavarria\n\nSpeaker: Huizhong Tao | Keck School of medicine, USC, Los Angeles, USA\n\nSeminar Title: Modulation of Visual Cortical Processing by a Higher-Order Thalamic Nucleus\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:6beedc743b06096a262868bac87f6e3067bd537dd6247534da13e238e2231233
SUMMARY: Markus Rothermel
DTSTART;VALUE=DATE-TIME:20201012T143000Z
DTEND;VALUE=DATE-TIME:20201012T153000Z
DESCRIPTION:This is an online seminar hosted by: LOOPS de Hoz - Hechavarria\n\nSpeaker: Markus Rothermel | Dept. Chemosensation, RWTH Aachen University, Germany\n\nSeminar Title: Influence of cortical and neuromodulatory loops on sensory information processing and perception in the mouse olfactory system\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:59081fa6dd97b9d75fcee0213491cc7577fafa1d356d3b0a9fe7f10c21e0da39
SUMMARY: Mathieu Wolff
DTSTART;VALUE=DATE-TIME:20201019T140000Z
DTEND;VALUE=DATE-TIME:20201019T150000Z
DESCRIPTION:This is an online seminar hosted by: LOOPS de Hoz - Hechavarria\n\nSpeaker: Mathieu Wolff | Aquitaine Institute for Cognitive and Integrative Neuroscience, Bordeaux University, France\n\nSeminar Title: Thalamocortical circuits from neuroanatomy to cognitive processes\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:64021f4b92b20bd684fd0ee19fe375ba281e2ea0a53b4ea4d823d16541e43fd4
SUMMARY: Marcel Oberlaender
DTSTART;VALUE=DATE-TIME:20201019T143000Z
DTEND;VALUE=DATE-TIME:20201019T153000Z
DESCRIPTION:This is an online seminar hosted by: LOOPS de Hoz - Hechavarria\n\nSpeaker: Marcel Oberlaender | Research Center caesar, Bonn, Germany\n\nSeminar Title: Top-down modulation of cortical output is gated by the thalamus\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:493aed69acb32d77bfd8ee4bda86dbc3f794a9cd1a2e19c1c1dd106569962593
SUMMARY: Victoria Bajo
DTSTART;VALUE=DATE-TIME:20201026T150000Z
DTEND;VALUE=DATE-TIME:20201026T160000Z
DESCRIPTION:This is an online seminar hosted by: LOOPS de Hoz - Hechavarria\n\nSpeaker: Victoria Bajo | Department of Physiology, Anatomy and Genetics, University of Oxford, UK\n\nSeminar Title: Targeting Neural Plasticity by Optogenetic Silencing in the Auditory Cortex\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:6257583a4f5ba74c64b2157fd1a6fe9bb67185551ee47a99020ad479a4d821ed
SUMMARY: Martin Fuhrman
DTSTART;VALUE=DATE-TIME:20201026T153000Z
DTEND;VALUE=DATE-TIME:20201026T163000Z
DESCRIPTION:This is an online seminar hosted by: LOOPS de Hoz - Hechavarria\n\nSpeaker: Martin Fuhrman | German Center for Neurodegenerative Diseases. Bonn\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:5aab7b56ecc20203db8928ce576d7604fb6abdd7febc75817e583a8760ba82c8
SUMMARY: Dan Polley
DTSTART;VALUE=DATE-TIME:20201102T150000Z
DTEND;VALUE=DATE-TIME:20201102T160000Z
DESCRIPTION:This is an online seminar hosted by: LOOPS de Hoz - Hechavarria\n\nSpeaker: Dan Polley | Eaton-Peabody Laboratories, Harvard Medical School, Boston, USA\n\nSeminar Title: New insights into organizing principles of the ascending and descending auditory pathways\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:9b0371d5473e08aebbf99ad30442733a13336d96c4be192091c37d8239abc901
SUMMARY: Alain Destexhe
DTSTART;VALUE=DATE-TIME:20201102T153000Z
DTEND;VALUE=DATE-TIME:20201102T163000Z
DESCRIPTION:This is an online seminar hosted by: LOOPS de Hoz - Hechavarria\n\nSpeaker: Alain Destexhe | ICN Integrative & Computational Neuroscience, CNRS, Paris, France\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:b0e5c53d5d932873573404ced2af48a00d2e611095c7c03deec7203ed33af9a0
SUMMARY: Sonja Hofer
DTSTART;VALUE=DATE-TIME:20201109T150000Z
DTEND;VALUE=DATE-TIME:20201109T160000Z
DESCRIPTION:This is an online seminar hosted by: LOOPS de Hoz - Hechavarria\n\nSpeaker: Sonja Hofer | Sainsbury Wellcome Centre, University College London, UK\n\nSeminar Title: Higher-order thalamocortical interactions during visual processing\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:a1e9971db1e5c85f2f35ef56b8fb11bb7790436187c5267f49a3102ea9a547d1
SUMMARY: Valery Grinevich
DTSTART;VALUE=DATE-TIME:20201109T153000Z
DTEND;VALUE=DATE-TIME:20201109T163000Z
DESCRIPTION:This is an online seminar hosted by: LOOPS de Hoz - Hechavarria\n\nSpeaker: Valery Grinevich | Zentralinstitut für Seelische Gesundheit, University of Heidelberg, Germany\n\nSeminar Title: Sensory modalities driving social behavior via the central oxytocin system\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:f8581318c22a7a3c2e4c22820cc7a37825f4d6db2582f9e00ed150edc426feb0
SUMMARY: Laura Busse
DTSTART;VALUE=DATE-TIME:20201116T150000Z
DTEND;VALUE=DATE-TIME:20201116T160000Z
DESCRIPTION:This is an online seminar hosted by: LOOPS de Hoz - Hechavarria\n\nSpeaker: Laura Busse | Division of Neurobiology, Ludwig-Maximilians-Universität München, Germany\n\nSeminar Title: Effects of Corticothalamic Feedback on Geniculate Responses to Naturalistic and Artificial Visual Stimuli\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:9e2c78b13b528b7784fba89ce3f052f366503ea8c1910e0ba31193ae79420320
SUMMARY: Emmanuelle Courtiol
DTSTART;VALUE=DATE-TIME:20201116T153000Z
DTEND;VALUE=DATE-TIME:20201116T163000Z
DESCRIPTION:This is an online seminar hosted by: LOOPS de Hoz - Hechavarria\n\nSpeaker: Emmanuelle Courtiol | Lyon Neuroscience Research Center, CNRS, Lyon, France\n\nSeminar Title: Thalamic contribution to olfactory processing\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:73402e361e0fd9d465120ca354b103501f9970758928e8e1f335cf0d871fb09d
SUMMARY: Anita Luthi
DTSTART;VALUE=DATE-TIME:20201123T150000Z
DTEND;VALUE=DATE-TIME:20201123T160000Z
DESCRIPTION:This is an online seminar hosted by: LOOPS de Hoz - Hechavarria\n\nSpeaker: Anita Luthi | Department of Fundamental Neurosciences, University of Lausanne, Switzerland\n\nSeminar Title: A thalamic reticular circuit for head direction cell tuning and spatial navigation\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:18e2de6e0bd3cb545cea42eb4f22a4bbbdbfaddc981aef5c882b07baf19d6ccc
SUMMARY: Fleur Zeldenrust
DTSTART;VALUE=DATE-TIME:20201123T153000Z
DTEND;VALUE=DATE-TIME:20201123T163000Z
DESCRIPTION:This is an online seminar hosted by: LOOPS de Hoz - Hechavarria\n\nSpeaker: Fleur Zeldenrust | Department of Neurophysiology, Donders Institute for Brain, Cognition and Behaviour, Radboud University, Nijmegen, the Netherlands\n\nSeminar Title: Information transfer in (barrel) cortex: from single cell to network\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:ac1dfc3ebc4faaf0117de3de3bc1e28bdffaea7d7e9b568e7f16dfc2b6deca2d
SUMMARY: Ehud Ahissar
DTSTART;VALUE=DATE-TIME:20201130T150000Z
DTEND;VALUE=DATE-TIME:20201130T160000Z
DESCRIPTION:This is an online seminar hosted by: LOOPS de Hoz - Hechavarria\n\nSpeaker: Ehud Ahissar | Department of Neurobiology, Weizmann Institute of Science, Rehovot, Israel\n\nSeminar Title: Coordination of thalamo-cortical loops and global motor-sensory-motor loops in perception\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:7e91b4f63d32645424657009c555a7c218812099b5f37dd1a96a5fff5c9e1818
SUMMARY: Matthew Larkum
DTSTART;VALUE=DATE-TIME:20201130T153000Z
DTEND;VALUE=DATE-TIME:20201130T163000Z
DESCRIPTION:This is an online seminar hosted by: LOOPS de Hoz - Hechavarria\n\nSpeaker: Matthew Larkum | Humboldt University, Berlin, Germany\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:62927ac9ac4fc55ce95f5a2c20f615d934878b7934ec9e976c65152edd3c4a64
SUMMARY: Alexander Heimel
DTSTART;VALUE=DATE-TIME:20201207T153000Z
DTEND;VALUE=DATE-TIME:20201207T163000Z
DESCRIPTION:This is an online seminar hosted by: LOOPS de Hoz - Hechavarria\n\nSpeaker: Alexander Heimel | Netherlands Institute for Neuroscience, Amsterdam, the Netherlands\n\nSeminar Title: Interaction between the superior colliculus and the visual cortex?\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:4b6152e641334e157bf49483b6774e705d0a8ec4f9ea0946d93bf1da579342af
SUMMARY: Israel Nelken
DTSTART;VALUE=DATE-TIME:20201214T150000Z
DTEND;VALUE=DATE-TIME:20201214T160000Z
DESCRIPTION:This is an online seminar hosted by: LOOPS de Hoz - Hechavarria\n\nSpeaker: Israel Nelken | Edmond and Lily Safra Center for Brain Sciences, Jerusalem, Israel\n\nSeminar Title: Contextual effects in the representation of complex sounds: from the inferior colliculus to higher-order cortical fields\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:276128a6da2c6fb04a37c278cbefdb646aef4ba2beb4089e3a46766807404abe
SUMMARY: Ziad Hafed
DTSTART;VALUE=DATE-TIME:20201214T153000Z
DTEND;VALUE=DATE-TIME:20201214T163000Z
DESCRIPTION:This is an online seminar hosted by: LOOPS de Hoz - Hechavarria\n\nSpeaker: Ziad Hafed | Werner Reichardt Centre for Integrative Neuroscience, Tübingen, Germany\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:7d2a1217eefcbbf8f6e3bcdff472c6f63c0627fc6c4e189b9c104e9474c87f74
SUMMARY: Rebecca Mease
DTSTART;VALUE=DATE-TIME:20210111T153000Z
DTEND;VALUE=DATE-TIME:20210111T163000Z
DESCRIPTION:This is an online seminar hosted by: LOOPS de Hoz - Hechavarria\n\nSpeaker: Rebecca Mease | Institut für Physiologie und Pathophysiologie, Medizinische Fakultät Heidelberg, Germany\n\nSeminar Title: Multiplexed coding in the higher-order thalamus\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:ed2fa51380ca80668b3bc163d578fbc562d6c4199cb4aae8791693a7843daaa8
SUMMARY: Livia de Hoz
DTSTART;VALUE=DATE-TIME:20210118T150000Z
DTEND;VALUE=DATE-TIME:20210118T160000Z
DESCRIPTION:This is an online seminar hosted by: LOOPS de Hoz - Hechavarria\n\nSpeaker: Livia de Hoz | Neuroscience Research Center, Charité - Medical University, Berlin, Germany\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:f3a7e5c1f5e949936244f77dd50f2c45dd2d30d712eabd81a0cd24f9fe0c1544
SUMMARY: Zhang Li
DTSTART;VALUE=DATE-TIME:20210201T150000Z
DTEND;VALUE=DATE-TIME:20210201T160000Z
DESCRIPTION:This is an online seminar hosted by: LOOPS de Hoz - Hechavarria\n\nSpeaker: Zhang Li | Keck School of Medicine, University of Southern California, USA\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:1346197f91766b1444df275aa8e35904fc16402386549a5947a61f2451007250
SUMMARY:Dr Irina Higgins
DTSTART;VALUE=DATE-TIME:20200715T130000Z
DTEND;VALUE=DATE-TIME:20200715T140000Z
DESCRIPTION:This is an online seminar hosted by: NeuroAI UCL\n\nSpeaker: Dr Irina Higgins | Google Deepmind\n\nSeminar Title: Unsupervised deep learning identifies semantic disentanglement in single inferotemporal neurons\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:80c333d75fbd66b1196836456ec4dbd4da4473a8e09142359290fe216e698e46
SUMMARY:Prof Michael Bronstein
DTSTART;VALUE=DATE-TIME:20200916T130000Z
DTEND;VALUE=DATE-TIME:20200916T140000Z
DESCRIPTION:This is an online seminar hosted by: NeuroAI UCL\n\nSpeaker: Prof Michael Bronstein | Imperial College London\n\nSeminar Title: Geometric deep learning on graphs and manifolds\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:3eebdf3712ddcd605c25e03036c8c1df40e3a3152dccb20a285fa104a854b761
SUMMARY:Prof Kate Wassum
DTSTART;VALUE=DATE-TIME:20200923T161500Z
DTEND;VALUE=DATE-TIME:20200923T171500Z
DESCRIPTION:This is an online seminar hosted by: Boston Sys Neuro\n\nSpeaker: Prof Kate Wassum | University of California, Los Angeles\n\nSeminar Title: Corticolimbic Circuitry in Reward Learning and Pursuit\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:75aa359009dd292070b291a005e20a6c0e99569693be7f4c981e809d59a56fa9
SUMMARY:Prof Chethan Pandarinath
DTSTART;VALUE=DATE-TIME:20201021T161500Z
DTEND;VALUE=DATE-TIME:20201021T171500Z
DESCRIPTION:This is an online seminar hosted by: Boston Sys Neuro\n\nSpeaker: Prof Chethan Pandarinath | Emory University, Department of Biomedical Engeering\n\nSeminar Title: Towards generalized inference of single-trial neural population dynamics\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:4f71e62e873f24cd82cf3501d85b8d979790ccb821833c3098e9ed0a9a9d796a
SUMMARY:Prof David Schoppik
DTSTART;VALUE=DATE-TIME:20200702T130000Z
DTEND;VALUE=DATE-TIME:20200702T140000Z
DESCRIPTION:This is an online seminar hosted by: Champalimaud Colloquia\n\nSpeaker: Prof David Schoppik | New York University Grossman School of Medicine\n\nSeminar Title: How the brain comes to balance: Development of postural stability and its neural architecture in larval zebrafish\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:426f36355ca05a32be6fc133cfa6fd2ea6519e1b797f490d061a7231f2ff58af
SUMMARY:Prof Christiane Linster
DTSTART;VALUE=DATE-TIME:20200709T130000Z
DTEND;VALUE=DATE-TIME:20200709T140000Z
DESCRIPTION:This is an online seminar hosted by: Champalimaud Colloquia\n\nSpeaker: Prof Christiane Linster | Cornell University\n\nSeminar Title: Cholinergic regulation of learning in the olfactory system\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:d30563f40705f1478b214353be3452e653f30c1581965e28a186edd56e17a1c8
SUMMARY:Dr. Kumi O. Kuroda
DTSTART;VALUE=DATE-TIME:20200716T090000Z
DTEND;VALUE=DATE-TIME:20200716T100000Z
DESCRIPTION:This is an online seminar hosted by: Champalimaud Colloquia\n\nSpeaker: Dr. Kumi O. Kuroda | RIKEN Center for Brain Science\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:ea2669eb60dde3358fd9635e0c5b7bf6c6887fb94b70880dcc4e28814022eb77
SUMMARY:Prof Ansgar Büschges
DTSTART;VALUE=DATE-TIME:20200723T130000Z
DTEND;VALUE=DATE-TIME:20200723T140000Z
DESCRIPTION:This is an online seminar hosted by: Champalimaud Colloquia\n\nSpeaker: Prof Ansgar Büschges | Department of Animal Physiology, Institute of Zoology, University of Cologne\n\nSeminar Title: The complexity of the ordinary – neural control of locomotion\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:d87fb0b4da97019d5f808ae1c2f65f548c21ec169c7dfd0f95684f0a1046d185
SUMMARY:Prof David McCormick
DTSTART;VALUE=DATE-TIME:20200917T130000Z
DTEND;VALUE=DATE-TIME:20200917T140000Z
DESCRIPTION:This is an online seminar hosted by: Champalimaud Colloquia\n\nSpeaker: Prof David McCormick | University of Oregon\n\nSeminar Title: Rapid State Changes Account for Apparent Brain and Behavior Variability\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:06e8eb45ec68905af5dccd9d5ab4e5e2423603da9b6802e696037f47e386385c
SUMMARY:Prof Catherine Dulac
DTSTART;VALUE=DATE-TIME:20200924T110000Z
DTEND;VALUE=DATE-TIME:20200924T120000Z
DESCRIPTION:This is an online seminar hosted by: Champalimaud Colloquia\n\nSpeaker: Prof Catherine Dulac | Harvard University\n\nSeminar Title: Neurobiology of Social Behavior\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:defa2780a696870574fea047b7584de1512cf2ab9b92f14812d8d5a0bcd81126
SUMMARY:Prof Benjamin de Bivort
DTSTART;VALUE=DATE-TIME:20201008T130000Z
DTEND;VALUE=DATE-TIME:20201008T140000Z
DESCRIPTION:This is an online seminar hosted by: Champalimaud Colloquia\n\nSpeaker: Prof Benjamin de Bivort | Harvard University\n\nSeminar Title: Functional and structural loci of individuality in the Drosophila olfactory circuit\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:f85a0503879a6e930551dba7665426524be84f1df042cef4bd48ba8b00ca2e3b
SUMMARY:Prof Daniel Wolpert
DTSTART;VALUE=DATE-TIME:20201015T110000Z
DTEND;VALUE=DATE-TIME:20201015T120000Z
DESCRIPTION:This is an online seminar hosted by: Champalimaud Colloquia\n\nSpeaker: Prof Daniel Wolpert | Columbia University\n\nSeminar Title: Contextual inference underlies the learning of sensorimotor repertoires\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:b4e1c3e4f468b2d9049230eba6521e5875c81fdaed59a6d766959acf513e49d4
SUMMARY:Prof Lisa Giocomo
DTSTART;VALUE=DATE-TIME:20201022T143000Z
DTEND;VALUE=DATE-TIME:20201022T153000Z
DESCRIPTION:This is an online seminar hosted by: Champalimaud Colloquia\n\nSpeaker: Prof Lisa Giocomo | Stanford University\n\nSeminar Title: Multiple maps for navigation\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:23e13d7b6a375d47588670777d571d94df630d9bd86110e394d4844a57cd1240
SUMMARY:Prof Jens Brüning
DTSTART;VALUE=DATE-TIME:20201029T120000Z
DTEND;VALUE=DATE-TIME:20201029T130000Z
DESCRIPTION:This is an online seminar hosted by: Champalimaud Colloquia\n\nSpeaker: Prof Jens Brüning | Max Planck Institute for Metabolism Research\n\nSeminar Title: Neurocircuits in control of integrative physiology\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:92d894cf96bbe9ebb20bed489608916194fa579bf7b514496c862b78348c16e9
SUMMARY:Prof Constantin Rothkopf
DTSTART;VALUE=DATE-TIME:20200624T150000Z
DTEND;VALUE=DATE-TIME:20200624T160000Z
DESCRIPTION:This is an online seminar hosted by: SMARTSTART Midsummer Brains\n\nSpeaker: Prof Constantin Rothkopf | TU Darmstadt\n\nSeminar Title: MidsummerBrains - computational neuroscience from my point of view\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:b4b8fcc387673cf25100ac5ae0c063c975796cee2c4ca4b1f45818b3e79c81e5
SUMMARY:Prof Hermann Cuntz
DTSTART;VALUE=DATE-TIME:20200630T150000Z
DTEND;VALUE=DATE-TIME:20200630T160000Z
DESCRIPTION:This is an online seminar hosted by: SMARTSTART Midsummer Brains\n\nSpeaker: Prof Hermann Cuntz | Ernst Strüngmann Institute & Frankfurt Institute for Advanced Studies\n\nSeminar Title: MidsummerBrains - computational neuroscience from my point of view\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:b5aef788a7ad6c1c1997e13691ba3e74e6dd9a76e0271e99479105644e0f3292
SUMMARY:Prof Jutta Kretzberg
DTSTART;VALUE=DATE-TIME:20200701T150000Z
DTEND;VALUE=DATE-TIME:20200701T160000Z
DESCRIPTION:This is an online seminar hosted by: SMARTSTART Midsummer Brains\n\nSpeaker: Prof Jutta Kretzberg | University of Oldenburg\n\nSeminar Title: MidsummerBrains - computational neuroscience from my point of view\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:6dcc84949a22aaf1b62937f6a67223e452dbda5e1f588eccd9eae03cfcee0b59
SUMMARY:Dr Katharina Wilmes
DTSTART;VALUE=DATE-TIME:20200708T150000Z
DTEND;VALUE=DATE-TIME:20200708T160000Z
DESCRIPTION:This is an online seminar hosted by: SMARTSTART Midsummer Brains\n\nSpeaker: Dr Katharina Wilmes | University of Bern\n\nSeminar Title: MidsummerBrains - computational neuroscience from my point of view\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:977f0dd9d799819bfc3e33bb0e3d000db570682d36a5dd6dc1111c724da26954
SUMMARY:Prof Julijana Gjorgjieva
DTSTART;VALUE=DATE-TIME:20200715T150000Z
DTEND;VALUE=DATE-TIME:20200715T160000Z
DESCRIPTION:This is an online seminar hosted by: SMARTSTART Midsummer Brains\n\nSpeaker: Prof Julijana Gjorgjieva | MPI brain research\n\nSeminar Title: MidsummerBrains - computational neuroscience from my point of view\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:3c47b628ec27a6e41777e584ff44d47fa05bccf1b187ac9ec646c69a7accc8f1
SUMMARY:Prof Christian Leibold
DTSTART;VALUE=DATE-TIME:20200722T150000Z
DTEND;VALUE=DATE-TIME:20200722T160000Z
DESCRIPTION:This is an online seminar hosted by: SMARTSTART Midsummer Brains\n\nSpeaker: Prof Christian Leibold | LMU Munich\n\nSeminar Title: MidsummerBrains - computational neuroscience from my point of view\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:2b10dc3d104d6fd4fb8ac4f0cb8aaa000f380eccd4d5e8e8cbd99ae0e993f2e3
SUMMARY:Dr Mihaela Iordanova
DTSTART;VALUE=DATE-TIME:20200730T160000Z
DTEND;VALUE=DATE-TIME:20200730T170000Z
DESCRIPTION:This is an online seminar hosted by: Neuro Light Lunch\n\nSpeaker: Dr Mihaela Iordanova | Concordia University\n\nSeminar Title: VTA DA transients regulate temporal-difference learning\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:5db2fbf1512fc7a3f4ad23da4a9846025413089136ccb49776970b4017dcd9d9
SUMMARY:Dr Arjun Krishnaswamy
DTSTART;VALUE=DATE-TIME:20200709T160000Z
DTEND;VALUE=DATE-TIME:20200709T170000Z
DESCRIPTION:This is an online seminar hosted by: Neuro Light Lunch\n\nSpeaker: Dr Arjun Krishnaswamy | McGill University\n\nSeminar Title: Optical approaches to study the assembly and function of retinal circuits\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:b0ab7501c869fb7e10553ef39eaf2e40acde3e65a03e0ff28489e23425de1d2d
SUMMARY:Dr Mark Brandon
DTSTART;VALUE=DATE-TIME:20200716T160000Z
DTEND;VALUE=DATE-TIME:20200716T170000Z
DESCRIPTION:This is an online seminar hosted by: Neuro Light Lunch\n\nSpeaker: Dr Mark Brandon | Douglas Mental Health University Institute\n\nSeminar Title: Imaging the neural basis of cognition 1000 neurons at a time\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:62b5233f33c7d2add73926a809aa366ac225899973fc4052ca0aebf5e121a303
SUMMARY:Dr Kaspar Podgorski
DTSTART;VALUE=DATE-TIME:20200723T160000Z
DTEND;VALUE=DATE-TIME:20200723T170000Z
DESCRIPTION:This is an online seminar hosted by: Neuro Light Lunch\n\nSpeaker: Dr Kaspar Podgorski | Janelia/SickKids\n\nSeminar Title: Faster two-photon microscopy using digital micromirror devices\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:7f872fb5b2b16ce98c215125360a78c97e8dc81292c89f5d9d12be84cd4a9b5a
SUMMARY:Dr Alex Lohman
DTSTART;VALUE=DATE-TIME:20200730T163000Z
DTEND;VALUE=DATE-TIME:20200730T173000Z
DESCRIPTION:This is an online seminar hosted by: Neuro Light Lunch\n\nSpeaker: Dr Alex Lohman | University of Calgary/HBI\n\nSeminar Title: Novel optogenetic tools to investigate pannexin-1 signaling in the central nervous system\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:567889a03b866981973f52b11be71adac8e44db314f23bc70e09eed60b0e0592
SUMMARY:Dr Tony Lim
DTSTART;VALUE=DATE-TIME:20200709T163000Z
DTEND;VALUE=DATE-TIME:20200709T173000Z
DESCRIPTION:This is an online seminar hosted by: Neuro Light Lunch\n\nSpeaker: Dr Tony Lim | Montreal Neurological Institute\n\nSeminar Title: Control of microglial-mediated axonal pruning by complement activating and inhibiting molecules\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:945afa390dc41db9ce95c5755dfb2a79239fba5126fc2270bbc4905ead4833b7
SUMMARY:Dr Matilde Balbi
DTSTART;VALUE=DATE-TIME:20200716T163000Z
DTEND;VALUE=DATE-TIME:20200716T173000Z
DESCRIPTION:This is an online seminar hosted by: Neuro Light Lunch\n\nSpeaker: Dr Matilde Balbi | UBC/U Queensland\n\nSeminar Title: Multimodal approaches to assess optogenetically induced neuroprotection in the acute phase after stroke\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:491ec269cbf5f0f21117106bf94629547559986175b3efdd08a00391c9b94d6a
SUMMARY:Dr Ahmed Abdelfattah
DTSTART;VALUE=DATE-TIME:20200723T163000Z
DTEND;VALUE=DATE-TIME:20200723T173000Z
DESCRIPTION:This is an online seminar hosted by: Neuro Light Lunch\n\nSpeaker: Dr Ahmed Abdelfattah | Janelia Research Campus\n\nSeminar Title: Genetically encoded voltage sensors for optical monitoring of brain activity\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:227c5ea55432074b198c3de70d396da0fadb671162d22e9858b2fb2b15f0baf4
SUMMARY:Director of Neuroscience Research Matt Botvinick
DTSTART;VALUE=DATE-TIME:20200718T130000Z
DTEND;VALUE=DATE-TIME:20200718T140000Z
DESCRIPTION:This is an online seminar hosted by: CNS 2020\n\nSpeaker: Director of Neuroscience Research Matt Botvinick | DeepMind\n\nSeminar Title: Deep reinforcement learning and its neuroscientific implications\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:25be7ee657605ccff04cbef1fe03dcc69a0f65a21be8b96b716d3bfa0866eb61
SUMMARY:Prof. Zhaoping Li
DTSTART;VALUE=DATE-TIME:20200719T130000Z
DTEND;VALUE=DATE-TIME:20200719T140000Z
DESCRIPTION:This is an online seminar hosted by: CNS 2020\n\nSpeaker: Prof. Zhaoping Li | University of Tuebingen and Max Planck Institute\n\nSeminar Title: A new computational framework for understanding vision in our brain\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:c151dc33c3fb33059eda3d151208c6967b86bac20ba6d7dd91a8057cfa33da59
SUMMARY: Xiaoliu Zhang
DTSTART;VALUE=DATE-TIME:20200719T110000Z
DTEND;VALUE=DATE-TIME:20200719T120000Z
DESCRIPTION:This is an online seminar hosted by: CNS 2020\n\nSpeaker: Xiaoliu Zhang | Monash University\n\nSeminar Title: Delineating Reward/Avoidance Decision Process in the Impulsive-compulsive Spectrum Disorders through a Probabilistic Reversal Learning Task\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:596c19239e5ccecac02712a36b0cbcbbffa73f11831003cdb1d98941de5271f4
SUMMARY: Andrea Navas-Olive
DTSTART;VALUE=DATE-TIME:20200719T154000Z
DTEND;VALUE=DATE-TIME:20200719T164000Z
DESCRIPTION:This is an online seminar hosted by: CNS 2020\n\nSpeaker: Andrea Navas-Olive | Instituto Cajal CSIC\n\nSeminar Title: Using evolutionary algorithms to explore single-cell heterogeneity and microcircuit operation in the hippocampus\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:2c699ecd00e1a344ce7da7b40f5bf6b545320fe0ca7bf275d3f5ff9141dc522d
SUMMARY: Adriano Bellotti
DTSTART;VALUE=DATE-TIME:20200720T110000Z
DTEND;VALUE=DATE-TIME:20200720T120000Z
DESCRIPTION:This is an online seminar hosted by: CNS 2020\n\nSpeaker: Adriano Bellotti | University of Cambridge\n\nSeminar Title: Neuronal morphology imposes a tradeoff between stability, accuracy and efficiency of synaptic scaling\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:65906f672224593aa431045d157ec1b72d36cdb4ed48510bd9e766af21f20e89
SUMMARY:Prof. Daniel Polani
DTSTART;VALUE=DATE-TIME:20200720T130000Z
DTEND;VALUE=DATE-TIME:20200720T140000Z
DESCRIPTION:This is an online seminar hosted by: CNS 2020\n\nSpeaker: Prof. Daniel Polani | University of Hertfordshire\n\nSeminar Title: Information and Decision-Making\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:662fd6dba1ba52efae2f3d7428bef001708e8e65837f1383f6efbc0d7c2810cd
SUMMARY: Ioannis Pisokas
DTSTART;VALUE=DATE-TIME:20200720T142000Z
DTEND;VALUE=DATE-TIME:20200720T152000Z
DESCRIPTION:This is an online seminar hosted by: CNS 2020\n\nSpeaker: Ioannis Pisokas | University of Edinburgh\n\nSeminar Title: Who can turn faster? Comparison of the head direction circuit of two species\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:eab0b214687723518a9c896076891da2b8436a2030ea8bc9aca0c9d0a1a2e20e
SUMMARY:Prof. Geoffrey J. Goodhill
DTSTART;VALUE=DATE-TIME:20200721T050000Z
DTEND;VALUE=DATE-TIME:20200721T060000Z
DESCRIPTION:This is an online seminar hosted by: CNS 2020\n\nSpeaker: Prof. Geoffrey J. Goodhill | The University of Queensland\n\nSeminar Title: Computational models of neural development\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:7f766408389a8acc50fccff0c7004bb5af62457624af59b6441e16bef03e98bc
SUMMARY: Hugo Bellen
DTSTART;VALUE=DATE-TIME:20200827T150000Z
DTEND;VALUE=DATE-TIME:20200827T160000Z
DESCRIPTION:This is an online seminar hosted by: Neurodegeneration in Flies\n\nSpeaker: Hugo Bellen | Baylor College of Medicine\n\nSeminar Title: The study of rare neurological diseases drives discoveries for common diseases\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:e12da576d2f40050993bc9be87109138572462d2c2cf180fd24f62048c74ef42
SUMMARY: Sean Sweeney
DTSTART;VALUE=DATE-TIME:20200910T150000Z
DTEND;VALUE=DATE-TIME:20200910T160000Z
DESCRIPTION:This is an online seminar hosted by: Neurodegeneration in Flies\n\nSpeaker: Sean Sweeney | University of York\n\nSeminar Title: Identifying pathological events and therapeutics in FTD-ALS using Drosophila\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:ebaa38430650d8b98b92aa8c19c351a0dbcaf958a7a2fb0f52ffe9a1e717dc6b
SUMMARY: Pedro Fernandez-Funez
DTSTART;VALUE=DATE-TIME:20200924T150000Z
DTEND;VALUE=DATE-TIME:20200924T160000Z
DESCRIPTION:This is an online seminar hosted by: Neurodegeneration in Flies\n\nSpeaker: Pedro Fernandez-Funez | University of Minnesota\n\nSeminar Title: Unraveling the intrinsic and extrinsic mechanisms underlying the toxicity of the prion protein\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:b99aa0a3c6ef0f6dbea4bfce0ea61a937d0a2e58dca94336fd4c9e78bed4c598
SUMMARY: Patrik Verstreken
DTSTART;VALUE=DATE-TIME:20201008T150000Z
DTEND;VALUE=DATE-TIME:20201008T160000Z
DESCRIPTION:This is an online seminar hosted by: Neurodegeneration in Flies\n\nSpeaker: Patrik Verstreken | VIB-KU Leuven\n\nSeminar Title: The cellular phase of Parkinson's disease\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:339f71df9a4f8d6390bafd1fdfee3aa66dce8ec7ff62c8ec989f998ea078b088
SUMMARY: Amritpal Mudher
DTSTART;VALUE=DATE-TIME:20201022T150000Z
DTEND;VALUE=DATE-TIME:20201022T160000Z
DESCRIPTION:This is an online seminar hosted by: Neurodegeneration in Flies\n\nSpeaker: Amritpal Mudher | University of Southampton\n\nSeminar Title: Tau tangles in Drosophila models of tauopathy - fact or fiction?\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:a565c29c635a133586da7e4a53e4123fe9d13dc5e7e597e5360548a43437232d
SUMMARY: Joshua Shulman
DTSTART;VALUE=DATE-TIME:20201105T160000Z
DTEND;VALUE=DATE-TIME:20201105T170000Z
DESCRIPTION:This is an online seminar hosted by: Neurodegeneration in Flies\n\nSpeaker: Joshua Shulman | Baylor College of Medicine\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:830a8c00f928f06117984fb30d9b98c913aa28d2df7f3a0044717c5d0ab81b38
SUMMARY: Mel Feany
DTSTART;VALUE=DATE-TIME:20201119T160000Z
DTEND;VALUE=DATE-TIME:20201119T170000Z
DESCRIPTION:This is an online seminar hosted by: Neurodegeneration in Flies\n\nSpeaker: Mel Feany | Harvard Medical School\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:2d97bed9b1a566a1db88e60e49db032fb8b5b621bd316650c971b2debf81051e
SUMMARY: Alex Whitworth
DTSTART;VALUE=DATE-TIME:20201203T160000Z
DTEND;VALUE=DATE-TIME:20201203T170000Z
DESCRIPTION:This is an online seminar hosted by: Neurodegeneration in Flies\n\nSpeaker: Alex Whitworth | University of Cambridge\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:6829684c61c6c4bf90367df2072dc3a5b1f48bf93eff5df868a60e5cdcd3a910
SUMMARY:Prof Earl Miller
DTSTART;VALUE=DATE-TIME:20200507T200000Z
DTEND;VALUE=DATE-TIME:20200507T210000Z
DESCRIPTION:This is an online seminar hosted by: MIT Brain & Cog Sci\n\nSpeaker: Prof Earl Miller | Picower Institute, MIT\n\nSeminar Title: Working Memory 2.0\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:94b273c5079866e59525aaf239ddc77047407fb7decd85428b36add1a447546c
SUMMARY:Prof Guoping Feng
DTSTART;VALUE=DATE-TIME:20200514T200000Z
DTEND;VALUE=DATE-TIME:20200514T210000Z
DESCRIPTION:This is an online seminar hosted by: MIT Brain & Cog Sci\n\nSpeaker: Prof Guoping Feng | MIT Dept. of Brain and Cognitive Sciences\n\nSeminar Title: Thalamic reticular nucleus dysfunction in neurodevelopmental disorders\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:402f34b741a5c784aec8575c17435f942e3439da236c611fe25e224804d9312d
SUMMARY:Prof Mriganka Sur
DTSTART;VALUE=DATE-TIME:20200521T200000Z
DTEND;VALUE=DATE-TIME:20200521T210000Z
DESCRIPTION:This is an online seminar hosted by: MIT Brain & Cog Sci\n\nSpeaker: Prof Mriganka Sur | MIT Department of Brain and Cognitive Sciences\n\nSeminar Title: Cortical plasticity\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:82ba3c035e8ac9587f67932ed843fe27c9324d14f92a791070e1372d433169de
SUMMARY:Prof Nancy Kanwisher
DTSTART;VALUE=DATE-TIME:20200528T200000Z
DTEND;VALUE=DATE-TIME:20200528T210000Z
DESCRIPTION:This is an online seminar hosted by: MIT Brain & Cog Sci\n\nSpeaker: Prof Nancy Kanwisher | MIT Department of Brain and Cognitive Sciences\n\nSeminar Title: Domain Specificity in the Human Brain: What, Whether, and Why?\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:dd0230abb473c433526e718867ed89b4015436226c0bb072e892edf186ff7502
SUMMARY:Dr. Joseph Carroll
DTSTART;VALUE=DATE-TIME:20200911T130000Z
DTEND;VALUE=DATE-TIME:20200911T140000Z
DESCRIPTION:This is an online seminar hosted by: Duke VisionFest\n\nSpeaker: Dr. Joseph Carroll | Medical College of Wisconsin\n\nSeminar Title: Duke VisionFest Symposium Keynote: Applications of High-Resolution Retinal Imaging\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:e23ac00b414765eca75dc285d975e5b5e8105b42278fa6ad292b0fef9786c820
SUMMARY:Prof Martin Giurfa
DTSTART;VALUE=DATE-TIME:20200407T130000Z
DTEND;VALUE=DATE-TIME:20200407T140000Z
DESCRIPTION:This is an online seminar hosted by: NeuroBehaviour in Quarantine Times\n\nSpeaker: Prof Martin Giurfa | University Paul Sabatier Toulouse\n\nSeminar Title: How learning makes you picky: mechanisms of long-term change in reinforcement sensitivity induced by associative learning in the honey bee\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:e980479ea0dd92ce912db2f89dce391553ebf62e3d6b21ef334a8faac59fe35c
SUMMARY:Prof Giorgio Vallortigara
DTSTART;VALUE=DATE-TIME:20200421T130000Z
DTEND;VALUE=DATE-TIME:20200421T140000Z
DESCRIPTION:This is an online seminar hosted by: NeuroBehaviour in Quarantine Times\n\nSpeaker: Prof Giorgio Vallortigara | University of Trento\n\nSeminar Title: The Evolution of Brain Asymmetry\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:4f279ab1d3334a21802bfd355e6deb0e4eac249d6d3748b150bcc9f24e687467
SUMMARY:Prof Patrizia d'Ettorre
DTSTART;VALUE=DATE-TIME:20200428T130000Z
DTEND;VALUE=DATE-TIME:20200428T140000Z
DESCRIPTION:This is an online seminar hosted by: NeuroBehaviour in Quarantine Times\n\nSpeaker: Prof Patrizia d'Ettorre | Université Paris-XIII\n\nSeminar Title: Behavioural variation, cognitive performance and personality in ants\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:7507a44ad72c4512d0af10df13c6be3cf3b0eb90834de9418a31235025d266c9
SUMMARY:Prof Joan E. Strassmann
DTSTART;VALUE=DATE-TIME:20200505T130000Z
DTEND;VALUE=DATE-TIME:20200505T140000Z
DESCRIPTION:This is an online seminar hosted by: NeuroBehaviour in Quarantine Times\n\nSpeaker: Prof Joan E. Strassmann | Washington University\n\nSeminar Title: Kin selection, relatedness and conflict in the social amoeba Dictyostelium discoideum\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:0e82424451589609ad07948b025972c04cfdec59399ce251f5b99e4024ba53cd
SUMMARY:Dr Johannes Felsenberg
DTSTART;VALUE=DATE-TIME:20200512T130000Z
DTEND;VALUE=DATE-TIME:20200512T140000Z
DESCRIPTION:This is an online seminar hosted by: NeuroBehaviour in Quarantine Times\n\nSpeaker: Dr Johannes Felsenberg | Friedrich Miescher Institute for Biomedical Research\n\nSeminar Title: Re-evaluation of learned behaviour in Drosophila melanogaster\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:b4fd80cff69a77c87f2244ef56c0a6c57a15b0743527ad3008a5a07b195149b3
SUMMARY:Prof Andreas Nieder
DTSTART;VALUE=DATE-TIME:20200526T130000Z
DTEND;VALUE=DATE-TIME:20200526T140000Z
DESCRIPTION:This is an online seminar hosted by: NeuroBehaviour in Quarantine Times\n\nSpeaker: Prof Andreas Nieder | University of Tuebingen\n\nSeminar Title: Brains for numbers\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:91fe5562430af6a7c60adeaf05424dc0dc08f105e5dc85590c127c805849e4d3
SUMMARY:Prof Onur Güntürkün
DTSTART;VALUE=DATE-TIME:20200609T130000Z
DTEND;VALUE=DATE-TIME:20200609T140000Z
DESCRIPTION:This is an online seminar hosted by: NeuroBehaviour in Quarantine Times\n\nSpeaker: Prof Onur Güntürkün | University of Bochum\n\nSeminar Title: Cognition without Cortex\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:c4fd12661595be20478c604779718695eb108450034217bf4bd46bb04aeb4de3
SUMMARY:Prof Bruce Carlson
DTSTART;VALUE=DATE-TIME:20200616T130000Z
DTEND;VALUE=DATE-TIME:20200616T140000Z
DESCRIPTION:This is an online seminar hosted by: NeuroBehaviour in Quarantine Times\n\nSpeaker: Prof Bruce Carlson | Washington University St Louis\n\nSeminar Title: Neural mechanisms of evolutionary change in sensory perception: a case study in weakly electric fish\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:297ff10897db00657a59ed947cdced0cdada452cf7fbbc4e7c4b0bae118af408
SUMMARY:Prof Kentaro Arikawa
DTSTART;VALUE=DATE-TIME:20200623T130000Z
DTEND;VALUE=DATE-TIME:20200623T140000Z
DESCRIPTION:This is an online seminar hosted by: NeuroBehaviour in Quarantine Times\n\nSpeaker: Prof Kentaro Arikawa | Sokendai University, Hayama, Japan\n\nSeminar Title: A colorful story on butterfly vision\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:5b775bef6a7ec370d7befbeeb0dd5de05d1a175aa36c19f5151183884c67042c
SUMMARY:Prof. Ellouise Leadbeater
DTSTART;VALUE=DATE-TIME:20200630T130000Z
DTEND;VALUE=DATE-TIME:20200630T140000Z
DESCRIPTION:This is an online seminar hosted by: NeuroBehaviour in Quarantine Times\n\nSpeaker: Prof. Ellouise Leadbeater | Royal Holloway University London\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:5e9dd4e939cfc7aa0db3bbcbc481483b09e790df8d4c2cca6d8ada218a5f8e1d
SUMMARY:Dr Audrey Dussutour
DTSTART;VALUE=DATE-TIME:20200721T130000Z
DTEND;VALUE=DATE-TIME:20200721T140000Z
DESCRIPTION:This is an online seminar hosted by: NeuroBehaviour in Quarantine Times\n\nSpeaker: Dr Audrey Dussutour | University Paul Sabatier of Toulouse\n\nSeminar Title: Problem-solving in acellular slime molds\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:e1b4380dd73e5134ffbfb8f6f67e7d8f3cc154b281c2b5567d71f462905e034c
SUMMARY: Henne Holstege
DTSTART;VALUE=DATE-TIME:20200528T140000Z
DTEND;VALUE=DATE-TIME:20200528T150000Z
DESCRIPTION:This is an online seminar hosted by: VIB Brain & Disease\n\nSpeaker: Henne Holstege | Amsterdam UMC\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:dfc3c0dec3f18a7931f810589dbf7c22e0e64348dba36094728247bbb75f3a48
SUMMARY:Prof Beatriz Rico
DTSTART;VALUE=DATE-TIME:20200611T140000Z
DTEND;VALUE=DATE-TIME:20200611T150000Z
DESCRIPTION:This is an online seminar hosted by: VIB Brain & Disease\n\nSpeaker: Prof Beatriz Rico | King's College London\n\nSeminar Title: Molecular Programs orchestrating the wiring of inhibitory circuitries\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:e3df6efbe9b9648f02babdcd9ab8347c7ce8f67f857b784b0ddb45646419d11c
SUMMARY:Prof Barak A. Cohen
DTSTART;VALUE=DATE-TIME:20200908T140000Z
DTEND;VALUE=DATE-TIME:20200908T150000Z
DESCRIPTION:This is an online seminar hosted by: VIB Brain & Disease\n\nSpeaker: Prof Barak A. Cohen | Washington University, St. Louis\n\nSeminar Title: Integration of Local and Regional cis-Regulatory Information in the Genome\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:b2c82bb295acbe3b93d3e1e0abe02590feea2377cd6c7e4811688a4b23193c04
SUMMARY:Prof Rosa Rademakers
DTSTART;VALUE=DATE-TIME:20201001T140000Z
DTEND;VALUE=DATE-TIME:20201001T150000Z
DESCRIPTION:This is an online seminar hosted by: VIB Brain & Disease\n\nSpeaker: Prof Rosa Rademakers | VIB-UAntwerp Center for Molecular Neurology\n\nSeminar Title: A decade of TMEM106B research\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:c9485dafa2d85aa859cb428f2570e6aba154aa07370dc6632c48b074f3aa6274
SUMMARY:Prof. Tim Vogels
DTSTART;VALUE=DATE-TIME:20200904T160000Z
DTEND;VALUE=DATE-TIME:20200904T170000Z
DESCRIPTION:This is an online seminar hosted by: NYU Swartz\n\nSpeaker: Prof. Tim Vogels | IST Austria\n\nSeminar Title: On the purpose and origin of spontaneous neural activity\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:9977c53ecb75a4031ac968ef832733420140ea9ceecd9fdbd9828fa54011d583
SUMMARY:Prof. Rishidev Chaudhuri
DTSTART;VALUE=DATE-TIME:20200925T160000Z
DTEND;VALUE=DATE-TIME:20200925T170000Z
DESCRIPTION:This is an online seminar hosted by: NYU Swartz\n\nSpeaker: Prof. Rishidev Chaudhuri | University of California, Davis\n\nSeminar Title: Using noise to probe recurrent neural network structure and prune synapses\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:1b9777ad86f4f3251181e62316c43de8d639663e6099328ce0244e78e7356f77
SUMMARY:Prof. Stefano Fusi
DTSTART;VALUE=DATE-TIME:20201016T160000Z
DTEND;VALUE=DATE-TIME:20201016T170000Z
DESCRIPTION:This is an online seminar hosted by: NYU Swartz\n\nSpeaker: Prof. Stefano Fusi | Columbia University\n\nSeminar Title: The geometry of abstraction in hippocampus and pre-frontal cortex\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:8df5ed6e92fb1dd614bcf359930c4ff59ae29daff40dd80b5d366c42d3062f8e
SUMMARY:Prof. Huizhong Tao
DTSTART;VALUE=DATE-TIME:20201113T170000Z
DTEND;VALUE=DATE-TIME:20201113T180000Z
DESCRIPTION:This is an online seminar hosted by: NYU Swartz\n\nSpeaker: Prof. Huizhong Tao | University of Southern Calfornia\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:15da4ddf0c27ad1d14140f3c83cd336d287b1f2cc6974690d7d80e50da33f80f
SUMMARY:Prof. Suzana Herculano-Houzel
DTSTART;VALUE=DATE-TIME:20201204T170000Z
DTEND;VALUE=DATE-TIME:20201204T180000Z
DESCRIPTION:This is an online seminar hosted by: NYU Swartz\n\nSpeaker: Prof. Suzana Herculano-Houzel | Vanderbilt University\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:b7d628d1bcb0faeca536b672f75b2a4aa9b3f65b92f271d76dc5776ed1915923
SUMMARY:Dr. Carsen Stringer
DTSTART;VALUE=DATE-TIME:20210108T170000Z
DTEND;VALUE=DATE-TIME:20210108T180000Z
DESCRIPTION:This is an online seminar hosted by: NYU Swartz\n\nSpeaker: Dr. Carsen Stringer | Janelia\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:63744073e8ba66858e87f1f6802450deb476f04134dcc55e1e67311035918fb2
SUMMARY:Prof. Luca Mazzucato
DTSTART;VALUE=DATE-TIME:20210122T170000Z
DTEND;VALUE=DATE-TIME:20210122T180000Z
DESCRIPTION:This is an online seminar hosted by: NYU Swartz\n\nSpeaker: Prof. Luca Mazzucato | University of Oregon\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:5655dee2c9be775c060c7804bface39f6cafee7b4ddaa401bd314cd4ad29bf13
SUMMARY:Prof. Christopher Harvey
DTSTART;VALUE=DATE-TIME:20210219T170000Z
DTEND;VALUE=DATE-TIME:20210219T180000Z
DESCRIPTION:This is an online seminar hosted by: NYU Swartz\n\nSpeaker: Prof. Christopher Harvey | Harvard University\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:9e43f9ca03b8d93b7f74f0ba4becad49e12bd73164d03d7beaea58c2af6467e2
SUMMARY:Prof. Kanaka Rajan
DTSTART;VALUE=DATE-TIME:20210312T170000Z
DTEND;VALUE=DATE-TIME:20210312T180000Z
DESCRIPTION:This is an online seminar hosted by: NYU Swartz\n\nSpeaker: Prof. Kanaka Rajan | Mount Sinai\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:f10f4713dd3c9bbb6f21286c31f3a886bf8ece396bc166153efccd46d565ad51
SUMMARY:Prof. Tirin Moore
DTSTART;VALUE=DATE-TIME:20210326T160000Z
DTEND;VALUE=DATE-TIME:20210326T170000Z
DESCRIPTION:This is an online seminar hosted by: NYU Swartz\n\nSpeaker: Prof. Tirin Moore | Stanford University\n\nFor more details on this event (summary text, teleconforencing link, etc), please check on the website www.worldwideneuro.com
END:VEVENT
BEGIN:VEVENT
UID:5a4bd32ea430eb50a55777f3bc54d3987ce706895a65279f4bee3da66e933d49