-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
847 lines (745 loc) · 68.7 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
<!DOCTYPE HTML>
<!--
Prologue by HTML5 UP
html5up.net | @ajlkn
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-->
<html>
<head>
<title>Mason Ng</title>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({tex2jax: {inlineMath: [['$','$'], ['\\(','\\)']]}});
</script>
<script type="text/javascript"
src="http://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML">
</script>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="stylesheet" href="assets/css/main.css" />
<link href="assets/css/bootstrap.css" rel="stylesheet">
<link href="assets/css/bootstrap-responsive.css" rel="stylesheet">
</head>
<body class="is-preload">
<!-- Header -->
<div id="header">
<div class="top">
<!-- Logo -->
<div id="logo">
<span class="image avatar48"><img id="avatar" src="images/profilepic_100.jpg" alt="" /></span>
<h1 id="title">Mason Ng</h1>
<p>he/him </p>
<p>Postdoctoral Researcher</p>
<p><a href="https://www.physics.mcgill.ca/">McGill Department of Physics</a></p>
<p><a href="https://tsi.mcgill.ca/">Trottier Space Institute at McGill</a></p>
</div>
<!-- Nav -->
<nav id="nav">
<h4 class='navheader'></h4>
<ul>
<li><a href="#about" id="about-link"><span class="icon fa-user">About Me</span></a></li>
<li><a href="#cv" id="cv-link"><span class="icon fa-address-book">CV</span></a></li>
<li><a href="#currentresearch" id="currentresearch-link"><span class="icon fa-star">Current Research</span></a></li>
<li><a href="#publications" id="publications-link"><span class="icon fa-file-text-o">Publications</span></a></li>
<li><a href="#presentations" id="presentations-link"><span class="icon fa-bullhorn">Presentations</span></a></li>
<li><a href="#pastresearch" id="pastresearch-link"><span class="icon fa-archive">Past Research</span></a></li>
<li><a href="#outreach" id="outreach-link"><span class="icon fa-binoculars">Outreach</span></a></li>
<li><a href="#personalhistory" id="personalhistory-link"><span class="icon fa-history">Personal History</span></a></li>
<li><a href="#countries" id="countries-link"><span class="icon fa-globe">Travel</span></a></li>
<!-- <li><a href="#websitesetup" id="websitesetup-link"><span class="icon fa-sitemap">Website Set-up</span></a></li> -->
<li><a href="#resources" id="resources-link"><span class="icon fa-book">Resources</span></a></li>
<!-- <li><a href="#contact" id="contact-link"><span class="icon fa-envelope">Contact</span></a></li> -->
</ul>
</nav>
<h4 class='navheader'>Links</h4>
<ul class='ulscroll'>
<li><a href="masonngcv_feb25.pdf" id="cv-link"><span class="icon solid fa-user"> CV (PDF)</span></a></li>
<li><a href="mailto:[email protected]" id="email-link"><span class="icon solid fa-envelope">E-mail</span></a></li>
<li><a href="https://github.com/masonng-astro/" id="github-link"><span class="icon fa-github">Github</span></a></li>
<li><a href="https://twitter.com/NZMason" id="twitter-link"><span class="icon fa-twitter">Twitter</span></a></li>
<li><a href="https://www.linkedin.com/in/mason-ng-1425b2a4/" id="linkedin-link"><span class="icon fa-linkedin-square">LinkedIn</span></a></li>
</div>
<!-- <div class="bottom"> -->
<!-- Social Icons -->
<!-- <ul class="icons">
<li><a href="mailto:[email protected]" class="icon fa-envelope"><span class="label">Email</span></a></li>
<li><a href="https://twitter.com/NZMason" class="icon fa-twitter"><span class="label">Twitter</span></a></li>
<li><a href="https://github.com/masonng-astro/" class="icon fa-github"><span class="label">Github</span></a></li>
<li><a href="https://www.linkedin.com/in/mason-ng-1425b2a4/" class="icon fa-linkedin-square"><span class="label">LinkedIn</span></a></li>
</ul> -->
</div>
</div>
<!-- Main -->
<div id="main">
<!-- Intro -->
<section id="top" class="one dark cover">
<div class="container">
<header>
<div class="row-fluid" id="toprow">
<div class="span4">
<img id="topfigure" src="images/profilepic_50.jpg">
</div>
<div class="span7">
<h2 class="alt toptext">Hello there!</h2>
<p class="toptext">I'm <strong><a href="https://spaceweb.mit.edu/people/ng-mason-wei/">Mason Ng</a></strong>, a Postdoctoral Researcher at the <a href="https://www.physics.mcgill.ca/">McGill Department of Physics</a> and the <a href="https://tsi.mcgill.ca/">Trottier Space Institute at McGill.</a> </p>
<p> I am using the Canadian Hydrogen Mapping Intensity Experiment (CHIME) to uncover the emission mechanisms and local magneto-ionic environments of fast radio bursts with radio polarimetry. I am also interested in multiwavelength counterparts to fast radio bursts, and large scale multiwavelength pulsar search surveys! I also use a range of X-ray telescopes and techniques to understand the evolution and dynamics of neutron star binaries.</p>
<p> [email protected] </p>
</div>
</div>
</header>
<footer>
<a href="#about" class="button scrolly">More</a>
</footer>
</div>
</section>
<!-- Portfolio -->
<!-- <section id="portfolio" class="two">
<div class="container">
<header>
<h2>Portfolio</h2>
</header>
<p>Vitae natoque dictum etiam semper magnis enim feugiat convallis convallis
egestas rhoncus ridiculus in quis risus amet curabitur tempor orci penatibus.
Tellus erat mauris ipsum fermentum etiam vivamus eget. Nunc nibh morbi quis
fusce hendrerit lacus ridiculus.</p>
<div class="row">
<div class="col-4 col-12-mobile">
<article class="item">
<a href="#" class="image fit"><img src="images/pic02.jpg" alt="" /></a>
<header>
<h3>Ipsum Feugiat</h3>
</header>
</article>
<article class="item">
<a href="#" class="image fit"><img src="images/pic03.jpg" alt="" /></a>
<header>
<h3>Rhoncus Semper</h3>
</header>
</article>
</div>
<div class="col-4 col-12-mobile">
<article class="item">
<a href="#" class="image fit"><img src="images/pic04.jpg" alt="" /></a>
<header>
<h3>Magna Nullam</h3>
</header>
</article>
<article class="item">
<a href="#" class="image fit"><img src="images/pic05.jpg" alt="" /></a>
<header>
<h3>Natoque Vitae</h3>
</header>
</article>
</div>
<div class="col-4 col-12-mobile">
<article class="item">
<a href="#" class="image fit"><img src="images/pic06.jpg" alt="" /></a>
<header>
<h3>Dolor Penatibus</h3>
</header>
</article>
<article class="item">
<a href="#" class="image fit"><img src="images/pic07.jpg" alt="" /></a>
<header>
<h3>Orci Convallis</h3>
</header>
</article>
</div>
</div>
</div>
</section> -->
<!-- About Me -->
<section id="about" class="two">
<div class="container">
<header>
<h2>About Me</h2>
</header>
<!-- <a href="#" class="image featured"><img src="images/mki_headshot_resized.jpg" alt="" /></a> -->
<p> <font size="+0.5"> I am Wei Chieh Ng (Mason) (personal pronouns: he/him). </font> </p>
<p> <font size="+0.5"> I am currently a Postdoctoral Researcher at McGill's Department of Physics and Trottier Space Institute at McGill. I was previously a graduate (PhD) student at MIT's Department of Physics and the MIT Kavli Institute for Astrophysics and Space Research. I primarily worked with Professor <a href="https://spaceweb.mit.edu/people/chakrabarty-deepto/">Deepto Chakrabarty</a> and Dr. <a href="https://space.mit.edu/people/marshall-herman-l/">Herman Marshall</a> on X-ray timing, spectroscopic, and polarimetric analyses of accreting neutron stars with a whole range of X-ray telescopes, including <a href="https://www.nasa.gov/nicer">NICER</a> and <a href="https://www.nasa.gov/mission/imaging-x-ray-polarimetry-explorer-ixpe/">IXPE</a>. I also "learnt the ropes" from titans like Dr. <a href="https://orcid.org/0000-0002-5297-5278">Paul Ray</a>, Dr. <a href="https://space.mit.edu/people/remillard-ronald-a/">Ronald Remillard</a>, and Dr. <a href="https://cxc.harvard.edu/cdo/cxcstaff/staff_details.php?si=252">Jack Steiner</a> (plus many others along the way). I also collaborate frequently with members of the NICER Science Team and IXPE Science Team.
<p> <font size="+0.5"> This website, like myself, are works in progress. Some of the design elements were inspired by <a href="https://gummiks.github.io/">Guðmundur Stefánsson</a>. You can learn more about me and my previous endeavors in the other sections of my website. </font> </p>
</div>
</section>
<!-- CV -->
<section id="cv" class="three">
<div class="container">
<header>
<h2>CV</h2>
</header>
<p> <font size="+0.5"> Here is the most recent version of my <a href="masonngcv_feb25.pdf">CV</a> (February 2025). </font> </p>
<p> <font size="+0.5"> This is my <a href="masonngcv_sep18.pdf">CV from prior to September 2018</a>, though lightly edited to reflect my current position. I leave it here for posterity. </font> </p>
</div>
</section>
<!-- Current Research -->
<section id="currentresearch" class="four">
<div class="container">
<header>
<h2>Current Research</h2>
</header>
<p> <font size="+0.5"> My present work focuses on these areas: </font> </p>
<ul>
<li> <p> <font size="+0.5"> Revealing the emission mechanisms and local magneto-ionic environments of fast radio bursts with radio polarimetry </font></p></li>
<li> <p> <font size="+0.5"> Understanding the evolution and dynamics of interacting neutron star binaries (through X-ray timing, spectroscopy) </font></p></li>
<li> <p> <font size="+0.5"> Developing and maintaining a pipeline for pulsation searches and systematic timing/spectral analysis on archival and incoming NICER data </font> </p> </li>
<li> <p> <font size="+0.5"> Using X-ray polarimetry to understand the magnetic field morphology and accretion geometries of compact objects (with the recently-ish launched Imaging X-ray Polarimetry Explorer) </font></p></li>
</ul>
</div>
</section>
<!-- Publications -->
<section id="publications" class="five">
<div class="container">
<header>
<h2>Publications (<a href="http://orcid.org/0000-0002-0940-6563">ORCID</a>; <a href="https://ui.adsabs.harvard.edu/public-libraries/OeLPaquySw2XnG8r_LJaMQ">NASA/ADS Library</a>)</h2>
</header>
1 in Nature Astronomy. 1 in Science.
<header>
<h3>First/Co-first author</h3>
</header>
<ul>
<p class="talkpoints"><span class="badge">6</span> <font size=
"+0.5"><strong>Mason Ng</strong>, et al. 2024. <a href="https://ui.adsabs.harvard.edu/abs/2024ApJ...968L...7N/abstract">NICER Discovery that SRGA J144459.2-604207 is an Accreting Millisecond X-ray Pulsar</a>. ApJ, 968, L7. </font></p>
<p class="talkpoints"><span class="badge">5</span> <font size ="+0.5"><strong>Mason Ng</strong>, et al. 2024. <a href="https://ui.adsabs.harvard.edu/abs/2024ApJ...966..232N/abstract">X-ray and Radio Monitoring of the Neutron Star Low Mass X-ray Binary 1A 1744-361: Quasi Periodic Oscillations, Transient Ejections, and a Disk Atmosphere</a>. ApJ, 966, 232. </font></p>
<p class="talkpoints"><span class="badge">4</span> <font size ="+0.5"><strong>Mason Ng</strong>, et al. 2022. <a href="https://ui.adsabs.harvard.edu/abs/2022ApJ...940..138N/abstract">Spectral Evolution of Ultraluminous X-Ray Pulsar NGC 300 ULX-1</a>. ApJ, 940, 138. </font></p>
<p class="talkpoints"><span class="badge">3</span> <font size ="+0.5"> Herman L. Marshall, <strong>Mason Ng</strong>, et al. (IXPE Collaboration + Norbert S. Schulz, Deepto Chakrabarty) 2022. <a href="https://ui.adsabs.harvard.edu/abs/2022ApJ...940...70M/abstract">Observations of 4U 1626-67 with the Imaging X-ray Polarimetry Explorer</a>. ApJ, 940, 70. </font></p>
<p class="talkpoints"><span class="badge">2</span> <font size ="+0.5"> <strong>Mason Ng</strong>, Paul S. Ray, Peter Bult, Deepto Chakrabarty, et al. 2021. <a href="https://ui.adsabs.harvard.edu/abs/2021ApJ...908L..15N/abstract"> NICER Discovery of Millisecond Pulsations and an Ultracompact Orbit in IGR J17494-3030</a>. ApJL, 908, 15. </font></p>
<p class="talkpoints"><span class="badge">1</span> <font size ="+0.5"> <strong>M. Ng</strong>, N.M. Nielsen, G.G. Kacprzak et al. 2019. <a href="https://ui.adsabs.harvard.edu/abs/2019ApJ...886...66N/abstract">Kinematics of the OVI Circumgalactic Medium: Halo Mass Dependence and Outflow Signatures</a>. ApJ, 886, 66. </font></p>
</ul>
<header style="font-size: small">
<h3>Non-refereed</h3>
</header>
<ul>
<p class="talkpoints"><span class="badge">1</span> <font size = "+0.5"> <strong>Mason Ng</strong>, et al. 2024. <a href="https://ui.adsabs.harvard.edu/abs/2024arXiv241118718N/abstract">Tentative Blazar Candidate EP240709A Associated with 4FGL J0031.5-5648: NICER and Archival Multiwavelength Observations</a>. RNAAS, 8, 292. </font></p>
</ul>
<header>
<h3>Co-author</h3>
</header>
<ul>
<p class="talkpoints"><span class="badge">45</span> <font size = "+0.5"> Brendan O'Connor, et al. (32 co-authors including <strong>Mason Ng</strong>) 2024. <a href="https://ui.adsabs.harvard.edu/abs/2024arXiv241021622O/abstract">Characterization of a Peculiar Einstein Probe Transient EP240408a: An Exotic Gamma-Ray Burst or an Abnormal Jetted Tidal Disruption Event?</a> ApJ, 979, 30. </font></p>
<p class="talkpoints"><span class="badge">44</span> <font size = "+0.5"> Andrea Gnarini, et al. (13 co-authors including <strong>Mason Ng</strong>) 2024. <a href="https://ui.adsabs.harvard.edu/abs/2024A%26A...692A.123G/abstract"> First spectropolarimetric observation of the neutron star low-mass X-ray binary GX 3+1</a>. A&A, 692, 123. </font></p>
<p class="talkpoints"><span class="badge">43</span> <font size = "+0.5"> Rachael Stewart, et al. (17 co-authors including <strong>Mason Ng</strong>) 2024. <a href="https://ui.adsabs.harvard.edu/abs/2024arXiv241216036S/abstract">X-ray polarization of the magnetar 1E 1841-045 in outburst</a>. In Review. arXiv:2412.16036. </font></p>
<p class="talkpoints"><span class="badge">42</span> <font size = "+0.5"> Emma T. Chickles, et al. (38 co-authors including <strong>Mason Ng</strong>) 2024. <a href="https://ui.adsabs.harvard.edu/abs/2024arXiv241119916C/abstract">A gravitational wave detectable candidate Type Ia supernova progenitor</a>. In Review. arXiv:2411.19916. </font></p>
<p class="talkpoints"><span class="badge">41</span> <font size = "+0.5"> Sofia V. Forsblom, et al. (15 Tier 1 co-authors including <strong>Mason Ng</strong>) 2024. <a href="https://ui.adsabs.harvard.edu/abs/2024A%26A...691A.216F/abstract">Probing the polarized emission from SMC X-1: the brightest X-ray pulsar observed by IXPE</a>. A&A, 691, 216. </font></p>
<p class="talkpoints"><span class="badge">40</span> <font size = "+0.5"> Robin H. D. Corbet, et al. (22 co-authors including <strong>Mason Ng</strong>) 2024. <a href="https://ui.adsabs.harvard.edu/abs/2024ApJ...976..137C/abstract">Sharp Periodic Flares and Long-Term Variability in the High-Mass X-ray Binary XTE J1829-098 from RXTE PCA, Swift BAT and MAXI Observations</a>. ApJ, 976, 137. </font></p>
<p class="talkpoints"><span class="badge">39</span> <font size = "+0.5"> Yash Bhargava, Thomas D. Russell, <strong>Mason Ng</strong>, et al. (13 co-authors) 2024. <a href="https://ui.adsabs.harvard.edu/abs/2024arXiv241100350B/abstract"> X-ray and Radio Campaign of the Z-source GX 340+0 II: the X-ray polarization in the normal branch</a>. In Review. arXiv:2411.00350. </font></p>
<p class="talkpoints"><span class="badge">38</span> <font size = "+0.5"> Gaurava K. Jaisawal, et al. (16 co-authors including <strong>Mason Ng</strong>) 2024. <a href="https://ui.adsabs.harvard.edu/abs/2024ApJ...975...67J/abstract"> A Comprehensive Study of Thermonuclear X-Ray Bursts from 4U 1820-30 with NICER: Accretion Disk Interactions and a Candidate Burst Oscillation</a>. ApJ, 975, 67. </font></p>
<p class="talkpoints"><span class="badge">37</span> <font size = "+0.5"> F. Ursini, et al. (13 co-authors including <strong>M. Ng</strong>) 2024. <a href="https://ui.adsabs.harvard.edu/abs/2024arXiv240816713U/abstract">X-ray spectropolarimetry of the bright atoll Serpens X-1</a>. A&A, 690, 200. </font></p>
<p class="talkpoints"><span class="badge">36</span> <font size = "+0.5"> Bas Dorsman, et al. (12 co-authors including <strong>Mason Ng</strong>) 2024. <a href="https://ui.adsabs.harvard.edu/abs/2024arXiv240907908D/abstract">Parameter constraints for accreting millisecond pulsars with synthetic NICER data</a>. In Review. arXiv:2409.07908. </font></p>
<p class="talkpoints"><span class="badge">35</span> <font size = "+0.5"> Alessandro Papitto, et al. (24 co-authors including <strong>Mason Ng</strong>) 2024. <a href="https://ui.adsabs.harvard.edu/abs/2024arXiv240800608P/abstract">Discovery of Polarized X-Ray Emission from the Accreting Millisecond Pulsar SRGA J144459.2-604207</a>. In Review. arXiv:2408.00608. </font></p>
<p class="talkpoints"><span class="badge">34</span> <font size = "+0.5"> A. Marino, et al. (34 co-authors including <strong>M. Ng</strong>) 2024. <a href="https://ui.adsabs.harvard.edu/abs/2024arXiv240721371M/abstract"> Einstein Probe discovery of a super-soft outburst from CXOUJ005245.0−722844: a rare BeWD binary in the Small Magellanic Cloud</a>. Accepted. arXiv:2407.21371. </font></p>
<p class="talkpoints"><span class="badge">33</span> <font size = "+0.5"> Yash Bhargava, <strong>Mason Ng</strong>, et al. (13 co-authors) 2024. <a href="https://ui.adsabs.harvard.edu/abs/2024arXiv240519324B/abstract"> X-ray and Radio campaign of the Z-source GX 340+0: discovery of X-ray polarization and its implications</a>. In Review. arXiv:2405.19324. </font></p>
<p class="talkpoints"><span class="badge">32</span> <font size = "+0.5"> Anna Bobrikova, et al. (24 Tier 1 co-authors including <strong>Mason Ng</strong>) 2024. <a href="https://ui.adsabs.harvard.edu/abs/2024A%26A...688A.170B/abstract">Discovery of a strong rotation of the X-ray polarization angle in the galactic burster GX 13+1</a>. A&A, 688, 170. </font></p>
<p class="talkpoints"><span class="badge">31</span> <font size = "+0.5"> Birendra Chhotaray, et al. (6 co-authors including <strong>Mason Ng</strong>) 2024. <a href="https://ui.adsabs.harvard.edu/abs/2024arXiv240115058C/abstract">Long-term study of the first Galactic ultraluminous X-ray source Swift J0243.6+6124 using NICER</a>. ApJ, 963, 132. </font></p>
<p class="talkpoints"><span class="badge">30</span> <font size = "+0.5"> Jeremy Heyl, et al. (10 Tier 1 co-authors including <strong>Mason Ng</strong>) 2024. <a href="https://ui.adsabs.harvard.edu/abs/2024MNRAS.52712219H/abstract">The detection of polarized x-ray emission from the magnetar 1E 2259+586</a>. MNRAS, 527, 12219. </font></p>
<p class="talkpoints"><span class="badge">29</span> <font size = "+0.5"> Manoj Mandal, et al. (12 co-authors including <strong>Mason Ng</strong>) 2023. <a href="https://ui.adsabs.harvard.edu/abs/2023MNRAS.526..771M/abstract">Probing spectral and timing properties of the X-ray pulsar RX J0440.9+4431 in the giant outburst of 2022-2023</a>. MNRAS, 526, 771. </font></p>
<p class="talkpoints"><span class="badge">28</span> <font size = "+0.5"> Roberto Turolla, et al. (15 Tier 1 co-authors including <strong>Mason Ng</strong>) 2023. <a href="https://ui.adsabs.harvard.edu/abs/2023ApJ...954...88T/abstract">IXPE and XMM-Newton observations of the Soft Gamma Repeater SGR 1806-20</a>. ApJ, 954, 88. </font></p>
<p class="talkpoints"><span class="badge">27</span> <font size = "+0.5"> A. C. Albayati, et al. (12 co-authors including <strong>M. Ng</strong>) 2023. <a href="https://ui.adsabs.harvard.edu/abs/2023MNRAS.524.2477A/abstract">Thermonuclear Type-I X-ray Bursts and Burst Oscillations from the Eclipsing AMXP Swift J1749.4-2807</a>. MNRAS, 524, 2477. </font></p>
<p class="talkpoints"><span class="badge">26</span> <font size = "+0.5"> Christian Malacaria, et al. (19 Tier 1 co-authors including <strong>Mason Ng</strong>) 2023. <a href="https://ui.adsabs.harvard.edu/abs/2023A%26A...675A..29M/abstract">A polarimetric-oriented X-ray stare at the accreting pulsar EXO 2030+375</a>. A&A, 675, 29. </font></p>
<p class="talkpoints"><span class="badge">25</span> <font size = "+0.5"> G. K. Jaisawal, et al. (9 co-authors including <strong>M. Ng</strong>) 2023. <a href="https://ui.adsabs.harvard.edu/abs/2023MNRAS.521.3951J/abstract">On the cyclotron absorption line and evidence of the spectral transition in SMC X-2 during 2022 giant outburst</a>. MNRAS, 521, 3951. </font></p>
<p class="talkpoints"><span class="badge">24</span> <font size = "+0.5"> Paul A. Draghis, et al. (9 co-authors including <strong>Mason Ng</strong>) 2023. <a href="https://ui.adsabs.harvard.edu/abs/2023ApJ...947...39D/abstract">The Spin of a Newborn Black Hole: Swift J1728.9-3613</a>. ApJ, 947, 39. </font></p>
<p class="talkpoints"><span class="badge">23</span> <font size = "+0.5"> Mayura Balakrishnan, et al. (14 co-authors including <strong>Mason Ng</strong>) 2023. <a href="https://ui.adsabs.harvard.edu/abs/2023ApJ...947...38B/abstract">The Black Hole Candidate Swift J1728.9-3613 and the Supernova Remnant G351.9-0.9</a>. ApJ, 947, 38. </font></p>
<p class="talkpoints"><span class="badge">22</span> <font size ="+0.5"> G. C. Mancuso, et al. (10 co-authors including <strong>M. Ng</strong>) 2023. <a href="https://ui.adsabs.harvard.edu/abs/2023MNRAS.521.5616M/abstract">Detection of millihertz quasi-periodic oscillations in the low-mass X-ray binary 4U 1730–22 with NICER</a>. MNRAS, 521, 5616. </font></p>
<p class="talkpoints"><span class="badge">21</span> <font size ="+0.5"> Silvia Zane, et al. (26 Tier 1 co-authors including <strong>Mason Ng</strong>) 2023. <a href="https://ui.adsabs.harvard.edu/abs/2023ApJ...944L..27Z/abstract">A strong X-ray polarization signal from the magnetar 1RXS J170849.0-400910</a>. ApJL, 944, 27. </font></p>
<p class="talkpoints"><span class="badge">20</span> <font size ="+0.5"> Giulia Illiano, et al. (21 co-authors including <strong>Mason Ng</strong>) 2022. <a href="https://ui.adsabs.harvard.edu/abs/2023ApJ...942L..40I/abstract">Timing analysis of the 2022 outburst of SAX J1808.4-3658: hints of an orbital shrinking</a>. ApJL, 942, 40. </font></p>
<p class="talkpoints"><span class="badge">19</span> <font size ="+0.5"> C. Malacaria, et al. (13 co-authors including <strong>M. Ng</strong>) 2022. <a href="https://ui.adsabs.harvard.edu/abs/2023A%26A...669A..38M/abstract">The unaltered pulsar: GRO J1750-27, a super-critical X-ray neutron star that does not blink an eye</a>. A&A, 669, 38. </font></p>
<p class="talkpoints"><span class="badge">18</span> <font size ="+0.5"> Sergey S. Tsygankov, et al. (17 Tier 1 co-authors including <strong>Mason Ng</strong>) 2022. <a href="https://ui.adsabs.harvard.edu/abs/2022ApJ...941L..14T/abstract">The X-ray polarimetry view of the accreting pulsar Cen X-3</a>. ApJL, 941, 14. </font></p>
<p class="talkpoints"><span class="badge">17</span> <font size ="+0.5"> Peter Bult, et al. (13 co-authors including <strong>Mason Ng</strong>) 2022. <a href="https://ui.adsabs.harvard.edu/abs/2022ApJ...940...81B/abstract">The thermonuclear X-ray bursts of 4U 1730-22</a>. ApJ, 940, 81. </font></p>
<p class="talkpoints"><span class="badge">16</span> <font size ="+0.5"> Roberto Taverna, et al. (21 Tier 1 co-authors including <strong>Mason Ng</strong>) 2022. <a href="https://www.science.org/doi/10.1126/science.add0080">Polarized x-rays from a magnetar</a>. Science, 378, 646. </font></p>
<!-- <li> F.A. Fogantini, D. Altamirano, et al. (39 co-authors including <strong>M. Ng</strong>) 2022. Extreme X-ray flaring in Swift J1858.6–0814 as seen by NICER, XMM-Newton and NuSTAR. In preparation. </font></p> -->
<p class="talkpoints"><span class="badge">15</span> <font size ="+0.5"> A. Sanna, et al. (14 co-authors including <strong>M. Ng</strong>) 2022. <a href="https://ui.adsabs.harvard.edu/abs/2022MNRAS.516L..76S/abstract">MAXI J1957+032: a new accreting millisecond X-ray pulsar in an ultra-compact binary</a>. MNRAS, 516, L76. </font></p>
<p class="talkpoints"><span class="badge">14</span> <font size ="+0.5"> Peter Bult, et al. (17 co-authors including <strong>Mason Ng</strong>) 2022. <a href="https://ui.adsabs.harvard.edu/abs/2022ApJ...935L..32B/abstract">The Discovery of the 528.6 Hz Accreting Millisecond X-Ray Pulsar MAXI J1816-195</a>. ApJL, 935, 32. </font></p>
<p class="talkpoints"><span class="badge">13</span> <font size ="+0.5"> Tolga Guver, et al. (13 co-authors including <strong>Mason Ng</strong>) 2022. <a href="https://ui.adsabs.harvard.edu/abs/2022ApJ...935..154G/abstract">Burst-Disk Interaction in 4U 1636-536 as observed by NICER</a>. ApJ, 935, 154. </font></p>
<p class="talkpoints"><span class="badge">12</span> <font size ="+0.5"> A. Marino, et al. (20 co-authors including <strong>M. Ng</strong>) 2022. <a href="https://ui.adsabs.harvard.edu/abs/2022MNRAS.515.3838M/abstract">Outflows and spectral evolution in the eclipsing AMXP SWIFT J1749.4-2807 with NICER, XMM-Newton and NuSTAR</a>. MNRAS, 515, 3838. </font></p>
<p class="talkpoints"><span class="badge">11</span> <font size ="+0.5"> Kishalay De, et al. (26 co-authors including <strong>Mason Ng</strong>) 2022. <a href="https://ui.adsabs.harvard.edu/abs/2022ApJ...935...36D/abstract">SRGA J181414.6-225604: A New Galactic Symbiotic X-Ray Binary Outburst Triggered by an Intense Mass-loss Episode of a Heavily Obscured Mira Variable</a>. ApJ, 935, 36. </font></p>
<p class="talkpoints"><span class="badge">10</span> <font size ="+0.5"> A. Sanna, et al. (17 co-authors including <strong>M. Ng</strong>) 2022. <a href="https://ui.adsabs.harvard.edu/abs/2022MNRAS.514.4385S/abstract">On the peculiar long-term orbital evolution of the eclipsing accreting millisecond X-ray pulsar SWIFT J1749.4-2807</a>. MNRAS, 514, 4385. </font></p>
<p class="talkpoints"><span class="badge">9</span> <font size ="+0.5"> R.M. Ludlam, et al. (10 co-authors including <strong>Mason Ng</strong>) 2022. <a href="https://ui.adsabs.harvard.edu/abs/2022ApJ...927..112L/abstract">Radius Constraints from Reflection Modeling of Cygnus X-2 with NuSTAR and NICER</a>. ApJ, 927, 112. </font></p>
<p class="talkpoints"><span class="badge">8</span> <font size ="+0.5"> Dheeraj R. Pasham, et al. (18 co-authors including <strong>Mason Ng</strong>) 2021. <a href="https://ui.adsabs.harvard.edu/abs/2022NatAs...6..249P/abstract">Evidence for a Compact Object in the Aftermath of the Extra-Galactic Transient AT2018cow</a>. NatAs, 6, 249. </font></p>
<p class="talkpoints"><span class="badge">7</span> <font size ="+0.5"> The LIGO Scientific Collaboration; the Virgo Collaboration; the KAGRA Collaboration (including <strong>Mason Ng</strong>) 2021. <a href="https://ui.adsabs.harvard.edu/abs/2021arXiv210909255T/abstract">Search for continuous gravitational waves from 20 accreting millisecond X-ray pulsars in O3 LIGO data</a>. Phys. Rev. D 105, 022002. </font></p>
<p class="talkpoints"><span class="badge">6</span> <font size ="+0.5"> Yuhan Yao, et al. (27 co-authors including <strong>Mason Ng</strong>) 2021. <a href="https://ui.adsabs.harvard.edu/abs/2021ApJ...920..121Y/abstract"> A Comprehensive X-ray Report on AT2019wey</a>. ApJ, 920, 121. </font></p>
<p class="talkpoints"><span class="badge">5</span> <font size ="+0.5"> Teruaki Enoto, <strong> Mason Ng</strong>, et al. (25 co-authors including <strong>Mason Ng</strong>) 2021. <a href="https://ui.adsabs.harvard.edu/abs/2021ApJ...920L...4E/abstract">A Month of Monitoring the New Magnetar Swift J1555.2-5402 during an X-Ray Outburst</a>. ApJL, 920, 4. </font></p>
<p class="talkpoints"><span class="badge">4</span> <font size ="+0.5"> D.J.K. Buisson, et al. (26 co-authors including <strong>Mason Ng</strong>) 2021. <a href="https://ui.adsabs.harvard.edu/abs/2021MNRAS.503.5600B/abstract"> Dips and eclipses in the X-ray binary Swift J1858.6-0814 observed with NICER</a>. MNRAS, 503, 5600. </font></p>
<p class="talkpoints"><span class="badge">3</span> <font size ="+0.5"> Peter Bult, et al. (4 co-authors including <strong>Mason Ng</strong>) 2021. <a href="https://ui.adsabs.harvard.edu/abs/2021ApJ...912..120B/abstract">Long term coherent timing of the accreting millisecond pulsar IGR J17062-6143</a>. ApJ, 912, 120. </font></p>
<p class="talkpoints"><span class="badge">2</span> <font size ="+0.5"> Peter Bult (12 co-authors including <strong>Mason Ng</strong>) 2020. <a href="https://ui.adsabs.harvard.edu/abs/2021ApJ...907...79B/abstract">The X-ray bursts of XTE J1739-285: a NICER sample</a>. ApJ, 907, 79. </font></p>
<p class="talkpoints"><span class="badge">1</span> <font size ="+0.5"> J.J. Eldridge, E.R. Stanway, et al. (7 co-authors including <strong>M. Ng</strong>) 2017. <a href="https://ui.adsabs.harvard.edu/abs/2017PASA...34...58E/abstract">Binary Population and Spectral Synthesis Version 2.1: construction, observational verification and new results</a>. PASA, 34. </font></p>
</ul>
<header>
<h2>ATels and GCN Circulars</h2>
</header>
<ul>
<p class="talkpoints"><span class="badge">44</span> <font size = "+0.5"> G. Younes, et al. (7 co-authors including <strong>M. Ng</strong>) 2024. <a href="https://www.astronomerstelegram.org/?read=16802"> NICER, NuSTAR, and Swift-XRT observations of the Magnetar 1E 1841-045</a>. </font></p>
<p class="talkpoints"><span class="badge">43</span> <font size = "+0.5"> <strong>M. Ng</strong>, et al. 2024. <a href="https://www.astronomerstelegram.org/?read=16789"> NICER Confirms Burst Activity from the Magnetar 1E 1841-045</a>. </font></p>
<p class="talkpoints"><span class="badge">42</span> <font size = "+0.5"> Manoj Mandal, et al. (7 co-authors including <strong>Mason Ng</strong>) 2024. <a href="https://www.astronomerstelegram.org/?read=16744"> NICER observation of Be/X-ray binary pulsar XTE J1946+274 during its 2024 outburst</a>. </font></p>
<p class="talkpoints"><span class="badge">41</span> <font size = "+0.5"> G. K. Jaisawal, et al. (12 co-authors including <strong>M. Ng</strong>) 2024. <a href="https://www.astronomerstelegram.org/?read=16636"> NICER observations of CXOU J005245.0-722844</a>. </font></p>
<p class="talkpoints"><span class="badge">40</span> <font size = "+0.5"> P. S. Ray, et al. (8 co-authors including <strong>M. Ng</strong>) 2024. <a href="https://www.astronomerstelegram.org/?read=16480"> Orbital Solution from NICER monitoring of the newly discovered accreting millisecond pulsar SRGA J144459.2-604207</a>. </font></p>
<p class="talkpoints"><span class="badge">39</span> <font size = "+0.5"> <strong>M. Ng</strong>, et al. 2024. <a href="https://www.astronomerstelegram.org/?read=16474"> NICER Discovers Millisecond Pulsations and a Type I X-ray Burst from SRGA J144459.2-604207</a>. </font></p>
<p class="talkpoints"><span class="badge">38</span> <font size = "+0.5"> Pragati Pradhan, et al. (8 co-authors including <strong>Mason Ng</strong>) 2023. <a href="https://www.astronomerstelegram.org/?read=16139"> NuSTAR looks at Swift J0243.6+6124 during the rise of the 2023 outburst</a>. </font></p>
<p class="talkpoints"><span class="badge">37</span> <font size = "+0.5"> <strong>M. Ng</strong>, et al. 2023. <a href="https://www.astronomerstelegram.org/?read=16121"> NICER Monitors the Rise of the Be/X-ray Binary Swift J0243.6+6124</a>. </font></p>
<p class="talkpoints"><span class="badge">36</span> <font size = "+0.5"> A. Sanna, <strong>M. Ng</strong>, et al. (11 co-authors) 2023. <a href="https://www.astronomerstelegram.org/?read=15998">NICER confirms a new outburst from IGR J17498-2921</a>. </font></p>
<p class="talkpoints"><span class="badge">35</span> <font size = "+0.5"> <strong>M. Ng</strong>, et al. 2023. <a href="https://www.astronomerstelegram.org/?read=15987"> NICER Detects Pulsations from Swift J0243.6+6124</a>. </font></p>
<p class="talkpoints"><span class="badge">34</span> <font size = "+0.5"> J. Homan, et al. (7 co-authors including <strong>M. Ng</strong>) 2023. <a href="https://www.astronomerstelegram.org/?read=15957"> NICER follow-up observations of transient activity from Terzan 1</a>. </font></p>
<p class="talkpoints"><span class="badge">33</span> <font size = "+0.5"> J. Homan, et al. (6 co-authors including <strong>M. Ng</strong>) 2023. <a href="https://www.astronomerstelegram.org/?read=15951"> NICER observations of MAXI J1834-021: possibly a distant black hole low-mass X-ray binary</a>. </font></p>
<p class="talkpoints"><span class="badge">32</span> <font size ="+0.5"> Sabyasachi Pal, et al. (15 co-authors including <strong>Mason Ng</strong>) 2023. <a href="https://www.astronomerstelegram.org/?read=15868"> Rebrightening of 1 Crab from LS V+44 17 observed by Swift/BAT and NICER</a>. </font></p>
<p class="talkpoints"><span class="badge">31</span> <font size ="+0.5"> Dheeraj Pasham, et al. (14 co-authors including <strong>M. Ng</strong>) 2022. <a href="https://www.astronomerstelegram.org/?read=15755"> NICER observations of X-ray transient LXT 221107A: an exceptional flare from the star HD 251108 (2RXS J060415.1+124554)</a>. </font></p>
<p class="talkpoints"><span class="badge">30</span> <font size ="+0.5"> G. K. Jaisawal, et al. (5 co-authors including <strong>M. Ng</strong>) 2022. <a href="https://www.astronomerstelegram.org/?read=15750"> INTEGRAL/JEM-X and NICER follow-up observations of IGR J11435-6109 and 1E 1145.1-6141</a>. </font></p>
<p class="talkpoints"><span class="badge">29</span> <font size ="+0.5"> G. Illiano, et al. (11 co-authors including <strong>M. Ng</strong>) 2022. <a href="https://www.astronomerstelegram.org/?read=15647"> NICER observations of reflares from SAX J1808.4-3658</a>. </font></p>
<p class="talkpoints"><span class="badge">28</span> <font size ="+0.5"> J. Homan, et al. (9 co-authors including <strong>M. Ng</strong>) 2022. <a href="https://www.astronomerstelegram.org/?read=15627"> Strong changes in the X-ray behavior of XTE J1701-462</a>. </font></p>
<p class="talkpoints"><span class="badge">27</span> <font size ="+0.5"> Robin H. D. Corbet, et al. (13 co-authors including <strong>Mason Ng</strong>) 2022. <a href="https://www.astronomerstelegram.org/?read=15614"> Support for a 244 day Period in XTE J1829-098 from Swift BAT, MAXI and RXTE PCA Observations</a>. </font></p>
<p class="talkpoints"><span class="badge">26</span> <font size ="+0.5"> J. Homan, et al. (8 co-authors including <strong>M. Ng</strong>) 2022. <a href="https://www.astronomerstelegram.org/?read=15605"> XTE J1701-462 continues its rise in the soft state</a>. </font></p>
<p class="talkpoints"><span class="badge">25</span> <font size ="+0.5"> <strong>M. Ng</strong>, et al. 2022. <a href="https://www.astronomerstelegram.org/?read=15593"> NICER detects a type I X-ray burst from the M15 field</a>. </font></p>
<p class="talkpoints"><span class="badge">24</span> <font size ="+0.5"> A. Sanna, et al. (12 co-authors including <strong>M. Ng</strong>) 2022. <a href="https://www.astronomerstelegram.org/?read=15559"> NICER confirms a new outburst from SAX J1808.4-3658</a>. </font></p>
<p class="talkpoints"><span class="badge">23</span> <font size ="+0.5"> Michael T. Wolff, et al. (12 co-authors including <strong>Mason Ng</strong>) 2022. <a href="https://www.astronomerstelegram.org/?read=15556"> NICER monitoring of the outburst from the transient X-ray pulsar XTE J1829-098</a>. </font></p>
<p class="talkpoints"><span class="badge">22</span> <font size ="+0.5"> P. Bult, et al. (11 co-authors including <strong>M. Ng</strong>) 2022. <a href="https://www.astronomerstelegram.org/?read=15456"> NICER discovers the ultracompact binary orbit of MAXI J1957+032</a>. </font></p>
<p class="talkpoints"><span class="badge">21</span> <font size ="+0.5"> <strong>M. Ng </strong>, et al. 2022. <a href="https://www.astronomerstelegram.org/?read=15444"> NICER discovers 314 Hz pulsations from MAXI J1957+032</a>. </font></p>
<p class="talkpoints"><span class="badge">20</span> <font size ="+0.5"> P. Bult, et al. (11 co-authors including <strong>M. Ng</strong>) 2022. <a href="https://www.astronomerstelegram.org/?read=15431">NICER measures the binary orbit of MAXI J1816-195</a>. </font></p>
<p class="talkpoints"><span class="badge">19</span> <font size ="+0.5"> P. Bult, <strong>M. Ng</strong>, et al. (14 co-authors) 2022. <a href="https://www.astronomerstelegram.org/?read=15425">NICER detects 528 Hz pulsations and a thermonuclear X-ray burst from MAXI J1816-195</a>. </font></p>
<p class="talkpoints"><span class="badge">18</span> <font size ="+0.5"> <strong>M. Ng</strong>, et al. 2022. <a href="https://www.astronomerstelegram.org/?read=15424"> NICER follow-up observations of 1A 1744-361</a>. </font></p>
<p class="talkpoints"><span class="badge">17</span> <font size ="+0.5"> A. Sanna, et al. (5 co-authors including <strong>M. Ng</strong>) 2021. <a href="https://www.astronomerstelegram.org/?read=14818"> NICER follow up of the new X-ray transient Swift J1729.5-3223</a>. </font></p>
<p class="talkpoints"><span class="badge">16</span> <font size ="+0.5"> P. Bult, et al. (9 co-authors including <strong>M. Ng</strong>) 2021. <a href="https://www.astronomerstelegram.org/?read=14769"> NICER detects a type I X-ray burst from 4U 1730-22</a>. </font></p>
<p class="talkpoints"><span class="badge">15</span> <font size ="+0.5"> <strong>M. Ng</strong>, et al. 2021. <a href="https://www.astronomerstelegram.org/?read=14767"> NICER Follow-up of the UCXB MAXI J0911-655</a>. </font></p>
<p class="talkpoints"><span class="badge">14</span> <font size ="+0.5"> <strong>M. Ng</strong>, et al. 2021. <a href="https://www.astronomerstelegram.org/?read=14695"> NICER detection of the X-ray pulsation of Bursting Pulsar GRO J1744-28</a>. </font></p>
<p class="talkpoints"><span class="badge">13</span> <font size ="+0.5"> <strong>M. Ng</strong>, et al. 2021. <a href="https://www.astronomerstelegram.org/?read=14684"> NICER measurement of the period derivative of magnetar Swift J1555.2-5402</a>. </font></p>
<p class="talkpoints"><span class="badge">12</span> <font size ="+0.5"> T. Enoto, <strong>M. Ng</strong>, et al. (17 co-authors) 2021. <a href="https://gcn.gsfc.nasa.gov/gcn3/30126.gcn3"> Initial results of a NICER X-ray monitoring of the magnetar, Swift J1555.2-5402</a>. </font></p>
<p class="talkpoints"><span class="badge">11</span> <font size ="+0.5"> P. Bult, et al. (7 co-authors including <strong>M. Ng</strong>) 2021. <a href="https://www.astronomerstelegram.org/?read=14669"> NICER follow-up observations of 4U 1705-32</a>. </font></p>
<p class="talkpoints"><span class="badge">10</span> <font size ="+0.5"> P. Bult, et al. (11 co-authors including <strong>M. Ng</strong>) 2021. <a href="https://www.astronomerstelegram.org/?read=14602"> NICER follow-up observations of MAXI J1803-298</a>. </font></p>
<p class="talkpoints"><span class="badge">9</span> <font size ="+0.5"> A. Sanna, et al. (7 co-authors including <strong>M. Ng</strong>) 2021. <a href="https://www.astronomerstelegram.org/?read=14545"> NICER observations of the new X-ray transient SWIFT J174038.1-273712</a>. </font></p>
<p class="talkpoints"><span class="badge">8</span> <font size ="+0.5"> A. Sanna, et al. (7 co-authors including <strong>M. Ng</strong>) 2021. <a href="http://www.astronomerstelegram.org/?read=14442"> NICER follow up of the new X-ray transient IGR J17533-2928</a>. </font></p>
<p class="talkpoints"><span class="badge">7</span> <font size ="+0.5"> J. Miller, et al. (6 co-authors including <strong>M. Ng</strong>) 2021. <a href="http://www.astronomerstelegram.org/?read=14429"> NICER Spectroscopy of MAXI J1848-015 in the Stellar Cluster GLIMPSE-C01</a>. </font></p>
<p class="talkpoints"><span class="badge">6</span> <font size ="+0.5"> P. Bult, et al. (9 co-authors including <strong>M. Ng</strong>) 2021. <a href="http://www.astronomerstelegram.org/?read=14428"> NICER detects pulsations from Swift J1749.4-2807</a>. </font></p>
<p class="talkpoints"><span class="badge">5</span> <font size ="+0.5"> <strong>M. Ng</strong>, et al. 2020. <a href="http://www.astronomerstelegram.org/?read=14124"> NICER detection of 376 Hz X-ray pulsations from IGR J17494-3030</a>. </font></p>
<p class="talkpoints"><span class="badge">4</span> <font size ="+0.5"> Y. Yao, et al. (9 co-authors including <strong>M. Ng</strong>) 2020. <a href="http://www.astronomerstelegram.org/?read=13932"> X-ray Brightening of AT2019wey</a>. </font></p>
<p class="talkpoints"><span class="badge">3</span> <font size ="+0.5"> D. J. K. Buisson, et al. (20 co-authors including <strong>M. Ng</strong>) 2020. <a href="http://www.astronomerstelegram.org/?read=13563"> NICER and NuSTAR detections of Type I bursts and periodic dips in Swift J1858.6-0814</a>. </font></p>
<p class="talkpoints"><span class="badge">2</span> <font size ="+0.5"> T. Enoto, et al., on behalf of the NICER Team (14 co-authors including <strong>Mason Ng</strong>) 2020. <a href="http://www.astronomerstelegram.org/?read=13551">NICER detection of 1.36 sec periodicity from a new magnetar, Swift J1818.0-1607</a>. </font></p>
<p class="talkpoints"><span class="badge">1</span> <font size ="+0.5"> W. Iwakiri, et al. (11 co-authors including <strong>M. Ng</strong>) 2020. <a href="http://www.astronomerstelegram.org/?read=13456">Initial NICER observations of the GRB 200205A = Swift J0840.7-3516 and detection of short X-ray flaring activity</a>. </font></p>
</ul>
</div>
</section>
<!-- Presentations -->
<section id="presentations" class="five">
<div class="container">
<header>
<h2>Presentations</h2>
</header>
<header>
<h3>Talks (* = virtual)</h3>
</header>
<ul>
<p class="talkpoints"><span class="badge">25</span> <font size ="+0.5"> (Jul 2024) Invited Talk - Joint IXPE/NICER Workshop. Washington DC, USA. <i>Introduction to ixpeobssim for data analysis.</i> </font></p>
<p class="talkpoints"><span class="badge">24</span> <font size ="+0.5"> (Jul 2024) Seminar - Chungbuk National University. Daejeon, South Korea. <i>Multifaceted Understanding of Accreting Neutron stars and their Environments.</i> </font></p>
<p class="talkpoints"><span class="badge">23</span> <font size ="+0.5"> (Jul 2024) Seminar - Chungnam National University. Daejeon, South Korea. <i>Exploring the Frontier of Physics with Neutron Stars.</i> </font></p>
<p class="talkpoints"><span class="badge">22</span> <font size ="+0.5"> (Jul 2024) Contributed Talk - Committee on Space Research (COSPAR) Assembly 2024. Busan, South Korea. <i>Understanding Polarization Angle Variations in Neutron Stars.</i> </font></p>
<p class="talkpoints"><span class="badge">21</span> <font size ="+0.5"> (Jul 2024) Contributed Talk (Substitution) - Committee on Space Research (COSPAR) Assembly 2024. Busan, South Korea. <i>Magnetar x-ray polarization results and implications.</i> </font></p>
<p class="talkpoints"><span class="badge">20</span> <font size ="+0.5"> (Jun 2024) Seminar - INAF Osservatorio Astronomico di Roma. Monte Porzio Catone, Rome, Italy. <i>Probing the Atoll/Z Continuum with Neutron Star Low Mass X-ray Binary 1A 1744-361.</i> </font></p>
<p class="talkpoints"><span class="badge">19</span> <font size ="+0.5"> (Jun 2024) Seminar - INAF Istituto di Astrofisica e Planetologia Spaziali. Rome, Italy. <i>Probing the Atoll/Z Continuum with Neutron Star Low Mass X-ray Binary 1A 1744-361.</i> </font></p>
<p class="talkpoints"><span class="badge">18</span> <font size ="+0.5"> (Apr 2024) Contributed Talk - 21st Divisional Meeting of the High Energy Astrophysics Division. Horseshoe Bay, Texas, USA. <i>Probing the Atoll/Z Continuum with Neutron Star Low Mass X-ray Binary 1A 1744-361.</i> </font></p>
<p class="talkpoints"><span class="badge">17</span> <font size ="+0.5"> (Jan 2024) Dissertation Talk - 243rd Meeting of the American Astronomical Society. New Orleans, Louisiana, USA. <i>X-ray and Radio Monitoring of the Neutron Star Low Mass X-ray Binary 1A 1744-361: Quasi Periodic Oscillations, Transient Ejections, and a Disk Atmosphere.</i> </font></p>
<p class="talkpoints"><span class="badge">16</span> <font size ="+0.5"> *(Dec 2023) Invited Talk - Washington University in St. Louis. <i>Multifaceted Understanding of Accreting Neutron stars and their Environments: An X-ray Polarimetric Focus.</i> </font></p>
<p class="talkpoints"><span class="badge">15</span> <font size ="+0.5"> (Dec 2023) Special Astrophysics Seminar - McGill University. Berkeley, California, USA. <i>Multifaceted Understanding of Accreting Neutron stars and their Environments: An X-ray Polarimetric Focus.</i> </font></p>
<p class="talkpoints"><span class="badge">14</span> <font size ="+0.5"> (Nov 2023) Department Lunch Talk (Astronomy) - University of California, Berkeley. Berkeley, California, USA. <i>Multifaceted Understanding of Accreting Neutron stars and their Environments: An X-ray Polarimetric Focus.</i> </font></p>
<p class="talkpoints"><span class="badge">13</span> <font size ="+0.5"> (Nov 2023) Astronomy Tea Talk - California Institute of Technology. Pasadena, California, USA. <i>Multifaceted Understanding of Accreting Neutron stars and their Environments: An X-ray Polarimetric Focus.</i> </font></p>
<p class="talkpoints"><span class="badge">12</span> <font size ="+0.5"> (Nov 2023) KIPAC Tea Talk - Stanford University. Stanford, California, USA. <i>Understanding Neutron Star Geometry through the Lens of X-ray Polarization.</i> </font></p>
<p class="talkpoints"><span class="badge">11</span> <font size ="+0.5"> (Oct 2023) Seminar - NASA Goddard Space Flight Center. Greenbelt, Maryland, USA. <i>Probing the Accretion Geometry of Neutron Stars with X-ray Polarization.</i> </font></p>
<p class="talkpoints"><span class="badge">10</span> <font size ="+0.5"> (Oct 2023) Seminar - U.S. Naval Research Laboratory. Washington DC, USA. <i>Probing the Accretion Geometry of Neutron Stars with X-ray Polarization.</i> </font></p>
<p class="talkpoints"><span class="badge">9</span> <font size ="+0.5"> (Oct 2023) Seminar - University of Michigan. Ann Arbor, Michigan, USA. <i>Probing the Accretion Geometry of Neutron Stars with X-ray Polarization.</i> </font></p>
<p class="talkpoints"><span class="badge">8</span> <font size ="+0.5"> (Jan 2023) Contributed Talk - 241st Meeting of the American Astronomical Society. Seattle, Washington, USA. <i>IXPE Observations of the Pulsar 4U 1626-67.</i> </font></p>
<p class="talkpoints"><span class="badge">7</span> <font size ="+0.5"> (Dec 2022) Seminar - Nanyang Technological University. Singapore. <i>IXPE Observations of the Neutron Star Low-Mass X-ray Binary 4U 1626-67.</i> </font></p>
<p class="talkpoints"><span class="badge">6</span> <font size ="+0.5"> (Nov 2022) Seminar - JAXA/ISAS. Tokyo, Japan. <i>IXPE Observations of the Neutron Star Low-Mass X-ray Binary 4U 1626-67.</i> </font></p>
<p class="talkpoints"><span class="badge">5</span> <font size ="+0.5"> (Nov 2022) Seminar - Kyoto University. Kyoto, Japan. <i>IXPE Observations of the Neutron Star Low-Mass X-ray Binary 4U 1626-67.</i> </font></p>
<p class="talkpoints"><span class="badge">4</span> <font size ="+0.5"> *(Sep 2022) Contributed Talk - Astrophysical Polarimetry in the Time-Domain Era. Lecco, Italy. <i>IXPE Observations of the Pulsar 4U 1626-67.</i> </font></p>
<p class="talkpoints"><span class="badge">3</span> <font size ="+0.5"> (Jul 2022) Contributed Talk - Committee on Space Research (COSPAR) Assembly 2022. Athens, Greece. <i>IXPE Observations of the Pulsar 4U 1626-67.</i></font></p>
<p class="talkpoints"><span class="badge">2</span> <font size ="+0.5"> (Aug 2016) Invited Talk - Auckland Astronomical Society. Auckland, New Zealand. <i>Modelling the spectra of hot stars.</i> </font></p>
<p class="talkpoints"><span class="badge">1</span> <font size ="+0.5"> (Apr 2016) Contributed Talk - Royal Astronomical Society of New Zealand Conference. Napier, New Zealand. <i>Modelling the spectra of hot stars.</i> </font></p>
</ul>
<header>
<h3>Posters</h3>
</header>
<ul>
<p class="talkpoints"><span class="badge">5</span> <font size ="+0.5"> (Jun 2024) XMM-Newton 2024 Science Workshop: The X-ray Mysteries of Neutron Stars and White Dwarfs. Madrid, Spain. <i> Probing the Atoll/Z Continuum with Neutron Star Low Mass X-ray Binary 1A 1744-361.</i> </font></p>
<p class="talkpoints"><span class="badge">4</span> <font size ="+0.5"> (Mar 2023) 20th Divisional Meeting of the High Energy Astrophysics Division. Waikōloa, Hawai'i, USA. <i> Discovery of a 7.8 Hz QPO from the High-Intensity Outburst of Dipping NS LMXB 1A 1744-361.</i> </font></p>
<p class="talkpoints"><span class="badge">3</span> <font size ="+0.5"> (Mar 2023) 20th Divisional Meeting of the High Energy Astrophysics Division. Waikōloa, Hawai'i, USA. <i> IXPE Observations of the Pulsar 4U 1626-67.</i> </font></p>
<p class="talkpoints"><span class="badge">2</span> <font size ="+0.5"> (Mar 2022) 19th Divisional Meeting of the High Energy Astrophysics Division. Pittsburgh, Pennsylvania, USA. <i>NICER Pulsation Search and Spectroscopy of the Original Black Widow Pulsar, PSR B1957+20.</i> </font></p>
<p class="talkpoints"><span class="badge">1</span> <font size ="+0.5"> (Dec 2019) Celebrating 20 Years of Chandra Science Symposium. Boston, Massachusetts, USA. <i>Spectral Evolution of NGC 300 ULX-1.</i> </font></p>
</ul>
</div>
</section>
<!-- Past Research -->
<section id="pastresearch" class="six">
<div class="container">
<header>
<h2>Past Research</h2>
</header>
<p> <font size ="+0.5"> I previously worked on many facets of astrophysics... </font></p>
<p> <font size ="+0.5"> In reverse chronological order, </font> </p>
<button class="collapsible">Magnetic Fields in Stellar Atmospheres</button>
<div class="content">
<p>Investigated the effects of different magnetic field strengths and configurations on the structure of the stellar atmosphere of solar-type stars.</p>
</div>
<button class="collapsible">Galaxy Evolution</button>
<div class="content">
<p>Studied absorber kinematics of 31 OVI absorbers, which exhibited a strong halo mass dependence, where absorbers hosted by L* galaxies have the largest velocity dispersions compared with lower masses and group environments, due to a match between virial temperature and the temperature at which OVI ionization fraction is greatest. Total column densities follow the same behavior, consistent with simulations. Relative absorber--galaxy kinematics of the same sample was studied, though the mass dependence was first normalized out to account for the range of halo masses in the sample. Non-virialized motions due to outflowing gas was observed. Accreting gas signatures were not observed due to multiple line-of-sight structures that were observed, resulting in "kinematic blurring". These results indicate that OVI is not an accurate probe of baryon cycle processes.</p>
</div>
<button class="collapsible">Cosmology</button>
<div class="content">
<p> There were two projects I carried out: </p>
<p> 1) I performed evidence calculations with a trio of codes (<a href="https://cosmologist.info/cosmomc/">CosmoMC</a>, <a href="https://github.com/PolyChord/PolyChordLite">PolyChord</a>, and <a href="http://modecode.org/">ModeCode</a>) on several inflationary models, most notable of which is the <a href="https://arxiv.org/abs/1709.01192">inflection point inflationary model</a>. Results obtained showed that it is comparable in likelihood to quadratic potentials. </p>
<p> 2) I also looked at quantifying the impacts of dark matter on the cosmic microwave background using the 2015 Planck likelihoods, in order to demonstrate the predictive power of dark matter. It was found that dark matter was needed at least at the $10^{100}$ level. While the physical effects of dark matter are well-understood, this quantitative calculation has not been reported in the literature.owave Background.</p>
<p> The results are all summarized in my <a href="HonsThesis.pdf">Senior thesis (US)/Honours thesis (NZ/Aus)</a>.</p>
</div>
<button class="collapsible">Machine Learning to Diagnose Poor Astronomical Seeing</button>
<div class="content">
<p>The project involved training a computer to predict image quality from the SkyMapper telescope by considering environmental conditions and telescope configurations. The SkyMapper telescope atop Siding Spring Observatory surveys the entire Southern sky in multiple wavelengths. SkyMapper will inevitably find millions of celestial objects. One result was that the angle of rotation of the CCD camera resulted in visibly lower quality images. Once this was discovered, the SkyMapper team disabled that telescope setting.</p>
</div>
<button class="collapsible">Generating Stellar Atmosphere Models</button>
<div class="content">
<p>Working with Georgie Taylor, we created over 1300 stellar atmosphere models for use in BPASS, the state-of-the-art code incorporating binary stellar systems to predict properties of stellar populations. Results of our work have contributed to the analysis of the recently announced gravitational waves, where it was concluded that similar events are more likely to occur in low-metallicity environments.</p>
</div>
</div>
</section>
<!-- Outreach -->
<section id="outreach" class="seven">
<div class="container">
<header>
<h2>Advocacy and Outreach</h2>
</header>
<p> <font size ="+0.5"> Since April 2024, I have been a committee member of the newly established American Astronomical Society Working Group for International Students and Researchers in Astronomy. We are charged with supporting the international scholars, and U.S. citizens pursuing astronomical research overseas, within the AAS community. Stay tuned for updates from us!
<p> <font size ="+0.5"> From 2023-2024, I was the Vice-Chair of the Graduate Research and Development (GRAD) Coalition, the student arm of the GRAD Caucus in the House of Representatives, which represents over 200,000 graduate students in 32 universities over 17 U.S. states. I was responsible for executing the strategic vision set by the Chair, ultimately advocating for graduate student issues, and liaising with Congressional staffers to discuss and advance legislation addressing these issues. Our most notable accomplishment was organizing the <a href="https://www.graduatecoalition.com/briefings/">Congressional briefing on graduate advising and mentorship in October 2023 in Washington D.C</a>. Before that, I was the Vice-Chair of the MIT Graduate Student Council External Affairs Board (GSC EAB),
and was responsible for general programming and maintaining the EAB newsletter. The GSC EAB is broadly the external arm of the MIT GSC, advocating on behalf of MIT graduate students in issues of concern to the group (e.g., climate change, research funding). We typically liaise with staffers in Congress and the Biden administration through letters and meetings. We have also sent out statements endorsing certain and relevant legislation (see <a href="https://gsc.mit.edu/committees/external/statements/">here</a>.) I have led an <a href="https://astrobites.org/2022/11/10/a-new-initiative-to-advocate-for-grad-students-in-congress/">Astrobites article</a> on the formation of the Graduate Research and Development (GRAD) Caucus in the House of Representatives. I have also led a delegation of 10 MIT graduate students for a two-day advocacy trip in Spring 2023 where we met with over 60 House, Senate, and committee staffer in-person meetings (plus about 10 virtual meetings) on topics from graduate student mentorship to international student issues. </font> </p>
<p> <font size ="+0.5"> I have co-led the PhysGAAP initiative, where it provides application guidance resources to prospective applicants to reduce the barriers for application to the MIT Physics PhD program, and to address the underrpresentation of students from historically excluded communities. PhysGAAP offers a one-on-one mentorship program, virtual webinars, as well as a Q&A service. More information can be found <a href="https://physics.mit.edu/academic-programs/graduate-students/graduate-admissions/#guidance">here</a>. <strong>Please reach out to me if you would like me to speak to your student group about demystifying the graduate school admissions process! This is a free service and I especially encourage requests from schools who do not typically have students going into MIT or graduate school in physics in general.</strong> </font> </p>
<p> <font size ="+0.5"> I was also a part of <a href="https://astrogazers.mit.edu">MIT Astrogazers</a>, a group of MIT astrophysics graduate students, who take out telescopes on clear nights to the public and invites them to marvel at bright celestial targets like
the Moon, Saturn, and Jupiter (when they are up!) </font> </p>
</div>
</section>
<!-- Personal History -->
<section id="personalhistory" class="eight">
<div class="container">
<header>
<h2>Personal History</h2>
</header>
<font size ="+0.5"> I come from New Zealand, though my roots stem from Malaysia, where both my parents are from. I have lived in six cities in four countries, over three continents throughout my life! </font>
</div>
</section>
<section id="countries" class="nine">
<div class="container">
<header>
<h2>Travel</h2>
</header>
<font size ="+0.5"> Fun graphic illustrating the countries I have visited thus far! I am always thinking about the next travel adventure! </font>
<p></p>
<script src="https://www.amcharts.com/lib/3/ammap.js" type="text/javascript"></script>
<script src="https://www.amcharts.com/lib/3/maps/js/worldHigh.js" type="text/javascript"></script>
<script src="https://www.amcharts.com/lib/3/themes/dark.js" type="text/javascript"></script>
<div id="mapdiv" style="width: 1000px; height: 450px;"></div>
<div style="width: 1000px; font-size: 70%; padding: 5px 0; text-align: center; background-color: #535364; margin-top: 1px; color: #B4B4B7;"><a href="https://www.amcharts.com/visited_countries/" style="color: #B4B4B7;">Create your own visited countries map</a> or check out the <a href="https://www.amcharts.com/" style="color: #B4B4B7;">JavaScript Charts</a>.</div>
<script type="text/javascript">
var map = AmCharts.makeChart("mapdiv",{
type: "map",
theme: "dark",
projection: "mercator",
panEventsEnabled : true,
backgroundColor : "#535364",
backgroundAlpha : 1,
zoomControl: {
zoomControlEnabled : true
},
dataProvider : {
map : "worldHigh",
getAreasFromMap : true,
areas :
[
{
"id": "GR",
"showAsSelected": true
},
{
"id": "XK",
"showAsSelected": true
},
{
"id": "NL",
"showAsSelected": true
},
{
"id": "MK",
"showAsSelected": true
},
{
"id": "CA",
"showAsSelected": true
},
{
"id": "US",
"showAsSelected": true
},
{
"id": "KH",
"showAsSelected": true
},
{
"id": "HK",
"showAsSelected": true
},
{
"id": "JP",
"showAsSelected": true
},
{
"id": "MY",
"showAsSelected": true
},
{
"id": "SG",
"showAsSelected": true
},
{
"id": "TW",
"showAsSelected": true
},
{
"id": "AU",
"showAsSelected": true
},
{
"id": "NZ",
"showAsSelected": true
},
{
"id": "US-CA",
"showAsSelected": true
},
{
"id": "US-CT",
"showAsSelected": true
},
{
"id": "US-FL",
"showAsSelected": true
},
{
"id": "US-IL",
"showAsSelected": true
},
{
"id": "US-MA",
"showAsSelected": true
},
{
"id": "US-ME",
"showAsSelected": true
},
{
"id": "US-NH",
"showAsSelected": true
},
{
"id": "US-NJ",
"showAsSelected": true
},
{
"id": "US-NY",
"showAsSelected": true
},
{
"id": "US-PA",
"showAsSelected": true
},
{
"id": "US-RI",
"showAsSelected": true
},
{
"id": "US-VA",
"showAsSelected": true
},
{
"id": "KR",
"showAsSelected": true
},
{
"id": "IT",
"showAsSelected": true
},
{
"id": "ES",
"showAsSelected": true
},
{
"id": "VA",
"showAsSelected": true
},
{
"id": "DE",
"showAsSelected": true
},
{
"id": "CH",
"showAsSelected": true
},
{
"id": "AT",
"showAsSelected": true
},
{
"id": "LI",
"showAsSelected": true
}
]
},
areasSettings : {
autoZoom : true,
color : "#B4B4B7",
colorSolid : "#84ADE9",
selectedColor : "#84ADE9",
outlineColor : "#666666",
rollOverColor : "#9EC2F7",
rollOverOutlineColor : "#000000"
}
});
</script>
<!-- <script src="https://www.amcharts.com/lib/3/ammap.js" type="text/javascript"></script>
<script src="https://www.amcharts.com/lib/3/maps/js/usaHigh.js" type="text/javascript"></script>
<script src="https://www.amcharts.com/lib/3/themes/light.js" type="text/javascript"></script>
<div id="mapdiv" style="width: 1000px; height: 450px;"></div>
<div style="width: 1000px; font-size: 70%; padding: 5px 0; text-align: center; background-color: #535364; margin-top: 1px; color: #B4B4B7;"><a href="https://www.amcharts.com/visited_states/" style="color: #B4B4B7;">Create your own visited states map</a> or check out the <a href="https://www.amcharts.com/" style="color: #B4B4B7;">JavaScript Charts</a>.</div>
<script type="text/javascript">
var map = AmCharts.makeChart("mapdiv",{
type: "map",
theme: "light",
panEventsEnabled : true,
backgroundColor : "#535364",
backgroundAlpha : 1,
zoomControl: {
zoomControlEnabled : true
},
dataProvider : {
map : "usaHigh",
getAreasFromMap : true,
areas :
[
{
"id": "US-CA",
"showAsSelected": true
},
{
"id": "US-CT",
"showAsSelected": true
},
{
"id": "US-FL",
"showAsSelected": true
},
{
"id": "US-IL",
"showAsSelected": true
},
{
"id": "US-MA",
"showAsSelected": true
},
{
"id": "US-ME",
"showAsSelected": true
},
{
"id": "US-NH",
"showAsSelected": true
},
{
"id": "US-NJ",
"showAsSelected": true
},
{
"id": "US-NY",
"showAsSelected": true
},
{
"id": "US-PA",
"showAsSelected": true
},
{
"id": "US-RI",
"showAsSelected": true
},
{
"id": "US-VA",
"showAsSelected": true
}
]
},
areasSettings : {
autoZoom : true,
color : "#B4B4B7",
colorSolid : "#84ADE9",
selectedColor : "#84ADE9",
outlineColor : "#666666",
rollOverColor : "#9EC2F7",
rollOverOutlineColor : "#000000"
}
});
</script> -->
</div>
</section>
<!-- Website Set-up -->
<!-- <section id="websitesetup" class="nine"> -->
<!-- <div class="container"> -->
<!-- <header> -->
<!-- <h2>Setting up your personal website</h2> -->
<!-- </header> -->
<!-- <p> I am not sure if this might be useful, and there are many excellent resources on the internet, but I thought it might be nice to have a quick summary of how I created this website.
It serves as a personal record for myself, but I hope this could be useful to someone else who may be daunted (I was!) by the idea of making a website from scratch. </p> -->
<!-- <p> First of all, you do not need to have expert (or even basic) HTML knowledge. If you have had coding experience in any language, you can adapt to the syntax by looking at the code structure
in a template and copying it. If you want to perform more elaborate operations, then going through some tutorials (<a href="https://www.codecademy.com">Codecademy</a>) will be instructive. </p> -->
<!-- </div> -->
<!-- </section> -->
<!-- Resources -->
<section id="resources" class="ten">
<div class="container">
<header>
<h2>Resources</h2>
</header>
<ul>
<font size ="+0.5"> Here are some resources that you should check out, especially if you are thinking about undertaking graduate studies in astrophysics/physics! </font>
<p></p>
<li> <font size="+0.5"> <a href="https://physics.mit.edu/academic-programs/graduate-students/graduate-admissions/#guidance">Application Guidance for the MIT Physics Ph.D. program</a> </font></li>
<li> <font size="+0.5"> <a href="https://astrobites.org/">Astrobites</a> </font></li>
</ul>
</div>
</section>
<!-- Contact -->
<!-- <section id="contact" class="eleven">
<div class="container">
<header>
<h2>Contact</h2>
</header>
<p>Please feel free to contact me here or through my email [email protected] if you have any questions!</p>
<form method="post" action="#">
<div class="row">
<div class="col-6 col-12-mobile"><input type="text" name="name" placeholder="Name" /></div>
<div class="col-6 col-12-mobile"><input type="text" name="email" placeholder="Email" /></div>
<div class="col-12">
<textarea name="message" placeholder="Message"></textarea>
</div>
<div class="col-12">
<input type="submit" value="Send Message" />
</div>
</div>
</form>
</div>
</section> -->
</div>
<!-- Footer -->
<div id="footer">
<!-- Copyright -->
<ul class="copyright">
<li>© Mason Ng 2023. All rights reserved.</li><li>Design: <a href="http://html5up.net">HTML5 UP</a></li>
</ul>
</div>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/jquery.scrolly.min.js"></script>
<script src="assets/js/jquery.scrollex.min.js"></script>
<script src="assets/js/browser.min.js"></script>
<script src="assets/js/breakpoints.min.js"></script>
<script src="assets/js/util.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>