-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
executable file
·104 lines (75 loc) · 3.67 KB
/
Copy pathabout.html
File metadata and controls
executable file
·104 lines (75 loc) · 3.67 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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./styles.css" type="text/css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="./script.js" async ></script>
<title>meteorids</title>
</head>
<body>
<!--Header Section-->
<header>
<!-- Desktop Header-->
<div class="logo">
<p><a href="./index.html">meteorids<span>®</span></a></p>
</div>
<nav class="desktopnav">
<a href="./about.html">About</a>
<a href="./research.html">Research</a>
<a href="./teaching.html">Teaching</a>
<a href="./contact.html">Contact</a>
<!-- <a href="#">Misc</a> -->
</nav>
<!-- Mobile Header-->
<nav class="mobilenav">
<a id="mobilelogo" href="./index.html">meteorids<span>®</span></a>
<a href="javascript:void(0);" class="icon" onclick="toggleNav()">
<i class="fa fa-bars"></i>
</a>
<div id="mobilelinks">
<a href="./about.html">About</a>
<a href="./research.html">Research</a>
<a href="./teaching.html">Teaching</a>
<a href="./contact.html">Contact</a>
</div>
</nav>
</header>
<!--Main Section-->
<div class="aboutmain">
<div class="abouttext">
<div class="abouttitle">
<img src="./resources/images/about.png" alt="">
</div>
<p> A USA [NYC/DC] based Physicist with a Ph.D.<br><br>
My name is Milos Sztipanov, and I have a background in both <br id="del">
research and academic teaching. My filed of expertise is radiative transfer. <br id="del">
I am a physical scientist working for NOAA (National Oceanic and <br id="del">
Atmospheric Administration), working to improve the radiation scheme <br id="del">
in Unified Forecast System and its applications. <br id="del">
I also hold a position as a Research Associate at the University of Maryland, <br id="del">
and collaborate with international and interagency <br id="del">
(NASA, Japanese meterological Agency, Norwegian Institute for Air Research) scientists.<br id="del">
My previous research topics included radiative transfer, <br id="del">
atmospheric physics, biophysics and sequence aligning <br id="del">
algorithms. <br><br>
After completing my B.Sc., I specialized in radiation transfer in the atmosphere, <br id="del">
using theoretical and computational tools such as coding, high-performance computing, <br id="del">
and machine learning. <br id="del">
I have also taught a range of courses, including General Physics, Mechanics, <br id="del">
Electromagnetism, Statistics, and Physics Laboratory for Scientists. <br id="del">
<br>
For more details feel free to download my CV. <br id="del">
</p> <br>
<a class="resume" href="./resources/documents/milos_cv.pdf">Download Resume PDF</a>
</div>
<div class="aboutimg">
<img src="./resources/images/milos.jpg">
</div>
</div>
<!--Footer Section-->
<footer>
<p id="year"></p>
</footer>
</body>
</html>