-
Notifications
You must be signed in to change notification settings - Fork 0
/
experience.html
182 lines (163 loc) · 7.13 KB
/
experience.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
<!DOCTYPE html>
<html lang='en'>
<head>
<meta charset='UTF-8'>
<title>Portfolio Homepage</title>
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
<style>
button {
display: inline-block;
background-color: skyblue;
color: white;
text-align: center;
font-size: 24px;
font-family: Courier;
padding: 10px;
width: 200px;
transition: all 0.5s;
cursor: pointer;
}
button span {
cursor: pointer;
display: inline-block;
position: relative;
transition: 0.5s;
}
button span:after {
content: '\00bb';
position: absolute;
opacity: 0;
top: 0;
right: -20px;
transition: 0.5s;
}
button:hover {
background-color: black;
}
button:hover span {
padding-right: 25px;
}
button:hover span:after {
opacity: 1;
right: 0;
}
</style>
</head>
<body>
<div class="container">
<div class="nav-wrapper">
<div class="left-side">
<div class="nav-link-wrapper">
<a href="index.html">Home</a>
</div>
<div class="nav-link-wrapper active-nav-link">
<a href="experience.html">resume/experience</a>
</div>
<div class="nav-link-wrapper">
<a href="projects.html">Projects</a>
</div>
<div class="nav-link-wrapper">
<a href="art.html">Art portfolio</a>
</div>
</div>
<div class="right-side">
NICOLE LIN
</div>
</div>
</div>
<div class="center1">
<a href="Nicole Lin Resume.pdf" target="_blank"><button type="button">RESUME LINK</button></a>
</div>
<div class="box">
<h2 style="font-family: 'Courier'"><span class="left">DATA ANALYST</span></h2>
<span class="right" style="font-family: 'Courier'">09/2020 - Present</span>
<br>
<p style="font-family: 'Courier'">Columbia Univeristy Medical Center, New York City, NY</p>
<ul style="font-family: 'Courier'">
<li>Identify genetic factors involved
in various forms of hereditary diseases, including neurodevelopmental
disorders, hearing loss, and skeletal disorders</li>
<li>Synthesized current medical data to produce reports and polished presentations,
highlighting findings and recommending changes.</li>
<li>Track molecular causes by integrating various technologies, including genomics,
transcriptomics, and epigenomics</li>
<li>Developed database objects, including tables, views and materialized views using SQL.</li>
<li>Coordinated statistical data analysis, design, and information flow.</li>
<li>Built library of models and reusable knowledge-base assets to produce consistent and streamlined results.</li>
</ul>
<p style="font-family: 'Courier'">Technologies: Python, JupyterNotebook, Conifer, Galaxy, Docker, Git, Bash</p>
</div>
<br><br>
<div class="box">
<h2 style="font-family: 'Courier'"><span class="left">PAID RESEARCH INTERN</span></h2>
<span class="right" style="font-family: 'Courier'">05/2019 - 08/2019</span>
<br>
<p style="font-family: 'Courier'">Georgia Tech Research Institute, Atlanta, GA</p>
<ul style="font-family: 'Courier'">
<li>Developed, prototyped and tested quality, performance and compliance of different components and systems.</li>
<li>Synthesized lead selenide quantum dots and aerosol jet-printed infrared displays</li>
<li>Publication: A Robust Cation-Exchange Route to Stable Infrared-Emitting Chemical-Composition-Gradient Quantum Dots, Nanoscale</li>
</ul>
</div>
<br><br>
<div class="box">
<h2 style="font-family: 'Courier'"><span class="left">RESEARCH INTERN</span></h2>
<span class="right" style="font-family: 'Courier'">01/2019 - 08/2019</span>
<br>
<p style="font-family: 'Courier'">Northern Illinois University, DeKalb, IL</p>
<ul style="font-family: 'Courier'">
<li>Performed anodization of titanium leading to TiO2 for biomedical applications not limited to bone regeneration</li>
<li>Learned the deposition of iron on the surface of TiO2 nanotubes</li>
<li>Publication: Surface Treatment of Titanium by Anodization and Iron Deposition;
Mechanical and Biological Properties, Journal of Materials Research</li>
</ul>
</div>
<br><br>
<div class="box">
<h2 style="font-family: 'Courier'"><span class="left">BIOINFORMATICS SOFTWARE INTERN</span></h2>
<span class="right" style="font-family: 'Courier'">08/2018 - 05/2019</span>
<br>
<p style="font-family: 'Courier'">myGenomics, Atlanta, GA</p>
<ul style="font-family: 'Courier'">
<li>Analyzed the hereditary risk for the development of cancers and diseases such as Parkinson’s, Alzheimer’s,
and Hypocholesterolemia through manipulating and managing data with R, python, and UNIX tools</li>
<li>Maintained database of patient information through mySQL (database management software), constructed entity
relationship diagrams (ER Diagrams), and queried relational databases</li>
<li>Detected mutations through DNA sequencing and fragment analysis with illumina</li>
<li>Manage large dataset collections including analytical results and data quality</li>
<li>Interpreted results of routine tests of DNA extraction</li>
</ul>
<p style="font-family: 'Courier'">Technologies: R, Python, UNIX, illumina</p>
</div>
<br><br>
<div class="box">
<h2 style="font-family: 'Courier'"><span class="left">RESEARCH INTERN</span></h2>
<span class="right" style="font-family: 'Courier'">08/2018 - 01/2019</span>
<br>
<p style="font-family: 'Courier'">Rutgers University, Newark, NJ</p>
<ul style="font-family: 'Courier'">
<li>Researched the 3D topography, mechanical properties, adhesion, chemical informations by functionalizing probe tip,
electrical conductivity, thermal conductivity, electrostatic forces, and magnetic forces of different materials</li>
<li>Performed Atomic Force Microscopy measurements on a soft Polydimethylsiloxane (PDMS) sample and a PDMS-epoxy sample
to acquire their nanomechanical properties</li>
<li>Publication: Rapid Broadband Discrete Nanomechanical Mapping of Soft Samples on Atomic Force Microscope, Nanotechnology</li>
</ul>
<p style="font-family: 'Courier'">Technologies: Atomic Force Microscope (AFM)</p>
</div>
<br><br><br><br><br>
</body>
<script>
const portfolioItems = document.querySelectorAll('.portfolio-item-wrapper');
portfolioItems.forEach(portfolioItem => {
portfolioItem.addEventListener('mouseover', () => {
console.log(portfolioItem.childNodes[1].classList)
portfolioItem.childNodes[1].classList.add('image-blur');
});
portfolioItem.addEventListener('mouseout', () => {
console.log(portfolioItem.childNodes[1].classList)
portfolioItem.childNodes[1].classList.remove('image-blur');
});
});
</script>
</html>