-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathservices.html
More file actions
1091 lines (1053 loc) · 60.6 KB
/
Copy pathservices.html
File metadata and controls
1091 lines (1053 loc) · 60.6 KB
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 xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head>
<meta charset="utf-8">
<meta name="generator" content="quarto-1.4.555">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
<title>services</title>
<style>
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
ul.task-list{list-style: none;}
ul.task-list li input[type="checkbox"] {
width: 0.8em;
margin: 0 0.8em 0.2em -1em; /* quarto-specific, see https://github.com/quarto-dev/quarto-cli/issues/4556 */
vertical-align: middle;
}
</style>
<script src="site_libs/quarto-nav/quarto-nav.js"></script>
<script src="site_libs/clipboard/clipboard.min.js"></script>
<script src="site_libs/quarto-search/autocomplete.umd.js"></script>
<script src="site_libs/quarto-search/fuse.min.js"></script>
<script src="site_libs/quarto-search/quarto-search.js"></script>
<meta name="quarto:offset" content="./">
<link href="./images/logo.png" rel="icon" type="image/png">
<script src="site_libs/quarto-html/quarto.js"></script>
<script src="site_libs/quarto-html/popper.min.js"></script>
<script src="site_libs/quarto-html/tippy.umd.min.js"></script>
<script src="site_libs/quarto-html/anchor.min.js"></script>
<link href="site_libs/quarto-html/tippy.css" rel="stylesheet">
<link href="site_libs/quarto-html/quarto-syntax-highlighting.css" rel="stylesheet" id="quarto-text-highlighting-styles">
<script src="site_libs/bootstrap/bootstrap.min.js"></script>
<link href="site_libs/bootstrap/bootstrap-icons.css" rel="stylesheet">
<link href="site_libs/bootstrap/bootstrap.min.css" rel="stylesheet" id="quarto-bootstrap" data-mode="light">
<script id="quarto-search-options" type="application/json">{
"location": "sidebar",
"copy-button": false,
"collapse-after": 3,
"panel-placement": "start",
"type": "textbox",
"limit": 50,
"keyboard-shortcut": [
"f",
"/",
"s"
],
"show-item-context": false,
"language": {
"search-no-results-text": "No results",
"search-matching-documents-text": "matching documents",
"search-copy-link-title": "Copy link to search",
"search-hide-matches-text": "Hide additional matches",
"search-more-match-text": "more match in this document",
"search-more-matches-text": "more matches in this document",
"search-clear-button-title": "Clear",
"search-text-placeholder": "",
"search-detached-cancel-button-title": "Cancel",
"search-submit-button-title": "Submit",
"search-label": "Search"
}
}</script>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="styles_about.css">
</head>
<body>
<div id="quarto-search-results"></div>
<!-- content -->
<div id="quarto-content" class="quarto-container page-layout-custom">
<!-- sidebar -->
<!-- margin-sidebar -->
<!-- main -->
<ol type="1">
<li><div>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css" integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg==" crossorigin="anonymous" referrerpolicy="no-referrer">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="https://getbootstrap.com/docs/5.2/assets/css/docs.css" rel="stylesheet">
<link href="https://unpkg.com/boxicons@2.1.1/css/boxicons.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cssslider.com/sliders/demo-16/engine1/style.css">
<link rel="stylesheet" href="http://cssslider.com/sliders/demo-16/engine1/ie.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<script type="text/javascript" src="http://cssslider.com/sliders/demo-16/engine1/ie.js"></script>
<script type="text/javascript" src="https://cssslider.com/sliders/demo-16/engine1/gestures.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
<script src="https://unpkg.com/@popperjs/core@2.11.6/dist/umd/popper.min.js"></script>
<script src="https://unpkg.com/tippy.js@6.3.3/dist/tippy-bundle.umd.min.js"></script>
<script src="https://unpkg.com/@popperjs/core@2.11.6/dist/umd/popper.min.js"></script>
<script src="https://unpkg.com/tippy.js@6.3.3/dist/tippy-bundle.umd.min.js"></script>
<link href="https://stackpath.bootstrapcdn.com/bootstrap/5.3.0/css/bootstrap.min.css" rel="stylesheet">
<script src="https://stackpath.bootstrapcdn.com/bootstrap/5.3.0/js/bootstrap.bundle.min.js"></script>
<script src="https://cdn.jsdelivr.net/gh/bwva/HTML-SpinnerElem/src/spinnerComponent.js"></script>
<nav class="navbar navbar-expand-md navbarcolor" id="home">
<a class="navbar-brand" href="#"><img src="./images/logo.png"></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mx-auto">
<li class="nav-item active">
<a class="nav-link" href="./index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./services.html">Molecular BioLab
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./program.html">Computational Biology</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://hprovax.github.io/DAiR2024.github.io/">Workshops</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./teach.html">Teaching</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./publication.html">Publication</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./about.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.qmd">Contact</a>
</li>
</ul>
<form class="form-inline my-2 my-lg-0">
<input class="form-control mr-sm-2" style="width: 440px; height:70px;font-size: 36px;" type="search" placeholder="Search" aria-label="Search">
<button class="btn btn-light my-sm-0" style="width: 180px; height:70px;font-size: 36px;" type="submit">Search</button>
</form>
</div>
</nav>
<div class="bg" id="services">
<div class="main-content">
<div class="content-about" id="services">
<div class="sidebar">
<div class="sidebar-info">
<figure class="avatar-box figure">
<img src="images/itsme.jpeg" alt="Hamed Abdollahi" width="50" class="figure-img">
</figure>
<div class="info-content">
<h1 class="name" title="Hamed Abdollahi" style="color:#dee3f9;">Hamed Abdollahi</h1>
<p class="title" style="color:#bfc8ec;"> DVM, PhD
<br>
<span class="titleII" style="color:#bfc8ec;">Molecular Biologist</span><br><span class="titleII" style="color:#bfc8ec;">Veterinarian</span></p>
<span class="curve"></span>
</div>
<ul class="contacts-list"><li class="contact-item">
<div id="gmail">
<img src="images/mail-unread-outline.svg" alt="Mail Icon" class="icon">
</div>
<div class="contact-info">
<p><a href="mailto:hprovax@gmail.com" class="contact-link" style="font-size:80px;color:#dee3f9;">HProVax@gmail.com</a></p>
</div>
</li>
<!--2-->
<li class="contact-item">
<div>
<img src="images/linkedin-svgrepo-com.svg" alt="Linkedin Icon" class="icon">
</div>
<div class="contact-info">
<p><a href="https://www.linkedin.com/in/hamed-abdollahi-15117079" class="contact-link" style="font-size:80px;color:#dee3f9;">My Linkedin</a></p>
</div>
</li>
<!--3-->
<li class="contact-item">
<div>
<img src="images/google-scholar.svg" alt="" class="icon">
</div>
<div class="contact-info">
<p><a href="https://scholar.google.com/citations?user=lXf0_H0AAAAJ&hl=en" class="contact-link" style="font-size:80px;">G<span class="o4">o</span><span class="o3">o</span><span class="o1">g</span><span class="o2">l</span><span class="o4">e</span><span style="color:white;">Scholar</span></a></p><p></p>
</div>
</li>
<!--4-->
<li class="contact-item">
<div>
<img src="images/orcid.svg" alt="ORCID Icon" class="icon">
</div>
<div class="contact-info">
<p><a href="https://orcid.org/0000-0002-2202-2193" class="contact-link" style="font-size:80px;color:#dee3f9;">ORCID</a></p>
</div>
</li>
<!--5-->
<li class="contact-item">
<div>
<img src="images/location-global-svgrepo-com.svg" alt="Mail Icon" class="icon">
</div>
<div class="contact-info">
<p><a href="https://maps.app.goo.gl/yTz8M8XeHsyMa3xk6" class="Location" style="font-size:80px;color:#dee3f9;">Columbia, USA</a></p>
</div>
</li>
</ul>
<div class="sidebarnote">
<span id="terminalsidebar">Welcome to the Instruments and Automation section, where you can explore the advanced molecular laboratory equipment that I have mastered over the past decade. My extensive experience with these tools ensures that I can provide expert assistance if you need help for leveraging these instruments in your business and research. Feel free to contact me via email for any inquiries.</span>
</div>
</div>
</div>
<div class="center">
<div _ngcontent-serverapp-c160="" class="product-groups__list">
<!--item1-->
<atlas-fronts-product-group _ngcontent-serverapp-c160="" class="product-groups__list-item ng-star-inserted" _nghost-serverapp-c158="">
<a _ngcontent-serverapp-c158="" href="https://assets.thermofisher.com/TFS-Assets/LSG/Specification-Sheets/3500-Genetic-Analyzer-Specification-Sheet.pdf" title="Sanger Sequencer">
<mat-card _ngcontent-serverapp-c158="" class="mat-card mat-focus-indicator product-group product-group--grey">
<div _ngcontent-serverapp-c158="" class="product-group__image">
<img _ngcontent-serverapp-c158="" lazyload="" alt="Sanger Sequencer" src="images/sangseq.png">
</div>
<mat-card-content _ngcontent-serverapp-c158="" class="mat-card-content"><br>
<h6 _ngcontent-serverapp-c158="" mat-card-title="" class="mat-card-title product-group__title">Sanger Sequencer</h6><br><br><br><br>
<div _ngcontent-serverapp-c158="" class="product-group__description">I have used this powerful tool for DNA sequencing and fragment analysis.</div>
</mat-card-content>
</mat-card>
</a>
</atlas-fronts-product-group>
<!--item2-->
<atlas-fronts-product-group _ngcontent-serverapp-c160="" class="product-groups__list-item ng-star-inserted" _nghost-serverapp-c158="">
<a _ngcontent-serverapp-c158="" href="https://www.qiagen.com/us/products/discovery-and-translational-research/epigenetics/dna-methylation/methylation-specific-pcr/rotor-gene-q" title="RealTime PCR">
<mat-card _ngcontent-serverapp-c158="" class="mat-card mat-focus-indicator product-group product-group--grey">
<div _ngcontent-serverapp-c158="" class="product-group__image">
<img _ngcontent-serverapp-c158="" lazyload="" alt="" src="images/qreal.jpg">
</div>
<mat-card-content _ngcontent-serverapp-c158="" class="mat-card-content"><br>
<h6 _ngcontent-serverapp-c158="" mat-card-title="" class="mat-card-title product-group__title">RealTime PCR Thermocyclers</h6><br><br><br><br><br>
<div _ngcontent-serverapp-c158="" class="product-group__description">My work with qPCR and qRT-PCR includes both block and rotary real-time PCR cyclers.</div>
</mat-card-content>
</mat-card>
</a>
</atlas-fronts-product-group>
<!--item3-->
<atlas-fronts-product-group _ngcontent-serverapp-c160="" class="product-groups__list-item ng-star-inserted" _nghost-serverapp-c158="">
<a _ngcontent-serverapp-c158="" href="https://www.eppendorf.com/us-en/Products/PCR/Thermocyclers/Mastercycler-X50-p-PF-217186" title="PCR Thermocycler">
<mat-card _ngcontent-serverapp-c158="" class="mat-card mat-focus-indicator product-group product-group--grey">
<div _ngcontent-serverapp-c158="" class="product-group__image">
<img _ngcontent-serverapp-c158="" lazyload="" alt="PCR Thermocycler" src="images/eppenpcr.png">
</div>
<mat-card-content _ngcontent-serverapp-c158="" class="mat-card-content"><br>
<h6 _ngcontent-serverapp-c158="" mat-card-title="" class="mat-card-title product-group__title">PCR Thermocycler</h6><br><br><br><br>
<div _ngcontent-serverapp-c158="" class="product-group__description"> I regularly utilize PCR Thermocyclers for routine PCR applications, diagnosis, library preparation, and cloning.</div>
</mat-card-content>
</mat-card>
</a>
</atlas-fronts-product-group>
<!--item4-->
<atlas-fronts-product-group _ngcontent-serverapp-c160="" class="product-groups__list-item ng-star-inserted" _nghost-serverapp-c158="">
<a _ngcontent-serverapp-c158="" href="https://sciex.com/products/mass-spectrometers/triple-quad-systems/triple-quad-3500-system" title="Protein Electrophoresis">
<mat-card _ngcontent-serverapp-c158="" class="mat-card mat-focus-indicator product-group product-group--grey">
<div _ngcontent-serverapp-c158="" class="product-group__image">
<img _ngcontent-serverapp-c158="" lazyload="" alt="triple-quad-3500-system" src="images/ms3500.png">
</div>
<mat-card-content _ngcontent-serverapp-c158="" class="mat-card-content">
<h6 _ngcontent-serverapp-c158="" mat-card-title="" class="mat-card-title product-group__title">Triple Quadrupole Qandem Mass Spectrometry (MS/MS) </h6><br>
<div _ngcontent-serverapp-c158="" class="product-group__description">In the application of this sophisticated technology, I collaborated closely with a chemist operator on drug residue and small proteins detection experiments and have extensive experience in protein data analysis and interpretation.</div>
</mat-card-content>
</mat-card>
</a>
</atlas-fronts-product-group>
<!--item5-->
<atlas-fronts-product-group _ngcontent-serverapp-c160="" class="product-groups__list-item ng-star-inserted" _nghost-serverapp-c158="">
<a _ngcontent-serverapp-c158="" href="https://www.agilent.com/Library/usermanuals/Public/1200SeriesRRLC-OptimizeGuide_ebook.pdf" title="Protein Electrophoresis">
<mat-card _ngcontent-serverapp-c158="" class="mat-card mat-focus-indicator product-group product-group--grey">
<div _ngcontent-serverapp-c158="" class="product-group__image">
<img _ngcontent-serverapp-c158="" lazyload="" alt=" liquid chromatography" src="images/hplc.jpg">
</div>
<mat-card-content _ngcontent-serverapp-c158="" class="mat-card-content">
<h6 _ngcontent-serverapp-c158="" mat-card-title="" class="mat-card-title product-group__title">High Performance Liquid Chromatographyg</h6>
<div _ngcontent-serverapp-c158="" class="product-group__description">Although I haven't directly operated HPLC, I have a solid theoretical background and have collaborated with a chemist operator on successful online and offline separation of biologics and proteins, including microcystin detection experiments.</div>
</mat-card-content>
</mat-card>
</a>
</atlas-fronts-product-group>
<!--item6-->
<atlas-fronts-product-group _ngcontent-serverapp-c160="" class="product-groups__list-item ng-star-inserted" _nghost-serverapp-c158="">
<a _ngcontent-serverapp-c158="" href="https://www.bio-rad.com/en-us/category/protein-electrophoresis-blotting?ID=da4d07ba-052c-4156-89ef-16ab7b17f243" title="Protein Electrophoresis">
<mat-card _ngcontent-serverapp-c158="" class="mat-card mat-focus-indicator product-group product-group--grey">
<div _ngcontent-serverapp-c158="" class="product-group__image">
<img _ngcontent-serverapp-c158="" lazyload="" alt="Protein Electrophoresis" src="images/PDP.png">
</div>
<mat-card-content _ngcontent-serverapp-c158="" class="mat-card-content"><br>
<h6 _ngcontent-serverapp-c158="" mat-card-title="" class="mat-card-title product-group__title">Protein Electrophoresis and Blotting</h6><br><br><br>
<div _ngcontent-serverapp-c158="" class="product-group__description">I utilize 1-D and 2-D protein electrophoresis, ensuring accurate protein separation and analysis.</div>
</mat-card-content>
</mat-card>
</a>
</atlas-fronts-product-group>
<!--item5-->
<atlas-fronts-product-group _ngcontent-serverapp-c160="" class="product-groups__list-item ng-star-inserted" _nghost-serverapp-c158="">
<a _ngcontent-serverapp-c158="" href="https://www.bio-rad.com/en-us/category/nucleic-acid-electrophoresis-blotting?ID=e55dd3f8-84cf-46ea-aab3-674d99f91cd5" title="NAs electrophoresis and blotting">
<mat-card _ngcontent-serverapp-c158="" class="mat-card mat-focus-indicator product-group product-group--grey">
<div _ngcontent-serverapp-c158="" class="product-group__image">
<img _ngcontent-serverapp-c158="" lazyload="" alt="NAs electrophoresis and blotting" src="images/DNA.png">
</div>
<mat-card-content _ngcontent-serverapp-c158="" class="mat-card-content"><br>
<h6 _ngcontent-serverapp-c158="" mat-card-title="" class="mat-card-title product-group__title">Nucleic Acid electrophoresis and blotting</h6><br><br>
<div _ngcontent-serverapp-c158="" class="product-group__description"> My expertise extends to nucleic acid electrophoresis and blotting for precise DNA and RNA analysis.</div>
</mat-card-content>
</mat-card>
</a>
</atlas-fronts-product-group>
<!--item6-->
<atlas-fronts-product-group _ngcontent-serverapp-c160="" class="product-groups__list-item ng-star-inserted" _nghost-serverapp-c158="">
<a _ngcontent-serverapp-c158="" href="https://www.bio-rad.com/en-us/category/gel-imaging-systems?ID=d6f93330-755b-410c-9c9c-77da24d51eab" title="Gel documentation system">
<mat-card _ngcontent-serverapp-c158="" class="mat-card mat-focus-indicator product-group product-group--grey">
<div _ngcontent-serverapp-c158="" class="product-group__image">
<img _ngcontent-serverapp-c158="" lazyload="" alt="Gel documentation system" src="images/geldoc.png">
</div>
<mat-card-content _ngcontent-serverapp-c158="" class="mat-card-content">
<h6 _ngcontent-serverapp-c158="" mat-card-title="" class="mat-card-title product-group__title">Gel documentation system</h6>
<div _ngcontent-serverapp-c158="" class="product-group__description"> I use UV and Stain-Free methods for imaging nucleic acids, as well as Coomassie or colorimetric blots for proteins and antigens.
</div>
</mat-card-content>
</mat-card>
</a>
</atlas-fronts-product-group>
<!--item7-->
<atlas-fronts-product-group _ngcontent-serverapp-c160="" class="product-groups__list-item ng-star-inserted" _nghost-serverapp-c158="">
<a _ngcontent-serverapp-c158="" href="https://www.agilent.com/en/product/microplate-instrumentation/microplate-readers/absorbance-microplate-readers/biotek-800-ts-absorbance-reader-1623177" title="microplate readers">
<mat-card _ngcontent-serverapp-c158="" class="mat-card mat-focus-indicator product-group product-group--grey">
<div _ngcontent-serverapp-c158="" class="product-group__image">
<img _ngcontent-serverapp-c158="" lazyload="" alt="microplate readers" src="images/ereader.png">
</div>
<mat-card-content _ngcontent-serverapp-c158="" class="mat-card-content">
<h6 _ngcontent-serverapp-c158="" mat-card-title="" class="mat-card-title product-group__title">Microplate Readers</h6>
<div _ngcontent-serverapp-c158="" class="product-group__description">My experience includes ELISA, protein quantification, enzyme kinetics, antibody level determination and immunity status check,and cell-based assays.</div>
</mat-card-content>
</mat-card>
</a>
</atlas-fronts-product-group>
<!--item8-->
<atlas-fronts-product-group _ngcontent-serverapp-c160="" class="product-groups__list-item ng-star-inserted" _nghost-serverapp-c158="">
<a _ngcontent-serverapp-c158="" href="https://www.memmertusa.com/C/48/CO2Incubators" title="Incubators">
<mat-card _ngcontent-serverapp-c158="" class="mat-card mat-focus-indicator product-group product-group--grey">
<div _ngcontent-serverapp-c158="" class="product-group__image">
<img _ngcontent-serverapp-c158="" lazyload="" alt="Incubators" src="images/meminc.png">
</div>
<mat-card-content _ngcontent-serverapp-c158="" class="mat-card-content">
<h6 _ngcontent-serverapp-c158="" mat-card-title="" class="mat-card-title product-group__title">CO2 & standard incubators</h6>
<div _ngcontent-serverapp-c158="" class="product-group__description">II have used these incubators to maintain controlled environments with regulated temperature, humidity, and CO2 levels for cell and tissue culture, microbiology, and virology.</div>
</mat-card-content>
</mat-card>
</a>
</atlas-fronts-product-group>
<!--item9-->
<atlas-fronts-product-group _ngcontent-serverapp-c160="" class="product-groups__list-item ng-star-inserted" _nghost-serverapp-c158="">
<a _ngcontent-serverapp-c158="" href="https://assets.thermofisher.com/TFS-Assets%2FMSD%2FApplication-Notes%2Fanalysis-dna-melting-uv-visible-an56369-en.pdf" title="UV-Vis Spectrophotometers">
<mat-card _ngcontent-serverapp-c158="" class="mat-card mat-focus-indicator product-group product-group--grey">
<div _ngcontent-serverapp-c158="" class="product-group__image">
<img _ngcontent-serverapp-c158="" lazyload="" alt="UV-Vis Spectrophotometers" src="images/spec.png">
</div>
<mat-card-content _ngcontent-serverapp-c158="" class="mat-card-content"><br>
<h6 _ngcontent-serverapp-c158="" mat-card-title="" class="mat-card-title product-group__title">UV-Vis Spectrophotometers</h6><br><br>
<div _ngcontent-serverapp-c158="" class="product-group__description"> I employ these spectrophotometers for absorption experiments and measurements of biological and chemical substances.</div>
</mat-card-content>
</mat-card>
</a>
</atlas-fronts-product-group>
<!--item10-->
<atlas-fronts-product-group _ngcontent-serverapp-c160="" class="product-groups__list-item ng-star-inserted" _nghost-serverapp-c158="">
<a _ngcontent-serverapp-c158="" href="https://www.microscope.healthcare.nikon.com/products" title="Light Microscope">
<mat-card _ngcontent-serverapp-c158="" class="mat-card mat-focus-indicator product-group product-group--grey">
<div _ngcontent-serverapp-c158="" class="product-group__image">
<img _ngcontent-serverapp-c158="" lazyload="" alt="Light Microscope" src="images/invmicro.png">
</div>
<mat-card-content _ngcontent-serverapp-c158="" class="mat-card-content">
<h6 _ngcontent-serverapp-c158="" mat-card-title="" class="mat-card-title product-group__title">Upright & inverted Microscope</h6>
<div _ngcontent-serverapp-c158="" class="product-group__description">My work with microscopes includes cell culture, and in vivo and in vitro studies of tissue damage due to viruses and bacteria.</div>
</mat-card-content>
</mat-card>
</a>
</atlas-fronts-product-group>
<!--item11-->
<atlas-fronts-product-group _ngcontent-serverapp-c160="" class="product-groups__list-item ng-star-inserted" _nghost-serverapp-c158="">
<a _ngcontent-serverapp-c158="" href="https://www.beckman.com/centrifuges/ultracentrifuges" title="Ultracentrifuge">
<mat-card _ngcontent-serverapp-c158="" class="mat-card mat-focus-indicator product-group product-group--grey">
<div _ngcontent-serverapp-c158="" class="product-group__image">
<img _ngcontent-serverapp-c158="" lazyload="" alt="Ultracentrifuge" src="images/ultfuge.png">
</div>
<mat-card-content _ngcontent-serverapp-c158="" class="mat-card-content"><br>
<h6 _ngcontent-serverapp-c158="" mat-card-title="" class="mat-card-title product-group__title">Ultracentrifuge</h6><br>
<div _ngcontent-serverapp-c158="" class="product-group__description">I have used ultracentrifuges for producing viral master seeds, antigen preparation, and protein purification.</div>
</mat-card-content>
</mat-card>
</a>
</atlas-fronts-product-group>
<!--item12-->
<atlas-fronts-product-group _ngcontent-serverapp-c160="" class="product-groups__list-item ng-star-inserted" _nghost-serverapp-c158="">
<a _ngcontent-serverapp-c158="" href="https://www.beckman.com/centrifuges/high-speed" title="High-Speed Centrifuge">
<mat-card _ngcontent-serverapp-c158="" class="mat-card mat-focus-indicator product-group product-group--grey">
<div _ngcontent-serverapp-c158="" class="product-group__image">
<img _ngcontent-serverapp-c158="" lazyload="" alt="High-Speed Centrifuge" src="images/highfuge.png">
</div>
<mat-card-content _ngcontent-serverapp-c158="" class="mat-card-content"><br>
<h6 _ngcontent-serverapp-c158="" mat-card-title="" class="mat-card-title product-group__title">High-Speed Centrifuge</h6><br>
<div _ngcontent-serverapp-c158="" class="product-group__description">My expertise with high-speed centrifuges includes the extraction and purification of total RNA from cells and tissues.</div>
</mat-card-content>
</mat-card>
</a>
</atlas-fronts-product-group>
<!--item13-->
<atlas-fronts-product-group _ngcontent-serverapp-c160="" class="product-groups__list-item ng-star-inserted" _nghost-serverapp-c158="">
<a _ngcontent-serverapp-c158="" href="https://www.sigma-zentrifugen.de/en/products/centrifuges/details/sigma-3-18ks" title="refrigerated benchtop centrifuges">
<mat-card _ngcontent-serverapp-c158="" class="mat-card mat-focus-indicator product-group product-group--grey">
<div _ngcontent-serverapp-c158="" class="product-group__image">
<img _ngcontent-serverapp-c158="" lazyload="" alt="refrigerated benchtop centrifuges" src="images/sigcen.jpg">
</div>
<mat-card-content _ngcontent-serverapp-c158="" class="mat-card-content"><br><br>
<h6 _ngcontent-serverapp-c158="" mat-card-title="" class="mat-card-title product-group__title">Refrigerated benchtop centrifuges</h6><br><br>
<div _ngcontent-serverapp-c158="" class="product-group__description">I routinely use these centrifuges for DNA, RNA, and protein extraction, purification, and pelleting.</div>
</mat-card-content>
</mat-card>
</a>
</atlas-fronts-product-group>
<!--item14-->
<atlas-fronts-product-group _ngcontent-serverapp-c160="" class="product-groups__list-item ng-star-inserted" _nghost-serverapp-c158="">
<a _ngcontent-serverapp-c158="" href="https://www.eppendorf.com/us-en/Products/Centrifugation/Concentrator/Vacufuge-plus-p-PF-25748" title="Centrifuge Concentrator">
<mat-card _ngcontent-serverapp-c158="" class="mat-card mat-focus-indicator product-group product-group--grey">
<div _ngcontent-serverapp-c158="" class="product-group__image">
<img _ngcontent-serverapp-c158="" lazyload="" alt="Centrifuge Concentrator" src="images/vacfuge.png">
</div>
<mat-card-content _ngcontent-serverapp-c158="" class="mat-card-content"><br>
<h6 _ngcontent-serverapp-c158="" mat-card-title="" class="mat-card-title product-group__title">Vacuum Centrifuge Concentrator</h6><br>
<div _ngcontent-serverapp-c158="" class="product-group__description">I use this concentrator for DNA pelleting, ensuring accurate and efficient sample preparation.</div>
</mat-card-content>
</mat-card>
</a>
</atlas-fronts-product-group>
<!--item15-->
<atlas-fronts-product-group _ngcontent-serverapp-c160="" class="product-groups__list-item ng-star-inserted" _nghost-serverapp-c158="">
<a _ngcontent-serverapp-c158="" href="" title="Pipettes">
<mat-card _ngcontent-serverapp-c158="" class="mat-card mat-focus-indicator product-group product-group--grey">
<div _ngcontent-serverapp-c158="" class="product-group__image">
<img _ngcontent-serverapp-c158="" lazyload="" alt="Pipettes" src="images/Pipette.png">
</div>
<mat-card-content _ngcontent-serverapp-c158="" class="mat-card-content"><br>
<h6 _ngcontent-serverapp-c158="" mat-card-title="" class="mat-card-title product-group__title">Mechanical & automated pipettes</h6><br>
<div _ngcontent-serverapp-c158="" class="product-group__description">Pipetting is a daily task in my molecular biology lab, and I am proficient with both mechanical and automated pipettes.</div>
</mat-card-content>
</mat-card>
</a>
</atlas-fronts-product-group>
<!--item16-->
<atlas-fronts-product-group _ngcontent-serverapp-c160="" class="product-groups__list-item ng-star-inserted" _nghost-serverapp-c158="">
<a _ngcontent-serverapp-c158="" href="https://animalab.eu/isolators-glove-boxes" title="animal isolator">
<mat-card _ngcontent-serverapp-c158="" class="mat-card mat-focus-indicator product-group product-group--grey">
<div _ngcontent-serverapp-c158="" class="product-group__image">
<img _ngcontent-serverapp-c158="" lazyload="" alt="animal isolator" src="images/Isolator.jpg">
</div>
<mat-card-content _ngcontent-serverapp-c158="" class="mat-card-content"><br>
<h6 _ngcontent-serverapp-c158="" mat-card-title="" class="mat-card-title product-group__title">Animal isolator</h6><br>
<div _ngcontent-serverapp-c158="" class="product-group__description">I employ animal isolators for quality assurance in vaccine development and for studying the pathogenesis of viruses.</div>
</mat-card-content>
</mat-card>
</a>
</atlas-fronts-product-group>
<!--item17-->
<atlas-fronts-product-group _ngcontent-serverapp-c160="" class="product-groups__list-item ng-star-inserted" _nghost-serverapp-c158="">
<a _ngcontent-serverapp-c158="" href="https://www.sartorius.com/en/products/lab-filtration-purification/ultrafiltration-devices" title="Lab Filtration">
<mat-card _ngcontent-serverapp-c158="" class="mat-card mat-focus-indicator product-group product-group--grey">
<div _ngcontent-serverapp-c158="" class="product-group__image">
<img _ngcontent-serverapp-c158="" lazyload="" alt="Lab Filtration" src="images/Lab-Filtration.png">
</div>
<mat-card-content _ngcontent-serverapp-c158="" class="mat-card-content"><br>
<h6 _ngcontent-serverapp-c158="" mat-card-title="" class="mat-card-title product-group__title">Lab Filtration & Ultrafiltration</h6><br>
<div _ngcontent-serverapp-c158="" class="product-group__description"> My work in virology, proteomics, genomics, and vaccinology often involves lab filtration and ultrafiltration techniques.</div>
</mat-card-content>
</mat-card>
</a>
</atlas-fronts-product-group>
<!--item18-->
<atlas-fronts-product-group _ngcontent-serverapp-c160="" class="product-groups__list-item ng-star-inserted" _nghost-serverapp-c158="">
<a _ngcontent-serverapp-c158="" href="https://www.sartorius.com/en/products/weighing/laboratory-balances" title="weighing ">
<mat-card _ngcontent-serverapp-c158="" class="mat-card mat-focus-indicator product-group product-group--grey">
<div _ngcontent-serverapp-c158="" class="product-group__image">
<img _ngcontent-serverapp-c158="" lazyload="" alt="weighing" src="images/ballance.png">
</div>
<mat-card-content _ngcontent-serverapp-c158="" class="mat-card-content"><br>
<h6 _ngcontent-serverapp-c158="" mat-card-title="" class="mat-card-title product-group__title">Laboratory Balance</h6><br>
<div _ngcontent-serverapp-c158="" class="product-group__description">Precision is key in my work, and I regularly use balances capable of measuring small samples with up to 0.01 mg readability.</div>
</mat-card-content>
</mat-card>
</a>
</atlas-fronts-product-group>
<!--item19-->
<atlas-fronts-product-group _ngcontent-serverapp-c160="" class="product-groups__list-item ng-star-inserted" _nghost-serverapp-c158="">
<a _ngcontent-serverapp-c158="" href="https://www.qiagen.com/zh-us/products/discovery-and-translational-research/dna-rna-purification/rna-purification/total-rna/rneasy-kits" title="">
<mat-card _ngcontent-serverapp-c158="" class="mat-card mat-focus-indicator product-group product-group--grey">
<div _ngcontent-serverapp-c158="" class="product-group__image">
<img _ngcontent-serverapp-c158="" lazyload="" alt="RNeasy Kits" src="images/qiaex.jpg">
</div>
<mat-card-content _ngcontent-serverapp-c158="" class="mat-card-content"><br>
<h6 _ngcontent-serverapp-c158="" mat-card-title="" class="mat-card-title product-group__title">RNeasy Kits</h6><br><br>
<div _ngcontent-serverapp-c158="" class="product-group__description"> I use these kits for the purification of RNA, ensuring high-quality results in my research.</div>
</mat-card-content>
</mat-card>
</a>
</atlas-fronts-product-group>
<!--item20-->
<atlas-fronts-product-group _ngcontent-serverapp-c160="" class="product-groups__list-item ng-star-inserted" _nghost-serverapp-c158="">
<a _ngcontent-serverapp-c158="" href="https://www.qiagen.com/zh-us/products/discovery-and-translational-research/dna-rna-purification/dna-purification/genomic-dna/qiaamp-dna-kits" title="qiaamp-dna-kits">
<mat-card _ngcontent-serverapp-c158="" class="mat-card mat-focus-indicator product-group product-group--grey">
<div _ngcontent-serverapp-c158="" class="product-group__image">
<img _ngcontent-serverapp-c158="" lazyload="" alt="qiaamp-dna-kits" src="images/qiadna.jpg">
</div>
<mat-card-content _ngcontent-serverapp-c158="" class="mat-card-content"><br>
<h6 _ngcontent-serverapp-c158="" mat-card-title="" class="mat-card-title product-group__title">QIAamp DNA Kits</h6><br><br> <div _ngcontent-serverapp-c158="" class="product-group__description">These kits are essential for purifying genomic and mitochondrial DNA from tissues, swabs, blood, body fluids, and cells.</div><br><br>
</mat-card-content></mat-card>
</a>
</atlas-fronts-product-group>
<!--item21-->
<atlas-fronts-product-group _ngcontent-serverapp-c160="" class="product-groups__list-item ng-star-inserted" _nghost-serverapp-c158="">
<a _ngcontent-serverapp-c158="" href="https://www.qiagen.com/zh-us/products/discovery-and-translational-research/pcr-qpcr-dpcr/pcr-enzymes-and-kits/one-step-rt-pcr/qiagen-onestep-rt-pcr-kit" title="QIAGEN OneStep RT-PCR Kit">
<mat-card _ngcontent-serverapp-c158="" class="mat-card mat-focus-indicator product-group product-group--grey">
<div _ngcontent-serverapp-c158="" class="product-group__image">
<img _ngcontent-serverapp-c158="" lazyload="" alt="QIAGEN OneStep RT-PCR Kit" src="images/qiaone.jpg">
</div>
<mat-card-content _ngcontent-serverapp-c158="" class="mat-card-content"><br>
<h6 _ngcontent-serverapp-c158="" mat-card-title="" class="mat-card-title product-group__title">QIAGEN OneStep RT-PCR Kit</h6><br><br>
<div _ngcontent-serverapp-c158="" class="product-group__description">My work in genomics frequently involves real-time RT-PCR using this reliable kit.</div>
</mat-card-content>
</mat-card>
</a>
</atlas-fronts-product-group>
<!--item22-->
<atlas-fronts-product-group _ngcontent-serverapp-c160="" class="product-groups__list-item ng-star-inserted" _nghost-serverapp-c158="">
<a _ngcontent-serverapp-c158="" href="https://www.qiagen.com/zh-us/products/discovery-and-translational-research/pcr-qpcr-dpcr/pcr-enzymes-and-kits/end-point-pcr/qiagen-multiplex-pcr-kit" title="QIAGEN Multiplex PCR Kit">
<mat-card _ngcontent-serverapp-c158="" class="mat-card mat-focus-indicator product-group product-group--grey">
<div _ngcontent-serverapp-c158="" class="product-group__image">
<img _ngcontent-serverapp-c158="" lazyload="" alt="QIAGEN Multiplex PCR Kit" src="images/qiam1.jpg">
</div>
<mat-card-content _ngcontent-serverapp-c158="" class="mat-card-content"><br>
<h6 _ngcontent-serverapp-c158="" mat-card-title="" class="mat-card-title product-group__title">QIAGEN Multiplex PCR Kit</h6><br><br>
<div _ngcontent-serverapp-c158="" class="product-group__description">This kit is integral to my work in cDNA synthesis and RNA multiplication in qRT-PCR.</div>
</mat-card-content>
</mat-card>
</a>
</atlas-fronts-product-group>
<!--item23-->
<atlas-fronts-product-group _ngcontent-serverapp-c160="" class="product-groups__list-item ng-star-inserted" _nghost-serverapp-c158="">
<a _ngcontent-serverapp-c158="" href="https://qiagen.com/zh-us/products/discovery-and-translational-research/pcr-qpcr-dpcr/pcr-enzymes-and-kits/end-point-pcr/hotstartaq-dna-polymerase">
<mat-card _ngcontent-serverapp-c158="" class="mat-card mat-focus-indicator product-group product-group--grey">
<div _ngcontent-serverapp-c158="" class="product-group__image">
<img _ngcontent-serverapp-c158="" lazyload="" alt="HotStarTaq DNA Polymerase" src="images/qiahot.jpg">
</div>
<mat-card-content _ngcontent-serverapp-c158="" class="mat-card-content"><br>
<h6 _ngcontent-serverapp-c158="" mat-card-title="" class="mat-card-title product-group__title">HotStarTaq DNA Polymerase</h6><br><br><br>
<div _ngcontent-serverapp-c158="" class="product-group__description"> I use this enzyme for cDNA synthesis, a critical step in genomics research.</div>
</mat-card-content>
</mat-card>
</a>
</atlas-fronts-product-group> <!--item25-->
<atlas-fronts-product-group _ngcontent-serverapp-c160="" class="product-groups__list-item ng-star-inserted" _nghost-serverapp-c158="">
<a _ngcontent-serverapp-c158="" href="https://custombiotech.roche.com/global/en/portfolio/molecular-diagnostics-raw-materials.html">
<mat-card _ngcontent-serverapp-c158="" class="mat-card mat-focus-indicator product-group product-group--grey">
<div _ngcontent-serverapp-c158="" class="product-group__image">
<img _ngcontent-serverapp-c158="" lazyload="" alt="Roche Reagents" src="images/roche.png">
</div>
<mat-card-content _ngcontent-serverapp-c158="" class="mat-card-content"><br>
<h6 _ngcontent-serverapp-c158="" mat-card-title="" class="mat-card-title product-group__title">Roche Reagents for molecular diagnostics</h6>
<div _ngcontent-serverapp-c158="" class="product-group__description">I have extensive experience with Roche Molecular Diagnostics products, giving me valuable insights that enable me to effectively compare and evaluate similar products from other companies, ensuring the best selection of tools and technologies for specific research and diagnostic needs.</div>
</mat-card-content>
</mat-card>
</a>
</atlas-fronts-product-group>
<!--24-->
<atlas-fronts-product-group _ngcontent-serverapp-c160="" class="product-groups__list-item ng-star-inserted" _nghost-serverapp-c158="">
<a _ngcontent-serverapp-c158="" href="https://www.bio-rad.com/en-us/product/readyprep-protein-extraction-kit-total-protein?ID=749eaa83-8fb4-4854-bc8a-84ab01195fb9" title="ReadyPrep™ Protein Extraction Kit (Total Protein)">
<mat-card _ngcontent-serverapp-c158="" class="mat-card mat-focus-indicator product-group product-group--grey">
<div _ngcontent-serverapp-c158="" class="product-group__image">
<img _ngcontent-serverapp-c158="" lazyload="" alt="ReadyPrep™ Protein Extraction Kit (Total Protein)" src="images/prext.png">
</div>
<mat-card-content _ngcontent-serverapp-c158="" class="mat-card-content"><br>
<h6 _ngcontent-serverapp-c158="" mat-card-title="" class="mat-card-title product-group__title">ReadyPrep™ Protein Extraction Kit (Total Protein)</h6><br><br>
<div _ngcontent-serverapp-c158="" class="product-group__description">This kit is vital for preparing total cellular protein extracts from biological samples.</div>
</mat-card-content>
</mat-card>
</a>
</atlas-fronts-product-group>
<!--item25-->
<atlas-fronts-product-group _ngcontent-serverapp-c160="" class="product-groups__list-item ng-star-inserted" _nghost-serverapp-c158="">
<a _ngcontent-serverapp-c158="" href="https://www.idexx.com/en/livestock/resources-support/elisa-technology/">
<mat-card _ngcontent-serverapp-c158="" class="mat-card mat-focus-indicator product-group product-group--grey">
<div _ngcontent-serverapp-c158="" class="product-group__image">
<img _ngcontent-serverapp-c158="" lazyload="" alt="ELISA Tech" src="images/Elisa.jpg">
</div>
<mat-card-content _ngcontent-serverapp-c158="" class="mat-card-content"><br>
<h6 _ngcontent-serverapp-c158="" mat-card-title="" class="mat-card-title product-group__title">ELISA Technology</h6><br><br>
<div _ngcontent-serverapp-c158="" class="product-group__description"> I have extensive experience using various types of ELISA in the laboratory for research and diagnostic purposes, with a strong background in evaluating ELISA kits..</div>
</mat-card-content>
</mat-card>
</a>
</atlas-fronts-product-group>
<!--end-->
</div>
<!--End_of_Main-->
</div>
</div>
</div>
</div>
<script>
function TypeWriting({ target, callback, speed, delay }) {
const originalHTML = target.innerHTML;
let visibleText = originalHTML.replace(/<[^>]+>/g, ''); // Extract visible text by removing HTML tags
let index = 0;
target.innerHTML = ''; // Clear existing content
function type() {
if (index < visibleText.length) {
// Find the next visible character
let char = visibleText.charAt(index);
target.innerHTML += char;
index++;
setTimeout(type, speed);
} else {
// Once typing is complete, restore the original HTML
target.innerHTML = originalHTML;
if (callback) {
setTimeout(callback, delay);
}
}
}
type();
}
function startTypewriting(id, speed, delay, isFirstRound = false) {
const element = document.getElementById(id);
if (element) {
TypeWriting({
target: element,
callback: function() {
console.log(`${id} typewriting finished`);
setTimeout(() => startTypewriting(id, speed, delay, true), 500); // Adjust the delay as needed
},
speed: speed,
delay: delay
});
}
}
document.addEventListener('DOMContentLoaded', () => {
startTypewriting('terminalsidebar', 100, 5000000); // Start typewriting on page load
});
startTypewriting(); // Ensure the function is called to start the typing effect
</script>
</div></li>
</ol>
<script id="quarto-html-after-body" type="application/javascript">
window.document.addEventListener("DOMContentLoaded", function (event) {
const toggleBodyColorMode = (bsSheetEl) => {
const mode = bsSheetEl.getAttribute("data-mode");
const bodyEl = window.document.querySelector("body");
if (mode === "dark") {
bodyEl.classList.add("quarto-dark");
bodyEl.classList.remove("quarto-light");
} else {
bodyEl.classList.add("quarto-light");
bodyEl.classList.remove("quarto-dark");
}
}
const toggleBodyColorPrimary = () => {
const bsSheetEl = window.document.querySelector("link#quarto-bootstrap");
if (bsSheetEl) {
toggleBodyColorMode(bsSheetEl);
}
}
toggleBodyColorPrimary();
const icon = "";
const anchorJS = new window.AnchorJS();
anchorJS.options = {
placement: 'right',
icon: icon
};
anchorJS.add('.anchored');
const isCodeAnnotation = (el) => {
for (const clz of el.classList) {
if (clz.startsWith('code-annotation-')) {
return true;
}
}
return false;
}
const clipboard = new window.ClipboardJS('.code-copy-button', {
text: function(trigger) {
const codeEl = trigger.previousElementSibling.cloneNode(true);
for (const childEl of codeEl.children) {
if (isCodeAnnotation(childEl)) {
childEl.remove();
}
}
return codeEl.innerText;
}
});
clipboard.on('success', function(e) {
// button target
const button = e.trigger;
// don't keep focus
button.blur();
// flash "checked"
button.classList.add('code-copy-button-checked');
var currentTitle = button.getAttribute("title");
button.setAttribute("title", "Copied!");
let tooltip;
if (window.bootstrap) {
button.setAttribute("data-bs-toggle", "tooltip");
button.setAttribute("data-bs-placement", "left");
button.setAttribute("data-bs-title", "Copied!");
tooltip = new bootstrap.Tooltip(button,
{ trigger: "manual",
customClass: "code-copy-button-tooltip",
offset: [0, -8]});
tooltip.show();
}
setTimeout(function() {
if (tooltip) {
tooltip.hide();
button.removeAttribute("data-bs-title");
button.removeAttribute("data-bs-toggle");
button.removeAttribute("data-bs-placement");
}
button.setAttribute("title", currentTitle);
button.classList.remove('code-copy-button-checked');
}, 1000);
// clear code selection
e.clearSelection();
});
var localhostRegex = new RegExp(/^(?:http|https):\/\/localhost\:?[0-9]*\//);
var mailtoRegex = new RegExp(/^mailto:/);
var filterRegex = new RegExp('/' + window.location.host + '/');
var isInternal = (href) => {
return filterRegex.test(href) || localhostRegex.test(href) || mailtoRegex.test(href);
}
// Inspect non-navigation links and adorn them if external
var links = window.document.querySelectorAll('a[href]:not(.nav-link):not(.navbar-brand):not(.toc-action):not(.sidebar-link):not(.sidebar-item-toggle):not(.pagination-link):not(.no-external):not([aria-hidden]):not(.dropdown-item):not(.quarto-navigation-tool)');
for (var i=0; i<links.length; i++) {
const link = links[i];
if (!isInternal(link.href)) {
// undo the damage that might have been done by quarto-nav.js in the case of
// links that we want to consider external
if (link.dataset.originalHref !== undefined) {
link.href = link.dataset.originalHref;
}
}
}
function tippyHover(el, contentFn, onTriggerFn, onUntriggerFn) {
const config = {
allowHTML: true,
maxWidth: 500,
delay: 100,
arrow: false,
appendTo: function(el) {
return el.parentElement;
},
interactive: true,
interactiveBorder: 10,
theme: 'quarto',
placement: 'bottom-start',
};
if (contentFn) {
config.content = contentFn;
}
if (onTriggerFn) {
config.onTrigger = onTriggerFn;
}
if (onUntriggerFn) {
config.onUntrigger = onUntriggerFn;
}
window.tippy(el, config);
}
const noterefs = window.document.querySelectorAll('a[role="doc-noteref"]');
for (var i=0; i<noterefs.length; i++) {
const ref = noterefs[i];
tippyHover(ref, function() {
// use id or data attribute instead here
let href = ref.getAttribute('data-footnote-href') || ref.getAttribute('href');
try { href = new URL(href).hash; } catch {}
const id = href.replace(/^#\/?/, "");
const note = window.document.getElementById(id);
if (note) {
return note.innerHTML;
} else {
return "";
}
});
}
const xrefs = window.document.querySelectorAll('a.quarto-xref');
const processXRef = (id, note) => {
// Strip column container classes
const stripColumnClz = (el) => {
el.classList.remove("page-full", "page-columns");
if (el.children) {
for (const child of el.children) {
stripColumnClz(child);
}
}
}
stripColumnClz(note)
if (id === null || id.startsWith('sec-')) {
// Special case sections, only their first couple elements
const container = document.createElement("div");
if (note.children && note.children.length > 2) {
container.appendChild(note.children[0].cloneNode(true));
for (let i = 1; i < note.children.length; i++) {
const child = note.children[i];
if (child.tagName === "P" && child.innerText === "") {
continue;
} else {
container.appendChild(child.cloneNode(true));
break;
}
}
if (window.Quarto?.typesetMath) {
window.Quarto.typesetMath(container);
}
return container.innerHTML
} else {
if (window.Quarto?.typesetMath) {
window.Quarto.typesetMath(note);
}
return note.innerHTML;
}
} else {
// Remove any anchor links if they are present
const anchorLink = note.querySelector('a.anchorjs-link');
if (anchorLink) {
anchorLink.remove();
}
if (window.Quarto?.typesetMath) {
window.Quarto.typesetMath(note);
}
// TODO in 1.5, we should make sure this works without a callout special case
if (note.classList.contains("callout")) {
return note.outerHTML;
} else {
return note.innerHTML;
}
}
}
for (var i=0; i<xrefs.length; i++) {
const xref = xrefs[i];
tippyHover(xref, undefined, function(instance) {
instance.disable();
let url = xref.getAttribute('href');
let hash = undefined;
if (url.startsWith('#')) {
hash = url;
} else {
try { hash = new URL(url).hash; } catch {}
}
if (hash) {
const id = hash.replace(/^#\/?/, "");
const note = window.document.getElementById(id);
if (note !== null) {
try {
const html = processXRef(id, note.cloneNode(true));
instance.setContent(html);
} finally {
instance.enable();
instance.show();
}
} else {
// See if we can fetch this
fetch(url.split('#')[0])
.then(res => res.text())
.then(html => {
const parser = new DOMParser();
const htmlDoc = parser.parseFromString(html, "text/html");
const note = htmlDoc.getElementById(id);
if (note !== null) {
const html = processXRef(id, note);
instance.setContent(html);
}
}).finally(() => {
instance.enable();
instance.show();
});
}
} else {
// See if we can fetch a full url (with no hash to target)
// This is a special case and we should probably do some content thinning / targeting
fetch(url)
.then(res => res.text())
.then(html => {
const parser = new DOMParser();
const htmlDoc = parser.parseFromString(html, "text/html");
const note = htmlDoc.querySelector('main.content');
if (note !== null) {
// This should only happen for chapter cross references
// (since there is no id in the URL)
// remove the first header
if (note.children.length > 0 && note.children[0].tagName === "HEADER") {
note.children[0].remove();
}
const html = processXRef(null, note);
instance.setContent(html);
}
}).finally(() => {
instance.enable();
instance.show();
});
}
}, function(instance) {
});
}
let selectedAnnoteEl;
const selectorForAnnotation = ( cell, annotation) => {
let cellAttr = 'data-code-cell="' + cell + '"';
let lineAttr = 'data-code-annotation="' + annotation + '"';
const selector = 'span[' + cellAttr + '][' + lineAttr + ']';
return selector;
}
const selectCodeLines = (annoteEl) => {
const doc = window.document;
const targetCell = annoteEl.getAttribute("data-target-cell");
const targetAnnotation = annoteEl.getAttribute("data-target-annotation");
const annoteSpan = window.document.querySelector(selectorForAnnotation(targetCell, targetAnnotation));
const lines = annoteSpan.getAttribute("data-code-lines").split(",");
const lineIds = lines.map((line) => {
return targetCell + "-" + line;
})
let top = null;
let height = null;
let parent = null;
if (lineIds.length > 0) {
//compute the position of the single el (top and bottom and make a div)
const el = window.document.getElementById(lineIds[0]);
top = el.offsetTop;
height = el.offsetHeight;
parent = el.parentElement.parentElement;
if (lineIds.length > 1) {
const lastEl = window.document.getElementById(lineIds[lineIds.length - 1]);
const bottom = lastEl.offsetTop + lastEl.offsetHeight;
height = bottom - top;
}
if (top !== null && height !== null && parent !== null) {
// cook up a div (if necessary) and position it
let div = window.document.getElementById("code-annotation-line-highlight");
if (div === null) {
div = window.document.createElement("div");
div.setAttribute("id", "code-annotation-line-highlight");
div.style.position = 'absolute';
parent.appendChild(div);
}
div.style.top = top - 2 + "px";
div.style.height = height + 4 + "px";
div.style.left = 0;
let gutterDiv = window.document.getElementById("code-annotation-line-highlight-gutter");
if (gutterDiv === null) {
gutterDiv = window.document.createElement("div");
gutterDiv.setAttribute("id", "code-annotation-line-highlight-gutter");
gutterDiv.style.position = 'absolute';
const codeCell = window.document.getElementById(targetCell);
const gutter = codeCell.querySelector('.code-annotation-gutter');
gutter.appendChild(gutterDiv);
}
gutterDiv.style.top = top - 2 + "px";
gutterDiv.style.height = height + 4 + "px";
}
selectedAnnoteEl = annoteEl;
}
};
const unselectCodeLines = () => {
const elementsIds = ["code-annotation-line-highlight", "code-annotation-line-highlight-gutter"];
elementsIds.forEach((elId) => {
const div = window.document.getElementById(elId);
if (div) {
div.remove();
}
});
selectedAnnoteEl = undefined;
};