-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
1600 lines (1395 loc) · 94.4 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
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title> == CCCN == </title>
<meta content="" name="descriptison">
<meta content="" name="keywords">
<!-- Favicons -->
<link href="assets/img/favicon.png" rel="icon">
<link href="assets/img/apple-touch-icon.png" rel="apple-touch-icon">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Raleway:300,300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i" rel="stylesheet">
<!-- Vendor CSS Files -->
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/icofont/icofont.min.css" rel="stylesheet">
<link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet">
<link href="assets/vendor/venobox/venobox.css" rel="stylesheet">
<link href="assets/vendor/owl.carousel/assets/owl.carousel.min.css" rel="stylesheet">
<link href="assets/vendor/aos/aos.css" rel="stylesheet">
<!-- Template Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet">
<!-- =======================================================
* Template Name: Squadfree - v2.2.0
* Template URL: https://bootstrapmade.com/squadfree-free-bootstrap-template-creative/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
======================================================== -->
</head>
<body>
<!-- ======= Header ======= -->
<header id="header" class="fixed-top header-transparent">
<div class="container d-flex align-items-center">
<div class="logo mr-auto">
<h1 class="text-light"><a href="index.html"><span>CCCN LAB @ Chula</span></a></h1>
<!-- Uncomment below if you prefer to use an image logo -->
<!-- <a href="index.html"><img src="assets/img/logo.png" alt="" class="img-fluid"></a>-->
</div>
<nav class="nav-menu d-none d-lg-block">
<ul>
<li class="active"><a href="#hero">Home</a></li>
<!-- <a href="#" class="about-btn">Home <i class="bx bx-chevron-right"></i></a> -->
<li><a href="#about">About Us</a></li>
<li><a href="#services">In the lab</a></li>
<li><a href="#portfolio">Publication</a></li>
<li><a href="#activity">Activity</a></li>
<li><a href="#team">People</a></li>
<li><a href="#Links">Links</a></li>
<!-- <li class="drop-down"><a href="">Drop Down</a>
<ul>
<li><a href="#">Drop Down 1</a></li>
<li class="drop-down"><a href="#">Drop Down 2</a>
<ul>
<li><a href="#">Deep Drop Down 1</a></li>
<li><a href="#">Deep Drop Down 2</a></li>
<li><a href="#">Deep Drop Down 3</a></li>
<li><a href="#">Deep Drop Down 4</a></li>
<li><a href="#">Deep Drop Down 5</a></li>
</ul>
</li>
<li><a href="#">Drop Down 3</a></li>
<li><a href="#">Drop Down 4</a></li>
<li><a href="#">Drop Down 5</a></li>
</ul>
</li> -->
<li><a href="#contact">Contact</a></li>
<li><a href="#join">Join Us</a></li>
</ul>
</nav><!-- .nav-menu -->
</div>
</header><!-- End Header -->
<!-- ======= Hero Section ======= -->
<section id="hero">
<div class="hero-container" data-aos="fade-up">
<div class="pic"><img src="assets/img/favicon.png" class="img-fluid" alt="" width="50%" height="50%"></div>
<br>
<h1>Cognitive</h1>
<h1>Clinical &</h1>
<h1>Computational</h1>
<h1>Neuroscience</h1>
<!-- <p>We are a multidisciplinary research team at Chulalongkorn University, Bangkok, Thailand. Our lab is located in Chula Neuroscience Center, King Chulalongkorn Memorial Hospital. Our research focuses on trying to understand foundational principles and computations that govern human cognition by combining experimental psychology, computational modeling and various neuroimaging techniques such as EEG, fMRI, fNIRs and brain stimulations. With deeper understandings of how the human mind works, we hope that they will help us shed light on underlying mechanisms of various clinical neurocognitive disorders. </p> -->
<a href="#about" class="btn-get-started scrollto"><i class="bx bx-chevrons-down"></i></a>
</div>
</section><!-- End Hero -->
<main id="main">
<!-- ======= About Section ======= -->
<section id="about" class="about">
<div class="container">
<div class="row no-gutters">
<div class="content col-xl-5 d-flex align-items-stretch" data-aos="fade-up">
<div class="content">
<h3>About Us</h3>
<p>
<p>We are a multidisciplinary research team at Chulalongkorn University, Bangkok, Thailand. Our lab locates in Chula Neuroscience Center, King Chulalongkorn Memorial Hospital. We focuses on foundational rules and computational principles that govern human cognition using psychological experiments, computational modelings and various neuroimaging techniques such as EEG, fMRI, fNIRs and brain stimulations. We hope that deeper understandings of how the human mind works will help us shed light on underlying mechanisms of various neurocognitive disorders. </p>
</p>
<a href="#" class="about-btn">Home <i class="bx bx-chevron-right"></i></a>
</div>
</div>
<div class="col-xl-7 d-flex align-items-stretch">
<div class="icon-boxes d-flex flex-column justify-content-center">
<div class="row news-container">
<div class="col-md-6 icon-box" data-aos="fade-up" data-aos-delay="100">
<i class="bx bx-bulb"></i>
<h4>July 2022</h4>
<p>@Setthanan (Joe) was selected as the top 8 final candidates for the Prince Mahidol Award Youth Program</p>
<p>“An Explainable Self-Attention Deep Neural Network for Detecting Mild Cognitive Impairment Using Multi-input Digital Drawing Tasks” paper is accepted in Alzheimer’s Research and Therapy</p>
<p>@Jaja, @Joe, and @Arb presented their special research projects and the presentations were awesome!!! Kudos to you all!!</p>
<p>@Guy participated in an official Neuropsychology training. Way to go!</p>
<p>@Sirawaj did an interview on BCI at The Standard. Super cool!</p>
</div>
<div class="col-md-6 icon-box" data-aos="fade-up" data-aos-delay="200">
<i class="bx bx-briefcase"></i>
<h4>June 2022</h4>
<p>@Angle was interviewed and selected to visit CERN, Switzerland, she got a chance to be close to the large hedron collider, almost get lost during her boat trip but found her way back!</p>
<p>@Fah joined the lab as a psychologist </p>
<p>@Ik, @pop, @numking, @Pun, @Tan, @Prinn, @Arb, @Joe,@Pete, @Sirawaj, and @CC submitted their works to SfN</p>
<p>@Mos, @Pun started our own Neuromatch academy: Comp. Neuro slow pod</p>
</div>
<div class="col-md-6 icon-box">
<i class="bx bx-calendar"></i>
<h4>May 2022</h4>
<p>@Angel was awarded for High School Visit Program at CERN</p>
<p>@Ik gave an oral presentation at VSS on… </p>
<p>@Pop and @Sirawaj gave a poster presentation at VSS on…. </p>
<p>@Ik, @Pop, @Sirawaj went to Disney World and Universal Studios to… :))</p>
<p>@CC did a podcast interview at WiTcast on women who can taste and see when they hear things. Very interesting.</p>
</div>
<div class="col-md-6 icon-box">
<i class="bx bx-brain"></i>
<h4>April 2022</h4>
<p>“An adaptive perspective on visual working memory distortions” was accepted in the Journal of Experimental Psychology!!</p>
<P>@Prinn, @Pun, @Tan; Awesome Medical students Trio joined the lab. </P>
</div>
<div class="col-md-6 icon-box">
<i class="bx bx-capsule"></i>
<h4>March 2022</h4>
<p>@Ik has been awarded a 2022 Travel Grant to help support the costs of attending the 2022 Vision Sciences Society Meeting.</p>
</div>
<div class="col-md-6 icon-box">
<i class="bx bx-bot"></i>
<h4>February 2022</h4>
<p>@Ik and @Pop’s work on “The reduced fidelity of selective sensory information processing in the elderly with mild cognitive impairment” have been accepted as an in-person Talk presentation at the 2022 VSS Annual Meeting in St. Pete Beach, Florida</p>
</div>
<div class="col-md-6 icon-box">
<i class="bx bx-bulb"></i>
<h4>January 2022</h4>
<p>We and @ajMy from Mahidol did a public Neuroscience X Art reach out name “ศิลประสาท”</p>
</div>
<div class="col-md-6 icon-box">
<i class="bx bx-briefcase"></i>
<h4>December 2020</h4>
<p>@Gann, @Praew, @Guy, @Kate and @Tok joined the lab. Welcome, Psycho5! </p>
</div>
<div class="col-md-6 icon-box">
<i class="bx bx-calendar"></i>
<h4> November 2020 </h4>
<p> @Poonakarn impressed his research committee with his awesome research proposal. He also wrote an article on AI in medicine. </p>
<p> @Natchawan and @Akarin submitted their scientific abstracts to American Academy of Neurology. </p>
<p> @Sattarin gave a progress report presentation at the DSPT meeting.</p>
<p> BIG Congrats to @Siwaraj for winning the Young Investigator Award 2020 from KMUTT. Very well-deserved! :)) </p>
</div>
<div class="col-md-6 icon-box">
<i class="bx bx-brain"></i>
<h4> October 2020 </h4>
<p> @Anthipa paper studied 'Hypoxia in OSA' and 'Cognition' was accepted in Sleep & Breathing. Big congrats, Pim! </p>
<p> @Sekh gave a special lecture titled : “Cortical Language Pathway and Primary Progressive Aphasia Syndrome”. </p>
<p> @Tanupat joined the team. Welcome, Tung! </p>
</div>
<div class="col-md-6 icon-box">
<i class="bx bx-capsule"></i>
<h4> September 2020 </h4>
<p> @CCCN received a grant to study cognitive impairment in elderly. We settled down at Chula Neuroscience Center and brought in more plants! :) </p>
<p> @CCCN is excited to be a part of the AI for Health project by University Technology center. @Prasit and @Nithiroj joined the gang! Welcome, P and P’Lek. </p>
</div>
<div class="col-md-6 icon-box">
<i class="bx bx-bot"></i>
<h4> August 2020 </h4>
<p>Sattarin got the best presentation award from DSPT progress report meeting. Way to go, Kong! </p>
<p>@Waragon and @Kanokporn joined the lab. Welcome, Mos and Yuki! </p>
</div>
</div>
</div>
<!-- End .content-->
</div>
</div>
</div>
</section><!-- End About Section -->
<!-- ======= Services Section ======= -->
<section id="services" class="services">
<div class="container">
<div class="section-title" data-aos="fade-in" data-aos-delay="100">
<h2>In the lab</h2>
<p>    We expect our lab members to gain useful research experience AND live a happy and fulfilling lab life. As much as we want the research to be done (for the sake of the science community and our curiosity!), we want to create a positive, constructive and relaxing work environment. We encourage everyone to express their thoughts and ideas. We also want to see people in the lab working as a team to initiate, plan, organize and run projects on their own but get helps and supports whenever needed. </p>
<p>    We have regular lab activities and expect regular lab members to join and participate in academic and not-so-academic activities (which are a LOT more :D) when possible. </p>
<!-- <br>
<br>
<p style= "font-size: 12px"> *CC feels grateful for such a great and fun experience as a graduate student while he was being mentored by Dr.John Serences, Dr.Timothy Brady, Dr.Viola Stoermer and Dr.Vilayanur Ramachandran at UCSD.</p> -->
</div>
<!-- <div class="row">
<div class="col-md-6 col-lg-3 d-flex align-items-stretch mb-5 mb-lg-0">
<div class="icon-box" data-aos="fade-up">
<div class="icon"><i class="bx bxl-dribbble"></i></div>
<h4 class="title"><a href="">Lorem Ipsum</a></h4>
<p class="description">Voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi</p>
</div>
</div>
<div class="col-md-6 col-lg-3 d-flex align-items-stretch mb-5 mb-lg-0">
<div class="icon-box" data-aos="fade-up" data-aos-delay="100">
<div class="icon"><i class="bx bx-file"></i></div>
<h4 class="title"><a href="">Sed ut perspiciatis</a></h4>
<p class="description">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore</p>
</div>
</div>
<div class="col-md-6 col-lg-3 d-flex align-items-stretch mb-5 mb-lg-0">
<div class="icon-box" data-aos="fade-up" data-aos-delay="200">
<div class="icon"><i class="bx bx-tachometer"></i></div>
<h4 class="title"><a href="">Magni Dolores</a></h4>
<p class="description">Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia</p>
</div>
</div>
<div class="col-md-6 col-lg-3 d-flex align-items-stretch mb-5 mb-lg-0">
<div class="icon-box" data-aos="fade-up" data-aos-delay="300">
<div class="icon"><i class="bx bx-world"></i></div>
<h4 class="title"><a href="">Nemo Enim</a></h4>
<p class="description">At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis</p>
</div>
</div> -->
</div>
</div>
</section><!-- End Services Section -->
<!-- ======= Counts Section ======= -->
<!-- <section id="counts" class="counts section-bg">
<div class="container">
<div class="row no-gutters">
<div class="col-lg-3 col-md-6 d-md-flex align-items-md-stretch">
<div class="count-box">
<i class="icofont-simple-smile"></i>
<span data-toggle="counter-up">232</span>
<p><strong>Happy Clients</strong> consequuntur quae</p>
</div>
</div>
<div class="col-lg-3 col-md-6 d-md-flex align-items-md-stretch">
<div class="count-box">
<i class="icofont-document-folder"></i>
<span data-toggle="counter-up">521</span>
<p><strong>Projects</strong> adipisci atque cum quia aut</p>
</div>
</div>
<div class="col-lg-3 col-md-6 d-md-flex align-items-md-stretch">
<div class="count-box">
<i class="icofont-live-support"></i>
<span data-toggle="counter-up">1,463</span>
<p><strong>Hours Of Support</strong> aut commodi quaerat</p>
</div>
</div>
<div class="col-lg-3 col-md-6 d-md-flex align-items-md-stretch">
<div class="count-box">
<i class="icofont-users-alt-5"></i>
<span data-toggle="counter-up">15</span>
<p><strong>Hard Workers</strong> rerum asperiores dolor</p>
</div>
</div>
</div>
</div>
</section><!-- End Counts Section -->
<!-- ======= Cta Section ======= -->
<section id="cta" class="cta">
<div class="container" data-aos="zoom-in">
<div class="text-center">
<h3>Opportunity</h3>
<p> We are actively looking for graduate students. Nonetheless, anyone who loves or has some backgrounds in either neuroscience, psychology, medicine, data science, programming, machine learning, statistics, linguistics are welcome. If you are interested in joining our team, email us! </p>
<!-- <a class="cta-btn" href="#">Call To Action</a> -->
</div>
</div>
</section><!-- End Cta Section -->
<!-- ======= Portfolio Section ======= -->
<section id="portfolio" class="portfolio">
<div class="container">
<div class="section-title" data-aos="fade-in" data-aos-delay="100">
<h2>Publications</h2>
<!-- <p>Magnam dolores commodi suscipit. Necessitatibus eius consequatur ex aliquid fuga eum quidem. Sit sint consectetur velit. Quisquam quos quisquam cupiditate. Et nemo qui impedit suscipit alias ea. Quia fugiat sit in iste officiis commodi quidem hic quas.</p> -->
</div>
<div class="row" data-aos="fade-in">
<div class="col-lg-12 d-flex justify-content-center">
<ul id="portfolio-flters">
<li data-filter="*" class="filter-active">All</li>
<li data-filter=".filter-cogn">Cognitive</li>
<li data-filter=".filter-clin">Clinical</li>
<li data-filter=".filter-comp">Computational</li>
<li data-filter=".filter-neuro">Neuroscience</li>
</ul>
</div>
</div>
<div class="row portfolio-container" data-aos="fade-up">
<div class="col-lg-4 col-md-6 portfolio-item filter-cogn">
<div class="portfolio-wrap">
<h3> 2022 </h3>
<p>Chapman A, Chunharas C, Störmer VS. <b>Optimal tuning of feature-based attention warps the perception of visual features.</b> PsyArXiv</p>
<div class="portfolio-links">
<a href= "https://scholar.google.com/citations?view_op=view_citation&hl=en&user=Xo-8O_UAAAAJ&sortby=pubdate&citation_for_view=Xo-8O_UAAAAJ:mB3voiENLucC" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-cogn filter-comp filter-neuro">
<div class="portfolio-wrap">
<h3> 2022 </h3>
<p>Hiransuthikul A, Rattananupong T, Phusuwan W, Chunharas C, Apornpong T, Lohsoonthorn V, Avihingsanon A. <b>Clusters of Cognitive Performance among Aging People Living with HIV: the Application of Unsupervised Machine Learning</b> (P13-3.001). Neurology 98 (18 Supplement)</p>
<div class="portfolio-links">
<a href= "https://scholar.google.com/citations?view_op=view_citation&hl=en&user=Xo-8O_UAAAAJ&sortby=pubdate&citation_for_view=Xo-8O_UAAAAJ:hFOr9nPyWt4C" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-cogn filter-clin">
<div class="portfolio-wrap">
<h3> 2022 </h3>
<p>Chunharas C, Rademaker RL, Brady TF, Serences JT. <b>An adaptive perspective on visual working memory distortions.</b> Journal of Experimental Psychology: General</p>
<div class="portfolio-links">
<a href= "https://scholar.google.com/citations?view_op=view_citation&hl=en&user=Xo-8O_UAAAAJ&sortby=pubdate&citation_for_view=Xo-8O_UAAAAJ:-f6ydRqryjwC" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-cogn filter-clin filter-neuro">
<div class="portfolio-wrap">
<h3> 2022 </h3>
<p>Kantithammakorn P, Punyabukkana P, Pratanwanich P, Hemrungrojn S, Chunharas C, Wanvarie D. <b>Using Automatic Speech Recognition to Assess Thai Speech Language Fluency in the Montreal Cognitive Assessment (MoCA).</b> Sensors 22 (4), 1583</p>
<div class="portfolio-links">
<a href= "https://www.mdpi.com/1424-8220/22/4/1583" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-cogn filter-clin filter-comp filter-neuro">
<div class="portfolio-wrap">
<h3> 2022 </h3>
<p>Chunharas C, Ruengchaijatuporn N, Chatnuntawech I, Teerapittayanon S, Sriswasdi S, Itthipuripat S, Hemrungrojn S, Bunyabukkana P, Petchlorlian A, Chunamchai S, Chotibut T. <b>An Explainable Self-Attention Deep Neural Network for Detecting Mild Cognitive Impairment Using Multi-input Digital Drawing Tasks.</b> Alzheimer’s Research and Therapy</p>
<div class="portfolio-links">
<a href= "https://scholar.google.com/citations?view_op=view_citation&hl=en&user=Xo-8O_UAAAAJ&sortby=pubdate&citation_for_view=Xo-8O_UAAAAJ:qUcmZB5y_30C" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-cogn filter-clin filter-neuro">
<div class="portfolio-wrap">
<h3> 2020 </h3>
<p> Chokesuwattanaskul A, Chirakalwasan N, Jaimchariyatam N, Pitakvej N, Sarutikriangkri Y, Chunharas C, Phanthumchinda K, Likitjaroen Y. <b>Associations between hypoxia parameters in obstructive sleep apnea and cognition, cortical thickness, and white matter integrity in middle-aged and older adults.</b> Sleep and Breathing. 2020 Oct 14:1-2.</p>
<div class="portfolio-links">
<a href= "https://link.springer.com/article/10.1007/s11325-020-02215-w" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-cogn">
<div class="portfolio-wrap">
<h3> 2020 </h3>
<p> Ramachandran VS, Chunharas C, Marcus Z. <b>Constructing calendars in the brain.</b> Neurocase. 2020 Jan 2;26(1):7-17.</p>
<div class="portfolio-links">
<a href= "https://www.tandfonline.com/doi/full/10.1080/13554794.2019.1694040?casa_token=eC6Wgku6booAAAAA%3A1LdXOdpfzJEJ2rirnSZLS_GQGzfurrhMbtbu3S7qvGgPMRV1kdNJ_H2I8mUbgFOJzf1iJs5TJCdYTQ" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-clin filter-neuro">
<div class="portfolio-wrap">
<h3> 2020 </h3>
<p> Yeetong P, Chunharas C, Pongpanich M, Bennett MF, Srichomthong C, Pasutharnchat N, Suphapeetiporn K, Bahlo M, Shotelersuk V. <b>Founder effect of the TTTCA repeat insertions in SAMD12 causing BAFME1.</b> European Journal of Human Genetics. 2020 Sep 24:1-6.</p>
<div class="portfolio-links">
<a href= "https://www.nature.com/articles/s41431-020-00729-1" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-clin filter-neuro">
<div class="portfolio-wrap">
<h3> 2020 </h3>
<p> Chamnanphon M, Wainipitapong S, Wiwattarangkul T, Chuchuen P, Nissaipan K, Phaisal W, Tangwongchai S, Sukasem C, Wittayalertpanya S, Gaedigk A, Aniwattanapong D, Chariyavilaskul P. <b>CYP2D6 Predicts Plasma Donepezil Concentrations in a Cohort of Thai Patients with Mild to Moderate Dementia.</b> Pharmacogenomics and Personalized Medicine. 2020;13:543-551</p>
<div class="portfolio-links">
<a href= "https://www.dovepress.com/cyp2d6-predicts-plasma-donepezil-concentrations-in-a-cohort-of-thai-pa-peer-reviewed-article-PGPM" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-cogn filter-comp filter-neuro">
<div class="portfolio-wrap">
<h3> 2019 </h3>
<p> Rademaker RL, Chunharas C, Serences JT. <b>Coexisting representations of sensory and mnemonic information in human visual cortex.</b> Nature neuroscience. 2019 Aug;22(8):1336-44.
<!-- <img src="assets/img/portfolio/portfolio-1.jpg" class="img-fluid" alt=""> -->
<div class="portfolio-links">
<!-- <a href="assets/img/portfolio/portfolio-1.jpg" data-gall="portfolioGallery" class="venobox" title="App 1"><i class="bx bx-plus"></i></a> -->
<a href="https://www.nature.com/articles/s41593-019-0428-x.pdf?origin=ppub" title="More Details"><i class="bx bx-link"></i></a>
<a href="https://osf.io/dkx6y/files/"> <i class="bx bx-data"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-clin filter-neuro">
<div class="portfolio-wrap">
<h3> 2019 </h3>
<p> Yeetong P, Pongpanich M, Srichomthong C, Assawapitaksakul A, Shotelersuk V, Tantirukdham N, Chunharas C, Suphapeetiporn K, Shotelersuk V. <b>TTTCA repeat insertions in an intron of YEATS2 in benign adult familial myoclonic epilepsy type 4.</b> Brain. 2019 Nov 1;142(11):3360-6.</p>
<div class="portfolio-links">
<a href= "https://academic.oup.com/brain/article/142/11/3360/5572219" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-cogn filter-comp filter-neuro">
<div class="portfolio-wrap">
<h3> 2019 </h3>
<p> Henderson M, Vo V, Chunharas C, Sprague T, Serences J. <b>Multivariate analysis of BOLD activation patterns recovers graded depth representations in human visual and parietal cortex.</b> eNeuro. 2019 Jul;6(4).</p>
<div class="portfolio-links">
<a href= "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC6709213/" title="More Details"><i class="bx bx-link"></i></a>
<a href="https://osf.io/j7tpf/files/"> <i class="bx bx-data"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-cogn filter-comp">
<div class="portfolio-wrap">
<h3> 2019 </h3>
<p> Chunharas C, Rademaker RL, Brady TF, Serences J. <b>Adaptive memory distortion in visual working memory.</b>PsyArxiv. 2019</p>
<div class="portfolio-links">
<a href= "https://psyarxiv.com/e3m5a/" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-cogn">
<div class="portfolio-wrap">
<h3> 2019 </h3>
<p> Chunharas C, Rademaker RL, Sprague TC, Brady TF, Serences JT. <b>Separating memoranda in depth increases visual working memory performance.</b> Journal of vision. 2019 Jan 2;19(1):4-.</p>
<div class="portfolio-links">
<a href= "https://jov.arvojournals.org/article.aspx?articleid=2720495" title="More Details"><i class="bx bx-link"></i></a>
<a href="https://osf.io/fnghp/?view_only=4d4abfbdaeb949b5bb2bf6f57d319931"> <i class="bx bx-data"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-cogn">
<div class="portfolio-wrap">
<h3> 2019 </h3>
<p> Kwankajonwong N, Ongprakobkul C, Qureshi SP, Watanatada P, Thanprasertsuk S, Bongsebandhu-phubhakdi S. <b>Attitude, but not self-evaluated knowledge, correlates with academic performance in physiology in Thai medical students.</b> Adv Physiol Educ. 2019 Sep 1;43(3):324-331.</p>
<div class="portfolio-links">
<a href= "https://pubmed.ncbi.nlm.nih.gov/31305154/" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-cogn filter-clin">
<div class="portfolio-wrap">
<h3> 2018 </h3>
<p> Ramachandran V, Chunharas C, Marcus Z, Furnish T, Lin A. <b>Relief from intractable phantom pain by combining psilocybin and mirror visual-feedback (MVF).</b> Neurocase. 2018 Mar 4;24(2):105-10.</p>
<div class="portfolio-links">
<a href= "https://www.tandfonline.com/doi/full/10.1080/13554794.2018.1468469?casa_token=z7TrOmiBrh0AAAAA%3AHQc-zKigOckXTD3QnX-UrSO81W5TUADI79E9wJe7zQMbGlUhyvQSVphNUIdlxy4nGjp2c5gBmH08Hw" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-cogn">
<div class="portfolio-wrap">
<h3> 2018 </h3>
<p> Ramachandran VS, Chunharas C, Croft R, Batal N. <b>Effect of Grouping, Segmentation, and Vestibular Stimulation on the Autokinetic Effect.</b> i-Perception. 2018 Jan;9(1):2041669517752716.</p>
<div class="portfolio-links">
<a href= "https://journals.sagepub.com/doi/full/10.1177/2041669517752716" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-cogn">
<div class="portfolio-wrap">
<h3> 2017 </h3>
<p> Ramachandran VS, Chunharas C, Smythies M. <b>Trigger Features for Conveying Facial Expressions: The Role of Segmentation.</b> i-Perception. 2017 Nov;8(6):2041669517737792.</p>
<div class="portfolio-links">
<a href= "https://journals.sagepub.com/doi/full/10.1177/2041669517737792" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-cogn">
<div class="portfolio-wrap">
<h3> 2016 </h3>
<p> Ramachandran VS, Vajanaphanich M, Chunharas C. <b>Calendars in the brain; their perceptual characteristics and possible neural substrate.</b> Neurocase. 2016 Sep 2;22(5):461-5.</p>
<div class="portfolio-links">
<a href= "https://www.tandfonline.com/doi/full/10.1080/13554794.2016.1250913?casa_token=LEDXWHKyxlIAAAAA%3AxnhpLO603kJKBxgWeSiWt-yG4ODPdCbFdstinOSq3XM50I-6kdFs8L1quv5a4KX-GvWGnVD1U-yzVA" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-cogn">
<div class="portfolio-wrap">
<h3> 2016 </h3>
<p> Ramachandran VS, Chunharas C, Marcus Z. <b>Hypothesis concerning embodied calendars: A case study of number form, color spreading, and taste-color synaesthesia.</b> Medical Hypotheses. 2016 Sep 1;94:58-62.</p>
<div class="portfolio-links">
<a href= "https://www.sciencedirect.com/science/article/pii/S030698771630281X?casa_token=a7Cji-AfRz4AAAAA:DCLtuXsa55B4NrDT_-Z085KcvwSF4Fq0yujdrANtYNCg1kB62NvKEdCh2nzS_uEpKZx2pcXTYwc" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-clin filter-cogn">
<div class="portfolio-wrap">
<h3> 2016 </h3>
<p> Xiong L, Davidsdottir S, Reijmer YD, Shoamanesh A, Roongpiboonsopit D, Thanprasertsuk S, Martinez-Ramirez S, Charidimou A, Ayres AM, Fotiadis P, Gurol ME, Blacker AL, Greenberg SM, Viswanathan A. <b>Cognitive profile and its association with neuroimaging markers of non-demented cerebral amlyoid angiopathy patients in a stroke unit.</b> J Alzheimers Dis. 2016 Mar 8;52(1):171-8</p>
<div class="portfolio-links">
<a href= "https://europepmc.org/article/med/27060947" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-clin filter-neuro">
<div class="portfolio-wrap">
<h3> 2014 </h3>
<p> Thanprasertsuk S, Martinez-Ramirez S, Pontes-Neto OM, Ni J, Ayres A, Reed A, Swords K, Gurol ME, Greenberg SM, Viswanathan A. <b>Posterior white matter disease distribution as a predictor of amyloid angiopathy.</b> Neurology. 2014 Aug 26;83(9):794-800.</p>
<div class="portfolio-links">
<a href= "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC4155043/" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-clin filter-neuro">
<div class="portfolio-wrap">
<h3> 2013 </h3>
<p> Yeetong P, Ausavarat S, Bhidayasiri R, Piravej K, Pasutharnchat N, Desudchit T, Chunharas C, Loplumlert J, Limotai C, Suphapeetiporn K, Shotelersuk V. <b>A newly identified locus for benign adult familial myoclonic epilepsy on chromosome 3q26.</b> 32-3q28. European Journal of Human Genetics. 2013 Feb;21(2):225-8.</p>
<div class="portfolio-links">
<a href= "https://www.nature.com/articles/ejhg2012133" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<!-- <div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-2.jpg" class="img-fluid" alt="">
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-2.jpg" data-gall="portfolioGallery" class="venobox" title="Web 3"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-app">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-3.jpg" class="img-fluid" alt="">
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-3.jpg" data-gall="portfolioGallery" class="venobox" title="App 2"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-card">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-4.jpg" class="img-fluid" alt="">
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-4.jpg" data-gall="portfolioGallery" class="venobox" title="Card 2"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-5.jpg" class="img-fluid" alt="">
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-5.jpg" data-gall="portfolioGallery" class="venobox" title="Web 2"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-app">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-6.jpg" class="img-fluid" alt="">
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-6.jpg" data-gall="portfolioGallery" class="venobox" title="App 3"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-card">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-7.jpg" class="img-fluid" alt="">
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-7.jpg" data-gall="portfolioGallery" class="venobox" title="Card 1"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-card">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-8.jpg" class="img-fluid" alt="">
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-8.jpg" data-gall="portfolioGallery" class="venobox" title="Card 3"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-9.jpg" class="img-fluid" alt="">
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-9.jpg" data-gall="portfolioGallery" class="venobox" title="Web 3"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div> -->
</div>
</div>
</section><!-- End Portfolio Section -->
<section id="activity" class="activity">
<div class="container d-flex justify-content-center">
<iframe src="https://calendar.google.com/calendar/embed?src=9043de76e2f595533cbd71bd7c2f092e3fccb19784b5dfb82021bb11792e8820%40group.calendar.google.com&ctz=Asia%2FBangkok" style="border: 0" width="800" height="600" frameborder="0" scrolling="no"></iframe>
</div>
</section>
<!-- ======= Team Section ======= -->
<section id="team" class="team">
<div class="container">
<div class="section-title" data-aos="fade-in" data-aos-delay="100">
<h2>Meet the Team</h2>
<!-- <p> Meet our team!</p> -->
</div>
<div class="row">
<div class="col-lg-4 col-md-6">
<div class="member" data-aos="fade-up">
<div class="pic"><img src="assets/img/team/CC.jpg" class="img-fluid" alt=""></div>
<div class="member-info">
<h4>Chaipat Chunharas</h4>
<span>Neurologist & Neuroscientist</span>
<!-- <div class="social">
<a href=""><i class="icofont-twitter"></i></a>
<a href=""><i class="icofont-facebook"></i></a>
<a href=""><i class="icofont-instagram"></i></a>
<a href=""><i class="icofont-linkedin"></i></a>
</div> -->
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="member" data-aos="fade-up">
<div class="pic"><img src="assets/img/team/Pete.png" class="img-fluid" alt=""></div>
<div class="member-info">
<h4>Sedthapong Chunamchai</h4>
<span>Neurologist</span>
<!-- <div class="social">
<a href=""><i class="icofont-twitter"></i></a>
<a href=""><i class="icofont-facebook"></i></a>
<a href=""><i class="icofont-instagram"></i></a>
<a href=""><i class="icofont-linkedin"></i></a>
</div> -->
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="member" data-aos="fade-up" data-aos-delay="150">
<div class="pic"><img src="assets/img/team/Pim.png" class="img-fluid" alt=""></div>
<div class="member-info">
<h4>Anthipa Choksuwattanasakul</h4>
<span>Neurologist</span>
<!-- <div class="social">
<a href=""><i class="icofont-twitter"></i></a>
<a href=""><i class="icofont-facebook"></i></a>
<a href=""><i class="icofont-instagram"></i></a>
<a href=""><i class="icofont-linkedin"></i></a>
</div> -->
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="member" data-aos="fade-up">
<div class="pic"><img src="assets/img/team/Sekh.png" class="img-fluid" alt=""></div>
<div class="member-info">
<h4>Sekh Thanprasersuk</h4>
<span>Neurophysiologist</span>
<!-- <div class="social">
<a href=""><i class="icofont-twitter"></i></a>
<a href=""><i class="icofont-facebook"></i></a>
<a href=""><i class="icofont-instagram"></i></a>
<a href=""><i class="icofont-linkedin"></i></a>
</div> -->
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="member" data-aos="fade-up" data-aos-delay="300">
<div class="pic"><img src="assets/img/team/Earl.png" class="img-fluid" alt=""></div>
<div class="member-info">
<h4>Daruj Aniwattanapong</h4>
<span>Psychiatrist</span>
<!-- <div class="social">
<a href=""><i class="icofont-twitter"></i></a>
<a href=""><i class="icofont-facebook"></i></a>
<a href=""><i class="icofont-instagram"></i></a>
<a href=""><i class="icofont-linkedin"></i></a>
</div> -->
</div>
</div>
</div>
</div>
</div>
</section><!-- End Team Section -->
<!-- ======= Testimonials Section ======= -->
<section id="testimonials" class="testimonials section-bg">
<div class="container">
<div class="section-title" data-aos="fade-in" data-aos-delay="100">
<h2>People</h2>
<p>Wonderful lab members who love science as much as their cats! (No! they don't have cats :P) </p>
</div>
<div class="owl-carousel testimonials-carousel">
<div class="testimonial-item" data-aos="fade-up" data-aos-delay="100">
<img src="assets/img/team/CC.jpg" class="testimonial-img" alt="">
<h3>Chaipat Chunharas</h3>
<h4>Principal Investigator</h4>
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Chaipat is equally interested in how normal brain and brain disorders affect human behaviors. He received his internal medicine training from Khon Kaen University (TH), neurology training from Chulalongkorn University (TH), and later went to pursue his Ph.D. in experimental psychology at the University of California San Diego (US). During his time at UCSD, he studied how humans misperceived current information or misremembered past information in interesting ways under the guidance of wonderful mentors; Dr.John Serences, Dr. Timothy Brady, Dr. Rossane Rademaker, Dr. Viola Stoermer, Dr.Eric Halgren, and Dr. VS Ramachandran. His current works focus on bringing psychology and neuroscience perspective to clinical neurology and vice versa using psychophysical methods with various neuro-imaging (MRI, fMRI, DTI, EEG). Whenever possible, he will try to tell people around him how excited brain science is (not always succeed though). But when he is not a researcher nor a doctor, he enjoyed being a silly dad and reading some good books.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
</div>
<div class="testimonial-item" data-aos="fade-up" data-aos-delay="200">
<img src="assets/img/testimonials/Pete.png" class="testimonial-img" alt="">
<h3>Peter Chunamchai</h3>
<h4>Neurologist & Dreamer</h4>
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
A Neurologist who is interested in cognitive and behavioral neurology. After graduated, he fortunately has a chance to experience LOTS of interesting issues in the CCCN lab. He tries to learn and practice in this new world. His focus is on the effect of sleep on cognition, how our brain works during sleep and language.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
</div>
<div class="testimonial-item" data-aos="fade-up" data-aos-delay="300">
<img src="assets/img/team/Pim.png" class="testimonial-img" alt="">
<h3>Anthipa Choksuwattanasakul</h3>
<h4>Neurologist</h4>
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
</div>
<div class="testimonial-item" data-aos="fade-up">
<img src="assets/img/testimonials/AI.jpg" class="testimonial-img" alt="">
<h3>Aisawan Petlorlian</h3>
<h4>Geriatrician</h4>
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Google, my bro.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
</div>
<div class="testimonial-item" data-aos="fade-up">
<img src="assets/img/testimonials/p-sun.jpg" class="testimonial-img" alt="">
<h3>Yuthachai Sarutikriangkri</h3>
<h4>Clinical Psychologist</h4>
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Hi, I’m Yuthachai Sarutikriangkri. You can also call me “Sun”. Currently, I work as a clinical psychologist at King Chulalongkorn Memorial Hospital. I have studied the comparison of sub-tests in working memory index among posterior cortical atrophy, Alzheimer’s disease, and age-associated memory impairment. I graduated with a bachelor’s degree of science in psychology from Kasetsart University. I’m very interested in the fields of clinical neuropsychology and cognitive decline from any causes.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
</div>
<div class="testimonial-item" data-aos="fade-up">
<img src="assets/img/testimonials/Mos.png" class="testimonial-img" alt="">
<h3>Waragon "Mossy fiber" Phoosuwan</h3>
<h4>Teacher and Lover</h4>
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Hello, my name is Waragon Phusuwan. I completed my BSc. (Hons) in Physics from Chulalongkorn University (Thailand) in 2020 and then became a research assistant in CCCN, Most of the things that are interesting to me and the top picks are Physics Mathematics and Computer Science. I am currently researching neuropsychological clusters in aging patients and action classifications in PD using IMU in wearable devices. I am also interested in cybersecurity, data science, and web development. My motto is "Always Try Harder!"
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
</div>
<div class="testimonial-item" data-aos="fade-up">
<img src="assets/img/testimonials/Preaw.jpg" class="testimonial-img" alt="">
<h3>Anantaporn Sena</h3>
<h4>Data Analyst</h4>
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
I’m Praew, a clinical psychologist graduated from Thammasat University with a Bachelor of Liberal Arts degree in psychology. I am fascinated by experimental psychology, especially in psychophysics. But after unexpectedly working as a data visualization engineer in the lab for a while, I was trapped in the data science world and kept improving my skills and knowledge in this field, deliberately, at the moment. I currently working on the brain structural and cognitive developmental change of HIV-infected children project. I’m also a cat person, enjoying eating, drinking good tea, listening to music, and giving a comfy vibe to people around me.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
</div>
<div class="testimonial-item" data-aos="fade-up">
<img src="assets/img/testimonials/Tok.jpg" class="testimonial-img" alt="">
<h3>Thiti Chainiyom</h3>
<h4>Project Manager</h4>
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
For everyone who’s reading this. I’m Tok (originally came from Kaitok), a person who might have already broke his career path.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
</div>
<div class="testimonial-item" data-aos="fade-up">
<img src="assets/img/testimonials/Kratai.jpg" class="testimonial-img" alt="">
<h3>Natrada Rattanapong</h3>
<h4>Psychologist</h4>
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Hi, here is Natrada, but everyone around me calls me Kratai. I graduated with a Bachelor’s degree in Clinical Psychology from Kasetsart University and I am now working as a psychology research assistant. In this lab, I have got a great opportunity to practice neuropsychology, such as memory, attention, and language, which I am passionate about. And I also love going out to find a tasty cup of coffee every single day.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
</div>
<div class="testimonial-item" data-aos="fade-up">
<img src="assets/img/testimonials/joe-rama.png" class="testimonial-img" alt="">
<h3>Setthanan Jarukasemkit</h3>
<h4>Medical student</h4>
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Hi stealthy reader! I’m Joe, a medical student who dreams of being a neuropsychiatrist before thirty years old. Luckily in 2023, I’ll be a doctor graduating from the Faculty of Medicine at Ramathibodi Hospital, Mahidol University. Apart from the field of medicine, I am fascinated by complex systems science including the brain network, human cognition, and social behaviors. My current research focuses on the human connectome and aims to propose connectomic fingerprints (fMRI, DTI, EEG) as predictive biomarkers for neuropsychiatric disorders. I’m keenly looking to co-create more research in these fields to bridge the gap between the patient’s brain, mind, and behavior. I’m also a wine lover, scuba diver, and bookworm. If you need more info, let’s have some dialogues!
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
</div>
<div class="testimonial-item" data-aos="fade-up">
<img src="assets/img/testimonials/tan.jpg" class="testimonial-img" alt="">
<h3>Kanathip Jongmekwamsuk</h3>
<h4>Medical student</h4>
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Kanathip is a medical student who is fascinated by the cognitive neuroscience of language and learning. He was enrolled in a dual MD/MSc degree at Chulalongkorn University. He’d love to have a great insight into the interaction between cognition, language, and culture, which is a state of metacognition and meta-learning. He is currently working on language-related cognitive impairment and manipulation of the learning process. His ultimate goal is “The Map of Everything”, a mapping of his whole brain! Whenever he is away from work, he enjoys the aesthetics of taste and scent. You may find him wandering around the city for tasty food, good wine, and fragrant perfume.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
</div>
<div class="testimonial-item" data-aos="fade-up">
<img src="assets/img/testimonials/prin.jpg" class="testimonial-img" alt="">
<h3>Naphapa Panyanirun</h3>
<h4>Medical student</h4>
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Hello, I’m Naphapa (Prinn). I’m currently a (pseudo)medical student at Chulalongkorn University. My interest is in the area of Cognitive and Behavioral Neuroscience. Now I’m studying the effects of visual experience on CXR interpretation. I am also interested in computer programming and I’m looking to develop my coding skills. Outside of the lab, I’m actively involved in the medical student community. I also enjoy reading, playing guitar, and spending time with people. Most importantly, coffee is my life!!
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
</div>
<div class="testimonial-item" data-aos="fade-up">
<img src="assets/img/testimonials/pun.jpg" class="testimonial-img" alt="">
<h3>Chattarin Poungtubtim</h3>
<h4>Medical student</h4>
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
A 5th-year medical student at KMCH. He presented with a lack of energy and motivation during his clinical clerkship. His current treatments are neuroscience, mathematics and computer science. The question about how humans are able to learn and think is always on his mind. How can humans make a causal inference with a small amount of data? Why are we able to learn many things and generalize our knowledge to different topics? Discovering the answer for these questions will help us to build machines that learn and think like people. However, there are still some works to do before he tackles those hard problems.
<br><br>He’s currently working on auditory perceptual learning. His colleagues are being tortured by listening to heart sounds and identifying if it is an abnormal heart sounds. Being able to see the murmur-associated cortex in the cardiologist’s brain is his goal for this project. When he’s not obsessed with the work, you can find him listening to music at some cool jazz bar. Taking a weird photo on a street is also his favorite activity. You can also talk to him about books and philosophy. He’s something of a madman himself.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
</div>
<div class="testimonial-item" data-aos="fade-up">
<img src="assets/img/testimonials/Bank.jpg" class="testimonial-img" alt="">
<h3>Nithit Singtokum</h3>
<h4>Medical student</h4>
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Hi, I'm Bank. I'm currently a 6th-year medical student at Chulalongkorn university. I’m passionate about patients with cognitive impairment. In addition to medical fields, I’m interested in cognitive neuroscience, especially visual perception and working memory. My current research project is about ensemble representation bias visual working memory. I'm excited to find out more about human memory and the model of ensemble perception and look forward to collaborating on further projects in these fields. I also enjoy listening to 90s music, watching movies and series, and finding a good place to eat at.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
</div>
<div class="testimonial-item" data-aos="fade-up">
<img src="assets/img/testimonials/Arp.jpg" class="testimonial-img" alt="">
<h3>Arp-Arpa (Arb) Kasemsantitham</h3>
<h4>Medical student</h4>
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
I graduated from NYU and previously worked as an RA under Dr Marjorie Rhodes at CDSC lab before joining CCCN lab as a medical student. Inspired by everyone in this lab, I hope to explore my interests in how affect, behaviors, and cognition can be studied through neuroimaging techniques—all the various (dis)connections between function and structure. Outside of the lab, I can be found daydreaming, re-reading Camus, and organizing concerts at Lido.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
</div>
<div class="testimonial-item" data-aos="fade-up">
<img src="assets/img/testimonials/Petch.png" class="testimonial-img" alt="">
<h3>Kasidit "Petchy" Pintanon</h3>
<h4>Lab runner</h4>
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Give me the money!
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
</div>
<!-- WE can add more below -->
</div>
</div>
</section><!-- End Testimonials Section -->
<!-- ======= Alumni Section ======= -->
<section id="alumni" class="testimonials section-bg">
<div class="container">
<div class="section-title" data-aos="fade-in" data-aos-delay="100">
<h2>Alumni</h2>
</div>
<div class="owl-carousel testimonials-carousel">
<div class="testimonial-item" data-aos="fade-up" data-aos-delay="300">
<img src="assets/img/testimonials/ik.jpeg" class="testimonial-img" alt="">
<h3>Kanyarat Bonita Benjasupawan </h3>
<h4>Neuroscientist</h4>
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
I am Ik or Bonita. “What makes us human?” had intrigued me into being a neuroscientist. I have graduated with MRes Translational neuroscience at University College London and BSc Neuroscience at Edinburgh University, United Kingdom. I am interested in studying visual attention and how it declines with age and other cognitive parameters, by combining EEG data with neural decoding models. In addition to my research, I am passionate about communicating scientific findings to the public and battling against mental health stigma. You can find me around the corner drinking tea and eating scones.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
</div>
<div class="testimonial-item" data-aos="fade-up" data-aos-delay="300">
<img src="assets/img/testimonials/pop.jpg" class="testimonial-img" alt="">
<h3>Panchalee Sookprao</h3>
<h4>Engineer</h4>
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
We are a multidisciplinary research team at Chulalongkorn University, Bangkok, Thailand. Our lab locates in Chula Neuroscience Center, King Chulalongkorn Memorial Hospital.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
</div>