Skip to content

Commit af34ced

Browse files
committed
Updates for 2026
1 parent b711047 commit af34ced

15 files changed

Lines changed: 82 additions & 75 deletions

_includes/about.html

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
<!-- About Section -->
22
<section id="about" class="container content-section text-center">
33
<div class="row">
4-
<div class="col-lg-8 col-lg-offset-2">
4+
<div class="col-lg-8 col-lg-offset text-left">
55
<h2>About Me</h2>
6-
<p>Hello!</p>
7-
<p>I’m a data scientist with an MS in statistics and a commitment for ensuring model appropriateness, validity and performance. In my view, this starts with understanding the question of interest and the data being used to answer it. </p>
8-
<p>In my 5 years working in scientific research, I have honed the ability to holistically understand a specific question within a complex context, write and speak clearly, and use computational tools (Python, R, Docker, Linux and AWS/HPCs) effectively. I bring both a big picture perspective and an eye for the details. </p>
9-
<p>Outside of work, I enjoy cooking fresh veggies, walking and reading.</p>
10-
<p>I'm currently seeking opportunities for my next full time role. </p>
6+
<p>I am a data scientist with hybrid interests in methods for large numeric data, engineering machine learning solutions for these data, and collaborating in diverse teams. My interests in numeric data originated in bioinformatic data while studying statistics at Brown University, and I then followed this path to a Harvard affiliated research institute working with several types of ‘omics data, motivating me to attend graduate school in statistics at Oregon State University. </p>
7+
<p>With an MS in statistics, I continued to Pacific Northwest National Lab in Seattle, WA, where I worked in both Data Science and Software Engineering teams, implementing containerized and deployed workflows using high dimensional numeric data, including a dashboard with on-demand model retraining for a dozen distinct prediction methods, and a data engineering project standardizing multiple disjoint sets of data for deep learning predictions on the combined data.</p>
8+
<p>As a collaborator, I am skilled at understanding and interpreting leadership goals and translating them into a feasible technical solution accomplishable in a timely manner. I prioritize mentoring, sharing knowledge and asking questions. </p>
9+
<p>My primary professional goal is to engineer reliable, precise, well-designed machine learning solutions as a trusted team member in contexts with high-volume streams of numeric data. </p>
1110
</div>
1211
</div>
1312
</section>

_includes/bibliography.html

Lines changed: 15 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,24 @@
11
<!--- Bibliography Section-->
22

33
<section id="publications" class="container content-section">
4-
<div class="row justify-content-center text-center">
5-
<div class="col-lg-8 col-lg-offset-2">
6-
<!---<div class="col-lg-6"> --->
4+
<div class="row justify-content-center text-left">
75
<h2 id="publications">Scientific Publications</h2>
8-
96
</div>
10-
</div>
11-
<bibtex src="../citations_25_papis.bib"></bibtex>
12-
<div class="bibtex_structure">
13-
<div class="group year" extra='ASC number'>
14-
<!---<div class="sort year" extra="DSC number"></div>--->
15-
<div class="templates"></div>
16-
</div>
17-
</div>
7+
<div class="row justify-content-center text-right">
188

19-
<div class="bibtex_template">
20-
<div style="margin-left: 10px; margin-bottom:20px;">
21-
<span class="title" style = "font-style: underline; font-size:large"></span>
22-
<span class="year" style = font-size:large;></span>
23-
<span class="author" max="4" style="font-size:large"></span>
24-
<span class="journal" style="font-style: italic;font-size:large"></span>
25-
<span class="volume" style="font-style: italic; font-size:large"></span>
26-
<span class="number" style="font-style: italic; font-size:large"></span>
27-
<span class="pages"style="font-style: italic; font-size:larger"></span>
28-
<span class="if url" style="margin-left: 20px">
29-
<a class="url" style="color:black; font-size:15px">(view online)</a>
30-
</span>
31-
</div>
32-
</div>
9+
<div class="col-lg-4">
10+
<p>SOME TEXT HERE</p>
3311
</div>
34-
<div id="bibtex_display"></div>
12+
<div class="col-lg-8">
13+
14+
<iframe src="https://drive.google.com/file/d/1viU0dFYqr4Y_Tjf_lTyb3vz77RVoE_IQ/preview" style='width: 100%' id="citations"></iframe>
3515

