-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
executable file
·83 lines (81 loc) · 3.91 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="styles.css">
<title>My Online CV</title>
</head>
<body>
<header>
<h1>Lauren Shriver</h1>
<address>
Email: [email protected]
<br />
LinkedIn: <a href="https://www.linkedin.com/in/lshriver/">Profile</a>
</address>
</header>
<main>
<h2>Professional Summary</h2>
<p>
Lauren holds a Master of Science in Computational Biology from the College of William and Mary and a Bachelor of Science in Neuroscience, Psychology, and Chemistry from Christopher Newport University. She is proficient in MATLAB, with a growing expertise in Python. Lauren aspires to apply her educational background and coding skills to a role that values creative problem-solving. Her interests lie primarily in data science and quantum computing, with a specific focus on geometric algebra and the Kuramoto model.
</p>
<article id="education">
<h2>Education</h2>
<ul>
<li>Master of Science in Computational Biology, College of William and Mary, Jan 2016 - May 2017</li>
<li>Bachelor of Science in Neuroscience, Christopher Newport University, Aug 2009- May 2015</li>
</ul>
</article>
<article id="experience">
<h2>Work Experience</h2>
<ul>
<li>Mathematics Expert, Outlier, 2024-present</li>
<li>Remote Tutor, Varisty Tutors, 2022-present</li>
<li>Research Assistant, College of William and Mary, 2016-2017</li>
</ul>
</article>
<article id="skills">
<h2>Skills</h2>
<ul>
<li>Cell Signaling: Advanced</li>
<li>Linear Algebra: Advanced</li>
<li>Regression Analysis: Intermediate</li>
<li>Differential Equations: Intermediate</li>
<li>Machine Learning: Beginner</li>
<li>Quantum Computing: Beginner</li>
<li>Python: Intermediate</li>
<li>MATLAB: Intermediate</li>
<li>HTML & CSS: Intermediate</li>
<li>Prompt Engineering: Intermediate</li>
<li>File Managment: Advanced</li>
<li>Presentation Skills: Advanced</li>
<li>Problem-Solving: Advanced</li>
</ul>
</article>
<article id="projects">
<h2>Projects</h2>
<li>
<a href="https://codepen.io/lshriver/pen/GRaqVPb">Theme Switcher</a>
</li>
<li>
<a href="https://eigenscribe.pyscriptapps.com/eigenscribe/latest/">Landing Page</a>
</li>
<li>
<a href="https://replit.com/repls/folder/100%20Days%20of%20Python">100 Days of Python</a> (84 complete)
</li>
</article>
<article id="contact">
<h2>Contact Me</h2>
<form action="https://formsubmit.co/[email protected]"
method="POST">
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="message">Message:</label>
<textarea id="message" name="message" required></textarea>
<button type="submit">Send</button>
</form>
</article>
</main>
</body>
</html>