-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
170 lines (151 loc) · 7.03 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio</title>
<link rel="stylesheet" href="css/bootstrap-grid.css" type="text/css">
<link rel="stylesheet" href="css/styles.css" type="text/css">
<link href="https://fonts.googleapis.com/css2?family=Montez&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300&display=swap" rel="stylesheet">
</head>
<body>
<nav>
<ul>
<li><a href="#contact">contact</a></li>
<li><a href="#projects">works</a></li>
<li><a href="#experience">experience</a></li>
<li class="empty"></li>
<li><a href="https://www.linkedin.com/in/daria-kuznetsova-0108/" target="_blank">linkedin</a></li>
<li><a href="http://github.com/DariaK0108" target="_blank">github</a></li>
<li><a href="https://www.flickr.com/photos/daria-scientist" target="_blank">flickr</a></li>
</ul>
</nav>
<header>
<div class="container" id="experience">
<div class="row">
<div class="col-sm">
<h1>
hi, i’m<br />daria
</h1>
<ul>
<li>_Passionate about programming and designing</li>
<li>_Ph.D. in meteorology from University of Toulouse, France</li>
<li>_Master's degree from Moscow State University, Russia</li>
</ul>
<!-- <a href="" class="button">add me on linkedin</a> -->
</div>
<div class="col-sm">
<figure>
<img src="img/daria.jpg" alt="Daria" class="intro-img"/>
<figcaption>In Toulouse, France</figcaption>
</figure>
</div>
</div>
</div>
</header>
<section>
<ul class="skills-list">
<li>01__Data analysis and visualization</li>
<li>02_Web development</li>
<li>03_Creative coding</li>
</ul>
</section>
<!-- projects -->
<!-- project 1 -->
<section class="project blue" id="projects">
<div class="container">
<div class="row">
<div class="col-sm">
<figure>
<img src="img/white-cumulus-clouds-2559484.jpg" alt="Clouds" />
<figcaption class="right-alignment"></figcaption>
</figure>
</div>
<div class="col-sm">
<h2>
Ph.D., specialization "Atmosphere, Ocean, Climate"<br />
Laboratoire d'Aérologie, Observatoire Midi-Pyrenees, UPS - University of Toulouse, France
</h2>
<p>
Worked on the simulation of episodes of the Madden–Julian Oscillation (MJO) in the tropical region
using French atmospheric mesoscale non-hydrostatic model Méso-NH:
<ul>
<li>- Analyzed large datasets (~several Tb)</li>
<li>- Described the large-scale atmospheric circulations and their evolution during the MJO passage</li>
<li>
- Published a scientific paper "The three atmospheric circulations over the Indian Ocean and the Maritime Continent
and their modulation by the passage of the MJO" (JAS, 2019)
</li>
</ul>
</p>
<a href="http://thesesups.ups-tlse.fr/4099" class="button">read more</a>
</div>
</div>
</div>
</section>
<!-- project 2 -->
<section class="project">
<div class="container">
<div class="row">
<div class="col-sm right-alignment">
<h2>
M.Sc., specialization "Fluid and gas dynamics"
<br />Moscow State University, Russia
</h2>
<p>
Investigated convection with an anomalous density-temperature dependence (water at temperatures around 4 C):
<ul>
<li>- Described the sequence of transitions leading to chaotic motions in water layer with the increase of temperature difference at the boundaries</li>
<li>- Published a scientific paper "Transitional modes of penetrative convection in plane layer" (Fluid Dyn. Res., 2012)</li>
</ul>
</p>
<a href="https://doi.org/10.1088/0169-5983/44/3/031410" class="button">read more</a>
</div>
<div class="col-sm">
<figure>
<img src="img/rain-drops-macro-photography-59831.jpg" alt="Water surface" />
<figcaption></figcaption>
</figure>
</div>
</div>
</div>
</section>
<!-- project 3 -->
<section class="project blue">
<div class="container">
<div class="row">
<div class="col-sm">
<figure>
<img src="img/shooting-star-during-nighttime1.jpg" alt="Shooting star during nighttime"/>
<figcaption class="right-alignment"></figcaption>
</figure>
</div>
<div class="col-sm">
<h2>
Project "Determining the outcome of a meteoroid entry into a planet's atmosphere"<br />
</h2>
<p>
<ul>
<li>
- Studied an analytical method of predicting the consequences of collisions of meteoroids with the terrestrial atmosphere
and used this method for real meteorite falls
</li>
<li>- Further developed this method to predict the consequences of meteoroid fall on Mars
</ul>
</p>
<a href="https://doi.org/10.1134/S1028335816060021" class="button">read more</a>
</div>
</div>
</div>
</section>
<footer id="contact">
<h2>
any questions?<br />find me here <br />daria.kuznetsova.aero.obs.mip _at_ gmail.com
</h2>
<p>
<!-- designed & developed by daria k 2019 -->
</p>
</footer>
</body>
</html>