36-
<!---</div>--->
37-
</div>
16+
</div>
3817
</div>
39-
</section>
18+
19+
</section>
20+
21+
22+
23+
24+

_includes/css/grayscale.css

Lines changed: 25 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -63,11 +63,23 @@ a:focus {
6363

6464
.navbar-custom {
6565
margin-bottom: 0;
66-
border-bottom: 1px solid rgba(255,255,255,.3);
66+
border-bottom: 1px solid #010101;
6767
text-transform: uppercase;
6868
font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
6969
background-color: {{ site.color.primary-dark }};
7070
}
71+
.navbar-custom {
72+
opacity: 0;
73+
pointer-events: none;
74+
transition: opacity 0.4s ease;
75+
/* existing styles stay... */
76+
}
77+
78+
.navbar-custom.top-nav-collapse {
79+
opacity: 1;
80+
pointer-events: auto;
81+
}
82+
7183

7284
.navbar-custom .navbar-brand {
7385
font-weight: 700;
@@ -89,7 +101,7 @@ a:focus {
89101
}
90102

91103
.navbar-custom a {
92-
color: rgb(10, 30, 50);
104+
color: rgb(3, 3, 3);
93105
}
94106

95107
.navbar-custom .nav li.active {
@@ -107,7 +119,7 @@ a:focus {
107119
.navbar-custom .nav li a:focus,
108120
.navbar-custom .nav li a.active {
109121
outline: 0;
110-
background-color: rgba(255,255,255,.3);
122+
background-color: rgba(207,208,209);
111123
}
112124

113125
@media(min-width:767px) {
@@ -127,18 +139,18 @@ a:focus {
127139
}
128140

129141
.navbar-custom.top-nav-collapse {
130-
border-bottom: 1px solid rgba(255,255,255,.3);
142+
border-bottom: 1px solid rgba(207,208,209);
131143
}
132144
}
133145

134146
.intro {
135147
display: table;
136148
width: 100%;
137149
height: auto;
138-
padding: 100px 0;
150+
padding: 1em 4em 20em 8em;
139151
text-align: center;
140-
color: rgb(185, 189, 192);
141-
background: url(".../../headerphoto/IMG_3378.jpg") no-repeat bottom center scroll;
152+
color: rgb(207, 208, 209);
153+
background: url(".../../headerphoto/IMG_7268.jpg") no-repeat bottom center scroll;
142154
background-color: {{ site.color.primary-dark }};
143155
-webkit-background-size: cover;
144156
-moz-background-size: cover;
@@ -159,7 +171,7 @@ a:focus {
159171
}
160172

161173
.brand-heading {
162-
text-align: center;
174+
text-align: right;
163175
}
164176
.intro .intro-body .intro-text {
165177
font-size: 18px;
@@ -533,4 +545,9 @@ body {
533545
&:hover {
534546
transform: scale(1.05);
535547
}
548+
536549
}
550+
551+
552+
553+

_includes/header.html

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,8 @@
55
<!---<div class="container">--->
66

77
<div class="row">
8-
<div class="col-md-8 col-md-offset-2">
8+
<div class="col-md-8 col-md-offset-4">
99
<h1 class="brand-heading">{{ site.title }}</h1>
10-
<!---<p class="intro-text">{{ site.description }}<br> --->
11-
<a href="#about" class="btn btn-circle page-scroll">
1210
<i class="fa fa-angle-double-down animated"></i>
1311
</a>
1412
</div>

_includes/my-gallery.html

Lines changed: 22 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,29 @@
1-
<section id="pastimes" class="container pastimes-section text-center">
1+
<section id="pastimes" class="container pastimes-section justify-content-center">
22
<div class="row justify-content-center">
33
<br>
44
<br>
55
<h2 id="pastimes">Pastimes</h2>
6-
6+
<div class="row justify-content-center">
7+
<div class="col-lg-4">
78
<div class ="image-gallery">
8-
{% assign sorted = site.static_files %}
9-
{% for file in sorted %}
10-
{% if file.path contains include.folder %}
11-
{% if file.extname == '.png' %}
12-
{% assign filenameparts = file.path | split: "/" %}
13-
{% assign filename = filenameparts | last | replace: file.extname,"" %}
14-
<div class="box"><a href="{{ file.path | relative_url }}" title="{{ filename }}">
15-
<img src="{{ site.thumbsurl }}{{file.name }} " alt="{{ filename }}" class="img-gallery" />
16-
</a></div>
17-
{% endif %}
18-
{% endif %}
19-
{% endfor %}
20-
</div>
9+
{% assign sorted = site.static_files %}
10+
{% for file in sorted %}
11+
{% if file.path contains include.folder %}
12+
{% if file.extname == '.png' %}
13+
{% assign filenameparts = file.path | split: "/" %}
14+
{% assign filename = filenameparts | last | replace: file.extname,"" %}
15+
<div class="box"><a href="{{ file.path | relative_url }}" title="{{ filename }}">
16+
<img src="{{ site.thumbsurl }}{{file.name }} " alt="{{ filename }}" class="img-gallery" />
17+
</a></div>
18+
{% endif %}
19+
{% endif %}
20+
{% endfor %}
21+
</div>
22+
</div>
23+
<div class="col-lg-4">
24+
<p>On my own time, I enjoy biking, interacting with fresh greens, and walking.</p>
25+
</div>
26+
</div>
27+
2128
</div>
2229
</section>

_includes/nav.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@
1818
<li>
1919
<a class="page-scroll" href="#about">About</a>
2020
</li>
21-
<li>
22-
<a class="page-scroll" href="#resume">Resume</a>
23-
</li>
2421
<li>
2522
<a class="page-scroll" href="#publications">Publications</a>
2623
</li>
2724
<li>
2825
<a class="page-scroll" href="#pastimes">Pastimes</a>
2926
</li>
27+
<li>
28+
<a class="page-scroll" href="#resume">Resume</a>
29+
</li>
3030
<li>
3131
<a class="page-scroll" href="#contact">Contact</a>
3232
</li>

_includes/resume.html

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
<!--- Resume Section-->
2-
<section id="resume" class="container resume-section text-center">
3-
<div class="row justify-content-center">
4-
<div class="col-lg-8 col-lg-offset-2" >
2+
<section id="resume" class="container resume-section">
3+
<div class="row justify-content-center text-left">
4+
55
<h2 id="resume">Resume</h2>
6-
<!--- <div class="d-flex flex-lg-row"> --->
7-
<!---<div id="resume-ratio-box"> --->
8-
<iframe src="https://drive.google.com/file/d/1TJVjck10_V3kCWGMj6SsZk0QMXOdq9pm/preview" style='width: 100%; height: 90vh' id="resume"></iframe>
9-
10-
11-
<!---</div> --->
12-
<!---</div> --->
6+
</div>
7+
<div class="row justify-content-center text-right"></div>
8+
<div class="col-lg-4 text-right">
9+
<p>SOME TEXT ABT RESUME HERE</p>
10+
</div>
11+
12+
<div class="col-lg-8">
13+
<iframe src="https://drive.google.com/file/d/1BBjCXuxlvFx8rdvYW_ZGahKz9azp8QlA/preview " style='width: 100%; height: auto' id="resume"></iframe>
1314
</div>
1415
</div>
1516
</section>

headerphoto/.DS_Store

0 Bytes
Binary file not shown.

headerphoto/IMG_3378.jpg

-2.1 MB
Binary file not shown.

headerphoto/IMG_7268.jpg

4.87 MB
Loading

0 commit comments

Comments
 (0)