-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1205 lines (923 loc) · 39.9 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<!--------------------------------------------- Title and Content --------------------------------------------->
<!------------------------------------------------------------------------------------------------------------->
<meta name="generator" content="Hugo 0.74.3" />
<title>Salih Kilicli</title>
<meta name="description" content="Portfolio and personal blog of Salih Kilicli." />
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="assets/css/bootstrap.min.css" />
<link rel="stylesheet" href="assets/css/layouts/main.css" />
<link rel="stylesheet" href="assets/css/style.css" />
<link rel="stylesheet" href="assets/css/navigators/navbar.css" />
<link href="https://fonts.googleapis.com/css2?family=Muli:wght@300;400;500;600" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.min.css" />
<link rel="icon" type="image/svg" href="assets/images/favicon1.png" />
<link rel="stylesheet" href="assets/css/style.css"/>
<link rel="stylesheet" href="assets/css/sections/home.css" />
<link rel="stylesheet" href="assets/css/sections/about.css" />
<link rel="stylesheet" href="assets/css/sections/skills.css" />
<link rel="stylesheet" href="assets/css/sections/experiences.css" />
<link rel="stylesheet" href="assets/css/sections/projects.css" />
<link rel="stylesheet" href="assets/css/sections/recent-posts.css" />
<link rel="stylesheet" href="assets/css/sections/achievements.css" />
<script type="application/javascript">
var doNotTrack = false;
if (!doNotTrack) {
window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date;
ga('create', 'UA-XXXXXXXXX-X', 'auto');
ga('send', 'pageview');
}
</script>
<script async src='https://www.google-analytics.com/analytics.js'></script>
<!--------------------------------------------- Navigation Bar --------------------------------------------->
<!---------------------------------------------------------------------------------------------------------->
</head>
<body data-spy="scroll" data-target="#top-navbar" data-offset="100">
<nav class="navbar navbar-expand-xl top-navbar initial-navbar" id="top-navbar">
<div class="container">
<a class="navbar-brand" href="https://www.github.com/salihkilicli">
<img src="assets/images/inverted-github.png" id="logo2" style="width:31px;height:31px">
~ git > master<div id="border"></div>
</a>
<button
class="navbar-toggler navbar-dark"
id="navbar-toggler"
type="button"
data-toggle="collapse"
data-target="#top-nav-items"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="top-nav-items">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="index.html#home"><i class='fas fa-chess-board'></i></i> Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="index.html#about"><i class='fas fa-chess-pawn '></i> About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="index.html#skills"><i class='fas fa-chess-knight'></i> Skills</a>
</li>
<li class="nav-item">
<a class="nav-link" href="index.html#experiences"><i class='fas fa-chess-queen'></i> Experience</a>
</li>
<li class="nav-item">
<a class="nav-link" href="index.html#projects"><i class='fas fa-chess'></i> Projects</a>
</li>
<!--<li class="nav-item">
<a class="nav-link" href="index.html#recent-posts">Recent Posts</a>
</li>-->
<li class="nav-item">
<a class="nav-link" href="index.html#achievements"><i class='fas fa-chess-king'></i> Achievements</a>
</li>
<div class="dropdown-divider" id="top-navbar-divider"></div>
<li class="nav-item">
<a class="nav-link" id="blog-link" href="posts.html"><i class='fas fa-chess-bishop'></i> Posts</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://salihkilicli.gitbook.io/notes/"><i class='fas fa-square-full'></i> Notes</a>
</li>
</ul>
</div>
</div>
<img src="assets/images/main-logo2.svg" class="d-none" id="main-logo2">
<img src="assets/images/inverted-logo2.png" class="d-none" id="inverted-logo2">
</nav>
<!--------------------------------------------- Greeting and Main Page --------------------------------------------->
<!------------------------------------------------------------------------------------------------------------------>
<!-- particles.js container -->
<div class="container-fluid home" id="home">
<div class="background container-fluid" id="particles-js" style="background-image: url('images/background.jpg');">
<!--- Background image via JESHOOTS.COM [https://unsplash.com/photos/fzOITuS1DIQ] (copyright-free) --->
</div>
<div class="container content text-center">
<img src="images/avatar4.png" class="rounded-circle mx-auto d-block img-fluid"/>
<!-- You can create your own avatar using https://avatarmaker.com/ -->
<h1 class="greeting"> Greetings!</h1>
<div class="typing-carousel">
<span id="ityped" class="ityped"></span>
<span class="ityped-cursor"></span>
<ul id="typing-carousel-data">
<li>I am Salih!</li>
<li>Applied Mathematician</li>
<li>Data Scientist</li>
<li>Deep Learning Enthusiast!</li>
</ul>
</div>
<a href="index.html#about" class="scroll_down"><i class="arrow bounce fa fa-chevron-down"></i></a>
</div>
</div>
<!--------------------------------------------- About Section --------------------------------------------->
<!--------------------------------------------------------------------------------------------------------->
<div class="container-fluid section-holder d-flex bg-white">
<div class="container anchor p-lg-5 about-section" id="about">
<div class="row pt-sm-2 pt-md-4 align-self-center">
<div class="col-sm-6">
<h3 class="p-1">Salih Kilicli</h3>
<h5 class="p-1">
M.Sc. Applied & Computational Mathematics
<br>(emphasis on Statistics & Data Science)
<br>
<br>Data Scientist Intern
@ <a href="https://www.seeloz.com/">Seeloz</a>
</h5>
<p class="p-1 text-justify"> I am an Applied Mathematician & Data Scientist. I am a curious person, always seeking to gain more knowledge and further hone my skills. I love Mathematics, Statistics, and Data Science/AI. Recently, I decided to convert my Ph.D. to MS @ Texas A&M University to pursue a career in Data Science and follow my passion in AI.<br>
<br> I have a 4.0 GPA on all Ph.D. level statistics courses and an Applied Statistics Certificate as well as a Computational Sciences Certificate from Texas A&M. Relevant coursework & programming languages used are: </p>
<!-- Tabs links -->
<div class="tab">
<button class="tablinks" onclick="openCity(event, 'Python')" id="defaultOpen">Python</button>
<button class="tablinks" onclick="openCity(event, 'R')">R</button>
<button class="tablinks" onclick="openCity(event, 'MATLAB')">MATLAB</button>
<button class="tablinks" onclick="openCity(event, 'All')">All</button>
</div>
<!-- Tabs content -->
<div id="Python" class="tabcontent">
<ul><li> Mathematical Algorithms & Their Applications (Python) </li>
<li> Statistical Aspects of Machine Learning I (Python) </li>
<li> Databases and Computational Tools Used in Big Data (Python, R, C/C++, No/SQL) </li>
</ul>
</div>
<div id="R" class="tabcontent">
<ul><li> Regresional Analysis (R) </li>
<li> Time Series Analysis (R) </li>
<li> Applied Biostatistics & Data Analyis (R) </li>
<li> Databases and Computational Tools Used in Big Data (Python, R, C/C++, No/SQL) </li>
</ul>
</div>
<div id="MATLAB" class="tabcontent">
<ul><li> Mathematical Modelling (MATLAB) </li>
<li> Numerical Analysis (MATLAB) </li>
<li> Numerical Methods in PDEs - FEM (MATLAB) </li>
</ul>
</div>
<div id="All" class="tabcontent">
<ul><li> Mathematical Algorithms & Their Applications (Python) </li>
<li> Statistical Aspects of Machine Learning I (Python) </li>
<li> Regresional Analysis (R) </li>
<li> Time Series Analysis (R) </li>
<li> Applied Biostatistics & Data Analysis (R) </li>
<li> Mathematical Modelling (MATLAB) </li>
<li> Numerical Analysis (MATLAB) </li>
<li> Numerical Methods in PDEs - FEM (MATLAB) </li>
<li> Databases and Computational Tools Used in Big Data (Python, R, C/C++, No/SQL) </li>
</ul>
</div>
<br>
<div class="text-container ml-auto">
<ul class="social-link d-flex">
<li>
<a href="mailto:mrsalihkilicli@gmail.com" target="/"><i class="fa fa-envelope-square"></i></a>
</li>
<li>
<a href="https://www.github.com/salihkilicli" target="/"><i class="fab fa-github-square"></i></a>
</li>
<li>
<a href="https://medium.com/@math3mantic" target="/"><i class="fab fa-medium"></i></a>
</li>
<li>
<a href="https://www.linkedin.com/in/salihkilicli/" target="/"><i class="fab fa-linkedin"></i></a>
</li>
<li>
<a href="https://twitter.com/math3mantic_" target="/"><i class="fab fa-twitter-square"></i></a>
</li>
</ul>
</div>
<a href="files/resumetex.pdf" target="#"
><button class="btn btn-dark">Tex Resume</button></a>
<a href="https://docs.google.com/document/d/1963UKJ9Nf_59HDKpltnhmTcUxd33oKk4upkKSmhc4kA/edit?usp=sharing" target="#"
><button class="btn btn-dark">Web Resume</button></a>
</div>
<!---------------------------------------------------------------->
<!----------------------- Progress Bars -------------------------->
<div class="col-sm-6 pt-5 pl-md-4 pl-sm-3 pt-sm-0">
<div class="row">
<div class="col-6 col-lg-4 p-2">
<div class="circular-progress blue">
<span class="circular-progress-left">
<span
class="circular-progress-bar circular-progress-percentage-85"
></span>
</span>
<span class="circular-progress-right">
<span
class="circular-progress-bar"
></span>
</span>
<div class="circular-progress-value">Leadership</div>
</div>
</div>
<div class="col-6 col-lg-4 p-2">
<div class="circular-progress yellow">
<span class="circular-progress-left">
<span
class="circular-progress-bar circular-progress-percentage-90"
></span>
</span>
<span class="circular-progress-right">
<span
class="circular-progress-bar"
></span>
</span>
<div class="circular-progress-value">Team Work</div>
</div>
</div>
<div class="col-6 col-lg-4 p-2">
<div class="circular-progress pink">
<span class="circular-progress-left">
<span
class="circular-progress-bar circular-progress-percentage-95"
></span>
</span>
<span class="circular-progress-right">
<span
class="circular-progress-bar"
></span>
</span>
<div class="circular-progress-value">Communication</div>
</div>
</div>
<div class="col-6 col-lg-4 p-2">
<div class="circular-progress green">
<span class="circular-progress-left">
<span
class="circular-progress-bar circular-progress-percentage-90"
></span>
</span>
<span class="circular-progress-right">
<span
class="circular-progress-bar"
></span>
</span>
<div class="circular-progress-value">Work Ethic</div>
</div>
</div>
<div class="col-6 col-lg-4 p-2">
<div class="circular-progress sky">
<span class="circular-progress-left">
<span
class="circular-progress-bar circular-progress-percentage-95"
></span>
</span>
<span class="circular-progress-right">
<span
class="circular-progress-bar"
></span>
</span>
<div class="circular-progress-value">Adaptability</div>
</div>
</div>
<div class="col-6 col-lg-4 p-2">
<div class="circular-progress orange">
<span class="circular-progress-left">
<span
class="circular-progress-bar circular-progress-percentage-90"
></span>
</span>
<span class="circular-progress-right">
<span
class="circular-progress-bar"
></span>
</span>
<div class="circular-progress-value">Problem Solving</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--------------------------------------------- Skills Section --------------------------------------------->
<!---------------------------------------------------------------------------------------------------------->
<div class="container-fluid section-holder d-flex bg-dimmed">
<div class="container-fluid anchor pb-5 skills-section" id="skills">
<h1 class="text-center">Skills</h1>
<div class="container d-flex-block">
<div class="row" id="primary-skills">
<div class="col-xs-12 col-sm-6 col-lg-4 pt-2">
<a class="skill-card-link" href="https://wiki2.org/en/Mathematical_model">
<div class="card">
<div class="card-head d-flex">
<img class="card-img-xs" src="images/skills/mm.png" alt="Math Modelling" />
<h5 class="card-title">Mathematical Modelling</h5>
</div>
<div class="card-body">
<p class="card-text">The majority of my graduate studies was spent on modelling mathematical problems involving PDEs and ODEs using numerical methods.
Taugh freshman engineering students how to model Calculus I-II problems using Python's Math, SymPy & NumPy libraries.</p>
</div>
</div>
</a>
</div>
<div class="col-xs-12 col-sm-6 col-lg-4 pt-2">
<a class="skill-card-link" href="https://wiki2.org/en/Exploratory_data_analysis">
<div class="card">
<div class="card-head d-flex">
<img class="card-img-xs" src="images/skills/eda.png" alt="EDA" />
<h5 class="card-title">Exploratory Data Analysis</h5>
</div>
<div class="card-body">
<p class="card-text">Analyzed various datasets using R during Ph.D.-level Statistics courses: Regressional Analysis,
Time Series Analysis, as well as Applied Biostatistics & Data Analysis @ TAMU.
Spent most of my spare time working on various datasets in Kaggle and deploying Machine Learning models using Python.</p>
</div>
</div>
</a>
</div>
<div class="col-xs-12 col-sm-6 col-lg-4 pt-2">
<a class="skill-card-link" href="https://wiki2.org/en/Artificial_intelligence">
<div class="card">
<div class="card-head d-flex">
<img class="card-img-xs" src="images/skills/mldl.png" alt="ML&DL" />
<h5 class="card-title">Machine & Deep Learning</h5>
</div>
<div class="card-body">
<p class="card-text">Completed Coursera's Machine Learning course (by Stanford University) and Deep Learning Specialization (by deeplearning.ai),
as well as Udemy's Python for Data Science and Machine Learning Bootcamp. Finished 13/15 mini-courses in Kaggle, and in progress with
Coursera's Applied Machine Learning with Python course (by UMICH).</p>
</div>
</div>
</a>
</div>
<div class="col-xs-12 col-sm-6 col-lg-4 pt-2">
<a class="skill-card-link" href="https://www.python.com/">
<div class="card">
<div class="card-head d-flex">
<img class="card-img-xs" src="images/skills/python.bmp" alt="Python" />
<h5 class="card-title">Python</h5>
</div>
<div class="card-body">
<p class="card-text">Taught Calculus I-II classes using Python. Wrote most of the Data Science / ML / DL and Algorithms codes in Python. Highly experienced in Jupyter Notebook, Google Colab & Visual Studio Code platforms.
Worked on SciPy environment (SymPy, NumPy, Pandas, matplotlib etc.), scikit-learn, Tensorflow 2.0 & Keras. I enjoy challenging myself on programming problems
@ EulerProject, HackerRank, and LeetCode.</p>
</div>
</div>
</a>
</div>
<div class="col-xs-12 col-sm-6 col-lg-4 pt-2">
<a class="skill-card-link" href="https://www.r-project.org/">
<div class="card">
<div class="card-head d-flex">
<img class="card-img-xs" src="images/skills/r.png" alt="R" />
<h5 class="card-title">R</h5>
</div>
<div class="card-body">
<p class="card-text">Used R Studio and R markdown for multiple Ph.D.-level Statistics courses for regression, time series, and data analysis.</p>
</div>
</div>
</a>
</div>
<div class="col-xs-12 col-sm-6 col-lg-4 pt-2">
<a class="skill-card-link" href="https://wiki2.org/en/SQL">
<div class="card">
<div class="card-head d-flex">
<img class="card-img-xs" src="images/skills/sql.png" alt="SQL" />
<h5 class="card-title">SQL</h5>
</div>
<div class="card-body">
<p class="card-text">Used SQL for data wrangling and management during Ph.D.-level Statistics course - Databases and Computational Tools Used in Big Data.
Learned writing basic to advanced SQL queries using google.cloud library in Python from Kaggle, and MySQL from Udemy.</p>
</div>
</div>
</a>
</div>
<div class="col-xs-12 col-sm-6 col-lg-4 pt-2">
<a class="skill-card-link" href="https://www.mathworks.com/products/matlab.html">
<div class="card">
<div class="card-head d-flex">
<img class="card-img-xs" src="images/skills/matlab.png" alt="MATLAB" />
<h5 class="card-title">MATLAB</h5>
</div>
<div class="card-body">
<p class="card-text">Taught Calculus classes in MATLAB. Most of the projects and homework in graduate studies were written in MATLAB language.
Experienced with more than 10,000 lines of code, mostly for numerical analysis and computational mathematics.</p>
</div>
</div>
</a>
</div>
<div class="col-xs-12 col-sm-6 col-lg-4 pt-2">
<a class="skill-card-link" href="index.html#">
<div class="card">
<div class="card-head d-flex">
<img class="card-img-xs" src="images/skills/c++.png" alt="C++" />
<h5 class="card-title">C++</h5>
</div>
<div class="card-body">
<p class="card-text">Familiar with basic C/C++ programming. Used it for compiler optimization, vectorization and profiling problems during
Ph.D.-level Statistics course - Databases and Computational Tools Used in Big Data.</p>
</div>
</div>
</a>
</div>
<div class="col-xs-12 col-sm-6 col-lg-4 pt-2">
<a class="skill-card-link" href="https://www.linux.org/">
<div class="card">
<div class="card-head d-flex">
<img class="card-img-xs" src="images/skills/linux.png" alt="Linux" />
<h5 class="card-title">Linux</h5>
</div>
<div class="card-body">
<p class="card-text">Used for various projects and high performance computing systems. Capable of writing bash/shell scripts.</p>
</div>
</div>
</a>
</div>
</div>
</div>
</div>
</div>
<!--------------------------------------------- Experience Section --------------------------------------------->
<!-------------------------------------------------------------------------------------------------------------->
<div class="container-fluid section-holder d-flex bg-white">
<div class="container-fluid anchor pb-5 experiences-section" id="experiences">
<h1 class="text-center">Experience</h1>
<!--- Timeline --->
<div class="container timeline text-justify">
<!--- Experience 1 --->
<div class="row align-items-center d-flex">
<div class="col-1 col-lg-2 text-center vertical-line d-inline-flex justify-content-center"><div class="circle font-weight-bold">1</div></div>
<div class="col-10 col-lg-8">
<div class="experience-entry-heading">
<h5><a href="https://www.tamu.edu">Texas A&M University (TAMU)</a></h5>
<p class="text-muted">
Jun 2018 - Present,
College Station, TX
</p>
<p>Texas A&M University's Mathematics Department was <a href="http://www.shanghairanking.com/subjectmathematics2015.html">ranked</a> 14<sup>th</sup> in the world the year I was accepted to Ph.D. program.</p>
</div>
<div class="positions">
<h6 class="designation">Graduate Teaching Assistant</h6>
<p class="text-muted">Aug 2018 - Dec 2020 </p>
<ul class="justify-content-around">
<li>Grader for Ph.D. level Introduction to Ordinary & Partial Differential Equations class (MATH 611)</li>
<li>Provided solutions to homework problems and graded students' work</li>
<li>Taught Calculus I-II (MATH 141/142) as well as how to model calculus problems in Python, and MATLAB to engineering students</li>
<li>Taught, graded quizzes and programming assignments, proctored and graded exams, and provided office hours</li>
</ul>
</div>
</div>
</div>
<!--- Experience 1 --->
<div class="row horizontal-line">
<div class="col-1 col-lg-2 timeline-side-div"><div class="corner"></div></div>
<div class="col-10 col-lg-8"><hr /></div>
<div class="col-1 col-lg-2 timeline-side-div"><div class="corner"></div></div>
</div>
<!--
<div class="row align-items-center justify-content-end d-flex">
<div class="col-10 col-lg-8">
<div class="experience-entry-heading">
<h5></h5>
<h6><a href="https://www.preexample.com"></a></h6>
<p class="text-muted">
</p>
</div>
<p></p>
<h6 class="text-muted"></h6>
<ul class="justify-content-around">
<li></li>
<li></li>
<li></li>
</ul>
</div>
<div class="col-1 col-lg-2 text-center vertical-line d-inline-flex justify-content-center"><div class="circle font-weight-bold">2</div></div>
</div>--->
<!-- Experience 2
<div class="row horizontal-line">
<div class="col-1 col-lg-2 timeline-side-div">
<div class="corner"></div>
</div>
<h6 class="designation">Intern Data Scientist</h6>
<p class="text-muted">Feb 2021 - May 2021 </p>
<ul class="justify-content-around">
<li>Grader for Ph.D. level Introduction to Ordinary & Partial Differential Equations class (MATH 611)</li>
<li>Provided solutions to homework problems and graded students' work</li>
<li>Taught Calculus I-II (MATH 141/142) as well as how to model calculus problems in Python, and MATLAB to engineering students</li>
<li>Taught, graded quizzes and programming assignments, proctored and graded exams, and provided office hours</li>
</ul>
<div class="col-10 col-lg-8">
<hr />
</div>
<div class="col-1 col-lg-2 timeline-side-div">
<div class="corner"></div>
</div>
</div>
<div class="row align-items-center d-flex">
<div class="col-1 col-lg-2 text-center vertical-line d-inline-flex justify-content-center">
<div class="circle font-weight-bold">3</div>
</div>
</div>-->
</div>
</div>
</div>
<!--------------------------------------------- Experience Section --------------------------------------------->
<!-------------------------------------------------------------------------------------------------------------->
<div class="container-fluid section-holder d-flex bg-dimmed">
<div class="container-fluid anchor pb-5 projects-section" id="projects">
<h1 class="text-center">Projects</h1>
<div class="container ml-auto text-center">
<div class="btn-group flex-wrap" role="group" id="project-filter-buttons">
<button type="button" class="btn btn-dark" data-filter="all">
All
</button>
<button type="button" class="btn btn-dark" data-filter="professional">
Exploratory Data Analysis
</button>
<button type="button" class="btn btn-dark" data-filter="professional">
Machine Learning
</button>
<button type="button" class="btn btn-dark" data-filter="professional">
Deep Learning
</button>
<button type="button" class="btn btn-dark" data-filter="hobby">
Hobby
</button>
</div>
</div>
<div class="container filtr-projects">
<div class="row" id="project-card-holder">
<!--- <div
class="col-sm-12 col-md-6 col-lg-4 p-2 filtr-item"
data-category='all, professional,kubernetes,cloud'
>
<div class="card mt-1">
<div class="card">
<a class="card-header" href="https://github.com/kubernetes/kubernetes">
<div>
<div class="d-flex">
<img class="card-img-xs" src="images/projects/kubernetes.png" alt="Kubernetes" />
<h5 class="card-title mb-0">Kubernetes</h5>
</div>
<div class="sub-title">
<span>Contributor</span>
<span>March 2018 - Present</span>
</div>
</div>
</a>
<div class="card-body text-justify pt-1 pb-1">
<p>Production-Grade Container Scheduling and Management.</p>
<span class="float-right">
<a
class="github-button-inactive"
href="https://github.com/kubernetes/kubernetes"
data-icon="octicon-standard"
data-show-count="true"
aria-label="Star Kubernetes"
>Star</a
>
</span>
</div>
</div>
</div>
</div>
<div
class="col-sm-12 col-md-6 col-lg-4 p-2 filtr-item"
data-category='all, professional,machine-learning,academic'
>
<div class="card mt-1">
<div class="card">
<a class="card-header" href="https://github.com/tensorflow/tensorflow">
<div>
<div class="d-flex">
<img class="card-img-xs" src="images/projects/tensorflow.png" alt="Tensorflow" />
<h5 class="card-title mb-0">Tensorflow</h5>
</div>
<div class="sub-title">
<span>Developer</span>
<span>Jun 2018 - Present</span>
</div>
</div>
</a>
<div class="card-body text-justify pt-1 pb-1">
<p>An Open Source Machine Learning Framework for Everyone.</p>
<span class="float-right">
<a
class="github-button-inactive"
href="https://github.com/tensorflow/tensorflow"
data-icon="octicon-standard"
data-show-count="true"
aria-label="Star Tensorflow"
>Star</a
>
</span>
</div>
</div>
</div>
</div>
<div
class="col-sm-12 col-md-6 col-lg-4 p-2 filtr-item"
data-category='all, academic,iot'
>
<div class="card mt-1">
<div class="card">
<a class="card-header" href="https://www.example.com">
<div>
<div class="d-flex">
<h5 class="card-title mb-0">A sample academic paper</h5>
</div>
<div class="sub-title">
<span>Team Lead</span>
<span>Jan 2017 - Nov 2017</span>
</div>
</div>
</a>
<div class="card-body text-justify pt-1 pb-1">
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Sapiente eius reprehenderit animi suscipit autem eligendi esse amet aliquid error eum. Accusantium distinctio soluta aliquid quas placeat modi suscipit eligendi nisi.</p>
<span class="float-right">
<a
class="btn btn-outline-info btn-sm mb-2"
href="https://www.example.com"
target="#"
>Details</a
>
</span>
</div>
</div>
</div>
</div>
<div
class="col-sm-12 col-md-6 col-lg-4 p-2 filtr-item"
data-category='all, hobby,fun'
>
<div class="card mt-1">
<div class="card">
<a class="card-header" href="https://github.com/kelseyhightower/nocode">
<div>
<div class="d-flex">
<img class="card-img-xs" src="images/projects/no-code.png" alt="Nocode" />
<h5 class="card-title mb-0">Nocode</h5>
</div>
<div class="sub-title">
<span>Nothing</span>
<span>Oct 2019 - Dec 2019</span>
</div>
</div>
</a>
<div class="card-body text-justify pt-1 pb-1">
<p>The best way to write secure and reliable applications. Write nothing; deploy nowhere.</p>
<span class="float-right">
<a
class="github-button-inactive"
href="https://github.com/kelseyhightower/nocode"
data-icon="octicon-standard"
data-show-count="true"
aria-label="Star Nocode"
>Star</a
>
</span>
</div>
</div>
</div>
</div>
<div
class="col-sm-12 col-md-6 col-lg-4 p-2 filtr-item"
data-category='all, hobby,hugo,theme,professional'
>
<div class="card mt-1">
<div class="card">
<a class="card-header" href="https://github.com/hossainemruz/toha">
<div>
<div class="d-flex">
<img class="card-img-xs" src="images/projects/toha.png" alt="Toha" />
<h5 class="card-title mb-0">Toha</h5>
</div>
<div class="sub-title">
<span>Owner</span>
<span>Jun 2019 - Present</span>
</div>
</div>
</a>
<div class="card-body text-justify pt-1 pb-1">
<p>A Hugo theme for personal portfolio.</p>
<span class="float-right">
<a
class="github-button-inactive"
href="https://github.com/hossainemruz/toha"
data-icon="octicon-standard"
data-show-count="true"
aria-label="Star Toha"
>Star</a
>
</span>
</div>
</div>
</div>
</div>--->
</div>
</div>
</div>
</div>
<!---<div class="container-fluid section-holder d-flex bg-white">
<div class="container-fluid anchor pb-5 recent-posts-section" id="recent-posts">
<h1 class="text-center">Recent Posts</h1>
<div class="container">
<div class="row" id="recent-post-cards">
<div class="col-lg-4 col-md-6 pt-2 post-card">
<a href="post/markdown-syntax/index.html" class="post-card-link">
<div class="card">
<div class="card-head">
<img class="card-img-top" src='assets/images/default-hero.jpg'
alt="Card image cap"
/>
</div>
<div class="card-body">
<h5 class="card-title">Markdown Syntax Guide</h5>
<p class="card-text post-summary"> <p>This article offers a sample of basic Markdown syntax that can be used in Hugo content files, also it shows whether basic HTML elements are decorated with CSS in a Hugo theme.</p></p>
</div>
<div class="card-footer">
<span class="float-left">March 11, 2019</span>
<a href="post/markdown-syntax/index.html" class="float-right btn btn-outline-info btn-sm">Read</a>
</div>
</div>
</a>
</div>
<div class="col-lg-4 col-md-6 pt-2 post-card">
<a href="post/rich-content/index.html" class="post-card-link">
<div class="card">
<div class="card-head">
<img class="card-img-top" src='assets/images/default-hero.jpg'
alt="Card image cap"
/>
</div>
<div class="card-body">
<h5 class="card-title">Rich Content</h5>
<p class="card-text post-summary"> <p>Hugo ships with several <a href="https://gohugo.io/content-management/shortcodes/#use-hugo-s-built-in-shortcodes">Built-in Shortcodes</a> for rich content, along with a <a href="https://gohugo.io/about/hugo-and-gdpr/">Privacy Config</a> and a set of Simple Shortcodes that enable static and no-JS versions of various social media embeds.</p></p>
</div>
<div class="card-footer">
<span class="float-left">March 10, 2019</span>
<a href="post/rich-content/index.html" class="float-right btn btn-outline-info btn-sm">Read</a>
</div>
</div>
</a>
</div>