-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·926 lines (781 loc) · 46 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>ISC 2020</title>
<!-- css -->
<link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="bower_components/ionicons/css/ionicons.min.css">
<link rel="stylesheet" href="bower_components/nivo-lightbox/nivo-lightbox.css">
<link rel="stylesheet" href="bower_components/nivo-lightbox/nivo-lightbox-theme.css">
<link rel="stylesheet" href="bower_components/countdown/jquery.countdown.css">
<link rel="stylesheet" href="assets/css/main.css">
<link rel="icon" href="assets/images/favicon.ico">
<script>
$(function () {
var austDay = new Date();
austDay = new Date(austDay.getFullYear() + 1, 1 - 1, 26);
$('#defaultCountdown').countdown({until: austDay});
$('#year').text(austDay.getFullYear());
});
</script>
</head>
<body data-spy="scroll">
<div id="home"></div>
<nav id="site-nav" class="navbar navbar-fixed-top navbar-custom">
<div class="container">
<div class="navbar-header">
<!-- logo -->
<div class="site-branding">
<a class="logo" href="index.html">
<!-- logo image -->
<img src="assets/images/insight_rgb_72dpi_reversed.png" alt="Logo">
Student Conference 2020
</a>
</div>
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar-items"
aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div><!-- /.navbar-header -->
<div class="collapse navbar-collapse" id="navbar-items">
<ul class="nav navbar-nav navbar-right">
<!-- navigation menu -->
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#guidelines">Guidelines</a></li>
<li><a href="#speakers">Keynote speaker</a></li>
<li><a href="#organisers">Organising committee</a></li>
<li><a href="#schedule">Schedule</a></li>
<li><a href="#photos">Photos</a></li>
</ul>
</div>
</div><!-- /.container -->
</nav>
<header id="site-header" class="site-header valign-center">
<div class="intro">
<h2>12 February, 2020 / Galway</h2>
<h1>The Sixth Insight Student Conference (ISC) 2020</h1>
<p>for students by students</p>
<!-- <a class="btn btn-white inpage" href="#speakers">View Speakers</a> -->
</div>
</header>
<div id="countdown" class="countdown">
<div class="container">
<div class="row">
<div class="col-md-2">
<h3 class="section-title">Event Start</h3>
</div>
<div class="col-md-10">
<div id="defaultCountdown"></div>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-sm-6">
<font color="red"> <h3> The <a href="assets/docs/ISC2020_Book_of_Abstracts.pdf" target="_blank">Book of Abstracts</a> is now available! </h3></font>
</div></div></div>
<section id="about" class="section about">
<div class="container">
<div class="row">
<div class="col-sm-6">
<h3 class="section-title">About ISC</h3>
<p>
The sixth Insight Student Conference will take place on 12 February 2020 at <a href="https://www.nuigalway.ie/" target="_blank">NUI Galway</a>.
The objectives of this conference are:
<ul class="list-arrow-right">
<li>Presents a snapshot of current research activity conducted in Insight for other Insight members.</li>
<li>Provides a summary of Insight research to people outside of Insight (e.g. media, government, and others).</li>
<li>Provides an opportunity for students to organize a medium sized research meeting.</li>
</ul>
This is a conference organized by students for students. All students should submit an abstract and review one of another student.
</p>
<figure>
<img alt="" class="img-responsive" src="assets/images/about-us.jpg">
</figure>
</div><!-- /.col-sm-6 -->
<div class="col-sm-6">
<h3 class="section-title multiple-title">Call for abstracts</h3>
<p align="justify">
All students associated with Insight Centre for Data Analytics are invited to send a 1-page extended abstract summarising their current research. All abstracts will be reviewed by at least one Insight member. The authors of accepted abstracts are invited to submit a poster to be presented in the Insight Student Conference.
</p>
<p align="justify">
All accepted abstracts would be submitted to a voting system where Insight members may vote for the best abstract. The most voted ones will be invited to give a short presentation at the conference.
</p>
<h3 class="section-title multiple-title">What is different this year?</h3>
<p align="justify">
In comparison to the previous student conferences (<a href="https://www.insight-centre.org/content/insight-student-conference-2014" target="_blank">2014</a>, <a href="https://www.insight-centre.org/content/insight-student-conference-2015" target="_blank">2015</a>, <a href="https://www.insight-centre.org/content/student-conference-2016" target="_blank">2016</a>, <a href="http://studentconference2017.insight-centre.org/" target="_blank">2017</a> and 2018 in Dublin), we have a couple of new ideas for the ISC2020:
<ul class="list-arrow-right">
<li>Paper-free presentation session</li>
<p>Imagine the amount of time and paper required for printing over 100 A0 papers and simply throwing it away after the event! To avoid such a mess, we decided to have a paper-free presentation session this year. We are planning to have many parallel tracks where every student has a 10-minute session to discuss his/her work and get feedback from his/her audience. </p>
<li>Fun sessions (read the following)</li>
<!-- <li>Best Insight student award</li>
<p>We will be asking the supervisors to kindly nominate students with significant contributions to be awarded in the conference. Our jury at NUIG will vote for the 3 best PhD students in all Insight centres around the country</p> -->
</ul>
</p>
</div><!-- /.col-sm-6 -->
</div><!-- /.row -->
<h3>Call for Fun Sessions</h3>
<p>
This year, at the Insight Student Conference, we are limiting the lecture-style activities and we would like to have other activities to connect students, learn from each other and have fun!! For that purpose, we are releasing an open call for fun sessions.
</p>
<p>
This call is open to Insight students and staff. To get your ideas started, here is a non-exhaustive list of possible activities:
<ul>
<li>Data-driven treasure hunting</li>
<li>Virtual Reality debate session</li>
<li>World Cafe style discussion </li>
<li>Speed Networking</li>
<li>Thematic Panel Discussion</li>
<li>Collaboration Workshop</li>
<li>Lightning "How I work" talks (e.g. each person can present 3 minutes hints on how they organise literature, deal with procrastination, fight against writer's block, organise their code, make their research reproducible, etc.)</li>
</ul>
Please contact us at <a href="mailto:[email protected]">[email protected]</a>, if you are interested in preseting a session.
</p>
</div><!-- /.container -->
</section>
<section id="facts" class="bg-image-1 facts text-center">
<div class="container">
<div class="row">
<div class="col-sm-4">
<h3>2020<br>February 12</h3>
</div>
<div class="col-sm-4">
<h3>Galway<br></h3>
</div>
<div class="col-sm-4">
<h3>~150<br>Participants</h3>
</div>
</div><!-- row -->
</div><!-- container -->
</section>
<section id="guidelines" class="section about">
<div class="container">
<div class="row">
<div class="col-md-12">
<h3 class="section-title">GUIDELINES</h3>
</div>
</div>
<p align="justify">
The extended abstract must not exceed <b>1 page</b> and should follow the template of the conference. Templates can be found at:
<ul>
<li>Abstract: <a href="./assets/docs/AbstractTemplateLaTex.zip">Latex </a>and <a href="./assets/docs/AbstractTemplateWord.doc">Word</a></li>
<li>Slides: <a href="./assets/docs/Insightppttemplate.pptx">PowerPoint</a></li>
<li>Poster: <a href="./assets/docs/InsightPosterTemplate2(2).pptx">PowerPoint</a></li>
</ul>
</p>
<p align="justify">
In addition to the abstracts which will be published in the book of abstracts (see an example <a href="http://studentconference2017.insight-centre.org/book.pdf" target="_blank">here</a>), students will submit their presentation content. The presentation content can be a few slides. Please note that you will only have less than 10 minutes to present your work as there should be enough time for the QA session. Your presentation content will be displayed on screens provided for each track.
</p>
<p align="justify">
The camera-ready version of your abstract (in PDF) should be submitted at <a href="https://easychair.org/conferences/?conf=isc20191" target="_blank">https://easychair.org/conferences/?conf=isc20191</a> along with your slides (in PDF).</br>
Please provide both the abstract and the presentation in one single zipped file.</br>
<!-- To submit your presentation, create a new submission and prepend “PRESENTATION” to your submission title, e.g. If your abstract is titled “Data Science FTW”, your poster should be titled “POSTER Data Science FTW”. Please select only one topic when submitting your abstracts and presentations. -->
Please endeavour to follow the branding guidelines on the Insight internal pages.</br>
</p>
For any additional information, please contact: <a href="mailto:[email protected]">[email protected]</a>.
<div class="mxgraph" style="max-width:100%;border:1px solid transparent;" data-mxgraph="{"highlight":"#0000ff","nav":true,"resize":true,"toolbar":"zoom layers lightbox","edit":"_blank","xml":"<mxfile host=\"www.draw.io\" modified=\"2019-11-18T16:00:30.617Z\" agent=\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:70.0) Gecko/20100101 Firefox/70.0\" etag=\"az1d8LHOPO7KE5xIXtQd\" version=\"12.2.6\" type=\"device\" pages=\"1\"><diagram name=\"Page-1\" id=\"d9b1e647-80fa-b4a2-5024-87a742678bcc\">7Vldd5s4EP01nH1KjwAbw2NCQtqH3Yd1z+mzDINRIxArsLH76zsSwmAbN25ax+me5MGxZsTo4947GmHLDfPNo6Rl9rdIgFsOSTaWe285TkAIfirDtjV4xGsNS8mS1mT3hjn7BsZonluuWALVXsdaCF6zct8Yi6KAuN6zUSlFs98tFXx/1JIu4cgwjyk/tn5hSZ0Zq92tSzk+AltmZmh/ahwLGj8tpVgVZjzLcVP917pz2sUy/auMJqIZmNwHyw2lEHX7Ld+EwNXWdtvWPhed8O7mLaGoz3lgOkvBowuIiZ+SSby4MRHWlK+gW4LHMdZdKjAkzrjeml3y/luJznFTaQxvsQMOv+md+G2p/rs4j8jG6JFD7KCLic02bNvJ7MluBAe3p1RfqxpK9DcZq2Fe0ljZGmQe2rI659iyzUQMlxxftRnnoeBC6mAuIT6JItNvYI/0H9qrWoon6DyFKGA3p+GOdlsEsobNwGR2+BFEDrXcYpfO26Ft1GD7pt0MuBUYWzaklbFRQ+flLnQPKX4xqJ6JsHNRhJ3rIjybPvhXQNgJ3hLC7q8j7I4h7EwVwhpgxeirAOzNwvAKAE+8MwD2Xwvgya8D7IxKGGdCnCsD7ISTKwDsvakcPb1Qjtbp+doIT4M7cgWEZ28qR89OIpywdYfEp3l4gNPAOdL/S0Y1OTKxwoLXIZ9UCS4sNzoV4QBo3Ml6H8xRMA4Q9ey7W40c5WxZoC1GkACddwochlX1rXHkLEnUWKMUGvBm2mWAuZmbfcwXQib3QXCZAs05ZobvjTDDnl6CGv6PqfG89u3ZvvZJB0xvNBAdJYiDNJO2CPX9PrMc72UO+Qca/PxX5LQ4DqJoB5tSQqW65mqjmRoOKhVzodrVapGzumbFsu+RCon3IyYwItEfD7Tahhll8oPhcinFGi+GOA7NFWWKRVW2K3yCbSNkosaTwGkNib4ydsHpAolMYzU8LbQrA7U8Blw/02Q4OzNIrJZEFqpJdbg1gwbUHE5ky9a8kIeW88RWoQpwGz4LXMk9Jv4jeZn747N590h9A0Fh3m/bEc0ZVyz/CHwNSpwHAxqJv9ZVyPFGkvCo1C6ShYO3I7WfH+rl4mzVdygOpbL5UJdAJWdq6igXfbDkOKNMg6W3lYM2KqVA8VVsd7oKM8mqOqdqMpngLKHKZ0XECiIr8C1frec21duCO4axQoVS/Zd64OtKp4mdrna1i2Xe2/Ty2vnexXmJW+z54pxdQpzdy8CT6vyztNZKoz1O1AmX7mwlltdaCVWFCxocXfAcr99ZPHJVn53B4snrsfj0G9X/9xkDg0IrpjlIeiOBJtsWzMrUeb0KhjUaF/oAapg+bvQppcpJXGVXIFZc/0KAEaQp1EqB99O+TBtN+e8aOvNtiPtSDV2kTLNPv7P+Q65EoShSvGIUsWJ6Ww4xReNHyhu6fSft7yCtT15KWvfnSYvN/lc67Rv8Euo+fAc=</diagram></mxfile>"}"></div>
<script type="text/javascript" src="https://www.draw.io/js/viewer.min.js"></script>
</div><!-- /.container -->
</section>
<section id="speakers" class="section speakers">
<div class="container">
<div class="row">
<div class="col-md-12">
<h3 class="section-title">Keynote speaker</h3>
</div>
</div>
<div class="row">
<div class="col-md-4 col-sm-4">
<div class="speaker">
<figure>
<img alt="" class="img-responsive center-block" src="assets/images/speakers/IMG_0446.jpg">
</figure>
<h4><a href="https://jameshaytonphd.com" target="_blank">Dr. James Hayton</a></h4>
<p>the author of "PhD: An uncommon guide to research, writing & PhD life"</p>
<!-- <p>CEO of Peren</p> -->
<!-- <ul class="social-block">
<li><a href=""><i class="ion-social-twitter"></i></a></li>
<li><a href=""><i class="ion-social-facebook"></i></a></li>
<li><a href=""><i class="ion-social-linkedin-outline"></i></a></li>
<li><a href=""><i class="ion-social-googleplus"></i></a></li>
</ul> -->
</div><!-- /.speaker -->
</div><!-- /.col-md-4 -->
</div>
</div>
</section>
<section id="contribution" class="section bg-image-2 contribution">
<div class="container">
<div class="row">
<div class="col-md-12">
<h3 class="text-uppercase mt0 font-400">Submit Your Contribution Work</h3>
<p>ISC is held by students for students. Students not only submit their work, but also take part in the review process. It is also an opportunity for all students to meet other Insighters.</p>
<!-- <div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Save changes</button>
</div> -->
</div><!-- /.modal-content -->
</div><!-- /.modal-dialog -->
</div><!-- /.modal -->
</div>
</div>
</div>
</section>
<section id="organisers" class="section about">
<div class="container">
<div class="row">
<div class="col-md-12">
<h3 class="section-title">Organising committee</h3>
</div>
</div>
<p align="justify">Although the student conference is a local event and limited to the Insighters, it is a still a conference which requires a lot of time and effort to be organized. We followed the advice of the previous organizers who shared their experiences on who time-consuming the task may be and therefore, involved many people in three different teams: </p>
<hr>
<!-- Sina Ahmadi
Bianca Pereira
Safina showkat Ara -->
<b>Organising team</b>: these are the conference organisers who deal with planning and coordination duties. Managing the website for the conference, handling mails and communicating with other groups but also in place are the expected tasks.
<div class="speakers">
<a href="https://sinaahmadi.github.io/" target="_blank">
<img src="assets/images/thum_s/picture-2112-1525095858.jpg" alt="speaker" class="thum-s"
data-toggle="tooltip" data-placement="top" title="Sina Ahmadi">
</a>
<a href="https://www.insight-centre.org/users/bianca-pereira" target="_blank">
<img src="assets/images/thum_s/picture-765-1433932051.jpg" alt="speaker" class="thum-s"
data-toggle="tooltip" data-placement="top" title="Bianca Pereira">
</a>
</div>
<hr>
<!-- <h2 class="text-center">Scientific team</h2> -->
<!-- Thiago Oliveira
Rajdeep Sarkar
Koustava Goswami
Piyush Yadav -->
<p align="justify">
<b>Scientific team</b> takes care of the reviewing process, assigning papers to reviewers with relevant background and managing the EasyChair account.
<div class="speakers">
<!-- <a href="https://www.insight-centre.org/users/thiago-de-paula-oliveira" target="_blank">
<img src="assets/images/thum_s/picture-2245-1556140330.jpg" alt="speaker" class="thum-s"
data-toggle="tooltip" data-placement="top" title="Thiago Oliveira">
</a> -->
<a href="https://www.insight-centre.org/users/piyush-yadav" target="_blank">
<img src="assets/images/thum_s/picture-1854-1476190972.jpg" alt="speaker" class="thum-s"
data-toggle="tooltip" data-placement="top" title="Piyush Yadav">
</a>
<a href="https://nuig.insight-centre.org/uld/rajdeep-sarkar/" target="_blank">
<img src="assets/images/thum_s/rajdeep_profile_pic.jpg" alt="speaker" class="thum-s"
data-toggle="tooltip" data-placement="top" title="Rajdeep Sarkar">
</a>
<a href="https://www.insight-centre.org/users/koustava-goswami" target="_blank">
<img src="assets/images/thum_s/Koustava-2-225x300.jpg" alt="speaker" class="thum-s"
data-toggle="tooltip" data-placement="top" title="Koustava Goswami">
</a>
<!-- <a href="https://www.insight-centre.org/users/ajay-nair" target="_blank">
<img src="assets/images/thum_s/picture-2198-1552650990.jpg" alt="speaker" class="thum-s"
data-toggle="tooltip" data-placement="top" title="Ajay Nair">
</a> -->
</div>
<hr>
<!-- Heike Vornhagen
Mona Isazad
Alex Acquier
Jefkine Kafunah -->
<b>Local team</b>: this is related to the local organisation of the conference. Arranging conference venue, printing participants’ cards and providing poster stands are some of the responsibilities.
<div class="speakers">
<a href="https://www.insight-centre.org/users/heike-vornhagen" target="_blank">
<img src="assets/images/thum_s/picture-1541-1446109394.jpg" alt="speaker" class="thum-s"
data-toggle="tooltip" data-placement="top" title="Heike Vornhagen">
</a>
<a href="https://www.insight-centre.org/users/mona-isazad" target="_blank">
<img src="assets/images/thum_s/picture-1879-1487895915.jpg" alt="speaker" class="thum-s"
data-toggle="tooltip" data-placement="top" title="Mona Isazad">
</a>
<a href="https://www.insight-centre.org/users/alex-acquier" target="_blank">
<img src="assets/images/thum_s/default_user.png" alt="speaker" class="thum-s"
data-toggle="tooltip" data-placement="top" title="Alex Acquier">
</a>
<a href="https://www.insight-centre.org/users/jefkine-kafunah" target="_blank">
<img src="assets/images/thum_s/default_user.png" alt="speaker" class="thum-s"
data-toggle="tooltip" data-placement="top" title="Jefkine Kafunah">
</a>
<a href="https://www.insight-centre.org/users/bentolhoda-binaei" target="_blank">
<img src="assets/images/thum_s/default_user.png" alt="speaker" class="thum-s"
data-toggle="tooltip" data-placement="top" title=" Bentolhoda Binaei">
</a>
</div>
<hr>
<strong>PC Members</strong><br/>
<b>Jaynal Abedin, Alex Acquier, Sina Ahmadi, Elham Alghamdi, Eric Arazo, Felipe Arruda Pontes, Fouad Bahrpeyma, Camille Ballas, Andrea Barraza, Ardeshir Behrouzirad, Eoin Brophy, David Browne, Diego Carraro, Bharathi Raja Chakravarthi, Charmaine Cruz, James Davenport, Eoin Delaney, Oksana Dereza, Sarah Dillon, Jaime Fernandez, Tadhg Fitzgerald, Agustín García Pereira, Koustava Goswami, Venkatesh Gurram Munirathnam, Agatha C Hennigen de Mattos, Vitor Horta, Hong Huang, Changhong Jin, Eoin Kenny, Muhammad Imran Khan, Liudmila Khokhlova, Luis Lebron, Clare Lillis, Ajay Nair, Mervyn O Luing, Daniela Oliveira, Bianca Pereira, Sean Quinn, Priya Rani, Rajdeep Sarkar, Sebastian Scheurer, Yves Sohege, Annanda Sousa, Pheobe Wenyi Sun, Shardul Suryawanshi, Federico Toffano, Rafael Torrecilla Rubio, Mani Vegupatti, Andrea Visentin, Congcong Xing, Piyush Yadav, Andrea Yanez, Tarek Zaarour, Lili Zhang, Mingchuan Zhao</b>
</p>
</div><!-- /.container -->
</section>
<section id="schedule" class="section schedule">
<div class="container">
<div class="row">
<div class="col-md-12">
<h3 class="section-title">Events Schedule</h3>
<h4> <a href="https://docs.google.com/spreadsheets/d/e/2PACX-1vSLf4E7uvHhD0nfLUgnSmLvapik6M92bF4hQ1UNBvhjKE2Qak_zztKvJFshXieGROoHvHnE6W16_yoc/pubhtml?gid=1656597930&single=true" target="_blank">Click here to see the session program </a></h4>
</div>
</div>
<div class="outer-tabs">
<!-- Nav tabs -->
<ul class="nav nav-tabs schedule_tabs" role="tablist">
<li role="presentation">
<a href="#day1" aria-controls="day1" role="tab" data-toggle="tab">
Day 1<br><span>12 February 2020</span>
</a>
</li>
</ul>
<!-- Tab panes -->
<div class="tab-content">
<div role="tabpanel" class="tab-pane in active" id="day1">
<div class="schedule_item">
<div class="panel-heading">
<div class="speakers">
</div>
<div class="time"><span class="ion-clock"></span>9:45-10:20</div>
<h4 class="panel-title">
<a class="schedule_expand collapsed" href="#">
<div class="full-width">
Registration, bus arrival (breakfast served on arrival)
</div>
</a>
</h4>
</div>
<div class="panel-collapse collapse in" role="tabpanel"
aria-labelledby="heading-1">
<div class="panel-body">
</div>
</div>
</div>
<div class="schedule_item">
<div class="panel-heading">
<div class="speakers">
<img src="assets/images/speakers/picture-1063-1554215082.jpg" alt="speaker" class="thum-s"
data-toggle="tooltip" data-placement="top" title="Noel O’Connor">
</div>
Noel O’Connor, Insight CEO
<div class="time"><span class="ion-clock"></span>10:30-11:00</div>
<h4 class="panel-title">
<a class="schedule_expand" href="#">
<div class="full-width">
Opening Session
</div>
</a>
</h4>
</div>
<div class="panel-collapse collapse" role="tabpanel"
aria-labelledby="heading-1">
<div class="panel-body">
</div>
</div>
</div>
<div class="schedule_item">
<div class="panel-heading">
<div class="speakers">
<img src="assets/images/speakers/IMG_0446.jpg" width="100" alt="speaker" class="thum-s"
data-toggle="tooltip" data-placement="top" title="James Hayton">
</div>
James Hayton
<div class="time"><span class="ion-clock"></span>11:00-12:00</div>
<h4 class="panel-title">
<a class="schedule_expand" href="#">
<div class="full-width">
Keynote speaker
</div>
</a>
</h4>
</div>
<div class="panel-collapse collapse" role="tabpanel"
aria-labelledby="heading-1">
<div class="panel-body">
The basic principles every PhDstudent needs to know
</div>
</div>
</div>
<div class="schedule_item">
<div class="panel-heading">
<div class="speakers">
</div>
<div class="time"><span class="ion-clock"></span>12:00-13:30</div>
<h4 class="panel-title">
<a class="schedule_expand" href="#">
<div class="full-width">
Lunch
</div>
</a>
</h4>
</div>
</div>
</div>
<div class="schedule_item">
<div class="panel-heading">
<div class="speakers">
<div class="time"><span class="ion-clock"></span>13:30-14:30</div>
<h4 class="panel-title">
<a class="schedule_expand" href="#">
<div class="full-width">
Presentation session 1
</div>
</a>
</h4>
</div>
<div class="panel-collapse collapse" role="tabpanel" aria-labelledby="heading-1">
See <a href="https://docs.google.com/spreadsheets/d/e/2PACX-1vSLf4E7uvHhD0nfLUgnSmLvapik6M92bF4hQ1UNBvhjKE2Qak_zztKvJFshXieGROoHvHnE6W16_yoc/pubhtml?gid=1656597930&single=true" target="_blank">the session program </a>
</div>
</div>
</div>
<div class="schedule_item">
<div class="panel-heading">
<div class="speakers">
</div>
<div class="time"><span class="ion-clock"></span>14:30-14:45</div>
<h4 class="panel-title">
<a class="schedule_expand" href="#">
<div class="full-width">
Coffee Break
</div>
</a>
</h4>
</div>
</div>
</div>
<div class="schedule_item">
<div class="panel-heading">
<div class="speakers">
<div class="time"><span class="ion-clock"></span>14:45-15:30</div>
<h4 class="panel-title">
<a class="schedule_expand" href="#">
<div class="full-width">
Presentation session 2
</div>
</a>
</h4>
</div>
<div class="panel-collapse collapse" role="tabpanel"
aria-labelledby="heading-1">
<div class="panel-collapse collapse" role="tabpanel" aria-labelledby="heading-1">
See <a href="https://docs.google.com/spreadsheets/d/e/2PACX-1vSLf4E7uvHhD0nfLUgnSmLvapik6M92bF4hQ1UNBvhjKE2Qak_zztKvJFshXieGROoHvHnE6W16_yoc/pubhtml?gid=1656597930&single=true" target="_blank">the session program </a>
</div>
</div>
</div>
</div>
<div class="schedule_item">
<div class="panel-heading">
<div class="speakers">
</div>
<div class="time"><span class="ion-clock"></span>15:30-16:30</div>
<h4 class="panel-title">
<a class="schedule_expand" href="#">
<div class="full-width">
World Café (Networking Session)
</div>
</a>
</h4>
</div>
</div>
<div class="schedule_item">
<div class="panel-heading">
<div class="speakers">
</div>
<div class="time"><span class="ion-clock"></span>16:30-17:00</div>
<h4 class="panel-title">
<a class="schedule_expand" href="#">
<div class="full-width">
Closing Session
</div>
</a>
</h4>
</div>
</div>
</div>
</section>
<section id="important-date" class="section important-date">
<div class="container">
<div class="row">
<div class="col-md-12">
<h3 class="section-title">Important Dates</h3>
</div>
</div>
<div class="row">
<div class="col-md-12">
<table style="width:100%">
<tr>
<th rowspan="2">Expression of interest</th>
<td colspan="2">Submission Deadline</td>
</tr>
<tr>
<td colspan="2">November 30, 2019</td>
</tr>
<tr>
<th rowspan="2">Abstract submission</th>
<td>Submission Deadline</td>
<td>Notification Date</td>
</tr>
<tr>
<td>December 30, 2019</td>
<td>January 27, 2020</td>
</tr>
<tr>
<th rowspan="2">Reviewing process</th>
<td>Paper assignment</td>
<td>Reviewing deadline</td>
</tr>
<tr>
<td>January 5, 2020</td>
<td>January 25, 2020</td>
</tr>
<tr>
<th rowspan="2">Final abstract submission/Poster/Slides</th>
<td colspan="2">Submission deadline</td>
</tr>
<tr>
<td colspan="2">February 3, 2020</td>
</tr>
</table>
</div>
</div>
</div>
</section>
<section id="photos" class="section photos">
<div class="container">
<div class="row">
<div class="col-md-12">
<h3 class="section-title">Our photos here </h3>
</div>
</div>
<div class="row">
<!-- <div class="col-md-12">
<ul class="grid">
<li class="grid-item grid-item-sm-6">
<div class="photo-overlay">
<h2>
Skilet Album Cover
</h2>
<p class="photo-catagory">
Business / Fashion
</p>
<a class="gallery-item" href="assets/images/photos/photos-1.jpg"
data-lightbox-gallery="photos">
<div class="btn btn-default classic-button">view</div>
</a>
</div>
<img alt="" class="img-responsive center-block" src="assets/images/photos/photos-1.jpg">
</li>
<li class="grid-item grid-item-sm-3">
<div class="photo-overlay">
<h2>
Skilet Album Cover
</h2>
<p class="photo-catagory">
Business / Fashion
</p>
<a class="gallery-item" href="assets/images/photos/photos-2.jpg"
data-lightbox-gallery="photos">
<div class="btn btn-default classic-button">view</div>
</a>
</div>
<img alt="" class="img-responsive center-block" src="assets/images/photos/photos-2.jpg">
</li>
<li class="grid-item grid-item-sm-3">
<div class="photo-overlay">
<h2>
Skilet Album Cover
</h2>
<p class="photo-catagory">
Business / Fashion
</p>
<a class="gallery-item" href="assets/images/photos/photos-3.jpg"
data-lightbox-gallery="photos">
<div class="btn btn-default classic-button">view</div>
</a>
</div>
<img alt="" class="img-responsive center-block" src="assets/images/photos/photos-3.jpg">
</li>
<li class="grid-item grid-item-sm-3">
<div class="photo-overlay">
<h2>
Skilet Album Cover
</h2>
<p class="photo-catagory">
Business / Fashion
</p>
<a class="gallery-item" href="assets/images/photos/photos-5.jpg"
data-lightbox-gallery="photos">
<div class="btn btn-default classic-button">view</div>
</a>
</div>
<img alt="" class="img-responsive center-block" src="assets/images/photos/photos-5.jpg">
</li>
<li class="grid-item grid-item-sm-3">
<div class="photo-overlay">
<h2>
Skilet Album Cover
</h2>
<p class="photo-catagory">
Business / Fashion
</p>
<a class="gallery-item" href="assets/images/photos/photos-6.jpg"
data-lightbox-gallery="photos">
<div class="btn btn-default classic-button">view</div>
</a>
</div>
<img alt="" class="img-responsive center-block" src="assets/images/photos/photos-6.jpg">
</li>
<li class="grid-item grid-item-sm-3">
<div class="photo-overlay">
<h2>
Skilet Album Cover
</h2>
<p class="photo-catagory">
Business / Fashion
</p>
<a class="gallery-item" href="assets/images/photos/photos-7.jpg"
data-lightbox-gallery="photos">
<div class="btn btn-default classic-button">view</div>
</a>
</div>
<img alt="" class="img-responsive center-block" src="assets/images/photos/photos-7.jpg">
</li>
<li class="grid-item grid-item-sm-3">
<div class="photo-overlay">
<h2>
Skilet Album Cover
</h2>
<p class="photo-catagory">
Business / Fashion
</p>
<a class="gallery-item" href="assets/images/photos/photos-8.jpg"
data-lightbox-gallery="photos">
<div class="btn btn-default classic-button">view</div>
</a>
</div>
<img alt="" class="img-responsive center-block" src="assets/images/photos/photos-8.jpg">
</li>
<li class="grid-item grid-item-sm-3">
<div class="photo-overlay">
<h2>
Skilet Album Cover
</h2>
<p class="photo-catagory">
Business / Fashion
</p>
<a class="gallery-item" href="assets/images/photos/photos-9.jpg"
data-lightbox-gallery="photos">
<div class="btn btn-default classic-button">view</div>
</a>
</div>
<img alt="" class="img-responsive center-block" src="assets/images/photos/photos-2.jpg">
</li>
<li class="grid-item grid-item-sm-3">
<div class="photo-overlay">
<h2>
Skilet Album Cover
</h2>
<p class="photo-catagory">
Business / Fashion
</p>
<a class="gallery-item" href="assets/images/photos/photos-3.jpg"
data-lightbox-gallery="photos">
<div class="btn btn-default classic-button">view</div>
</a>
</div>
<img alt="" class="img-responsive center-block" src="assets/images/photos/photos-3.jpg">
</li>
</ul>
</div> -->
</div>
</div>
</section>
<section id="location" class="section location">
<div class="container">
<div class="row">
<div class="col-sm-3">
<h3 class="section-title">Event Location</h3>
<address>
<p>Bailey Allen Hall <br>National University of Ireland Galway<br> University Rd, Galway<br>Galway</p>
</address>
</div>
<div class="col-sm-9" id="map">
<iframe class="map_canvas"
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d19082.89512582005!2d-9.096371847143555!3d53.283052109887144!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x485b96f169862607%3A0x8b41e03d8f400270!2sNational%20University%20of%20Ireland%20Galway!5e0!3m2!1sen!2sie!4v1571764369402!5m2!1sen!2sie" width="100%" height="280" frameborder="0" style="border:0" allowfullscreen></iframe>
<!-- <iframe class="map_canvas"
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d5140.101979841458!2d-75.87722500000112!3d42.16440102632698!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0x37eea170a5903ead!2sResident+Evil+Costuming!5e1!3m2!1sen!2sus!4v1453116369843"
width="100%" height="280" frameborder="0" style="border:0" allowfullscreen>
</iframe> -->
</div>
</div>
</div>
</section>
<!-- Section: sponsors -->
<section id="contact" class="home-section text-center bg-gray">
<div class="heading-about">
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
</div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-2 col-lg-offset-5">
<hr class="marginbot-50">
</div>
</div>
<div class="row">
<div class="col-lg-12">
<a href="http://www.sfi.ie/" target="_blank"><img height="150" src="https://www.insight-centre.org/sites/all/themes/insight_theme/images/sfi-master-logo.png"style = "margin-right: 20px"></a>
<a href="https://www.insight-centre.org/" target="_blank"><img height="110" src="./assets/images/INSIGHT_LOGO.png" style = "margin-left: 20px"></a>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<img width="240" src="./assets/images/sponsor/IESIFP.png" style = "margin-right: 20px">
<img width="240" src="./assets/images/sponsor/ERDF.png" style = "margin-left: 20px">
</div>
</div>
<div class="row">
<table style="width:100%">
<tr>
<td><a href="https://www.dcu.ie/" target="_blank"><img height="54" src="https://www.dcu.ie/sites/default/files/tealhoriz120h-b.png" width="79"></a></td>
<td><a href="http://www.nuigalway.ie/" target="_blank"><img height="51" src="http://www.nuigalway.ie/cdn/images/logo.png" width="180"></a></td>
<td><a href="http://www.ucc.ie/en/" target="_blank"><img height="46" src="https://www.insight-centre.org/sites/default/files/ucc_logo.png" width="94"></a></td>
<td><a href="https://www.ucd.ie/" target="_blank"><img height="54" src="https://www.insight-centre.org/sites/default/files/ucd_logo.png" width="37"></a></td>
</tr>
</table>
</div>
</div>
</section>
<footer class="site-footer">
<div class="container">
<div class="row">
<div class="col-md-12">
<p class="site-info">Updated by <a href="https://sinaahmadi.github.io/" target="_blank">Sina Ahmadi</a><br> Template by <a href="https://themewagon.com" target="_blank">ThemeWagon</a>
</p>
<ul class="social-block">
<li><a href="https://twitter.com/insight_centre"><i class="ion-social-twitter"></i></a></li>
<li><a href="https://www.facebook.com/insight/"><i class="ion-social-facebook"></i></a></li>
<!-- <li><a href=""><i class="ion-social-linkedin-outline"></i></a></li> -->
<!-- <li><a href=""><i class="ion-social-googleplus"></i></a></li> -->
</ul>
</div>
</div>
</div>
</footer>
<!-- script -->
<script src="bower_components/jquery/dist/jquery.min.js"></script>
<script src="bower_components/bootstrap/dist/js/bootstrap.min.js"></script>
<script src="bower_components/countdown/jquery.plugin.min.js"></script>
<script src="bower_components/countdown/jquery.countdown.min.js"></script>
<script src="bower_components/nivo-lightbox/nivo-lightbox.min.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>