-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexperience.html
More file actions
80 lines (80 loc) · 4.17 KB
/
experience.html
File metadata and controls
80 lines (80 loc) · 4.17 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
<!DOCTYPE html>
<html lang="en" style="background-color: #1a1a1a;">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Lance Fletcher</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="section button-section">
<div class="wrapper">
<a href="index.html"><button class="button aboutMe-button">About</button></a>
<a href="experience.html"><button class="button experience-button">Experience</button></a>
<a href="projects.html"><button class="button projects-button">Projects</button></a>
<a href="contact.html"><button class="button contact-button">Contact</button></a>
</div>
<h1>Experience</h1>
<hr class="line title-line">
</div>
<div class="block-section llnl">
<h2>Lawrence Livermore National Laboratory Computing Scholar</h2>
<h3>WTAMU: May 2022 - Present</h3>
<p2>
Worked with Dr. Roger Pearce and Dr. Trevor Steil on developing network centralities for large scale graphs.
Additionally, participated in the <a href="https://data-science.llnl.gov/dssi/class/2022"> DSSI</a> program to work
on applying ML to COVID-19 drug discovery. Specifically looked at utilizing edge frequency in randomly generated
spanning trees to detect bridge like edges. Still currently working part time for LLNL on projects related to
large scale graph algorithms.
</p2>
</div>
<div class="block-section research-assistant">
<h2>Research Assistant</h2>
<h3>WTAMU: August 2021 - May 2022</h3>
<p2>
Worked with Dr. Vinitha Subburaj on a cross-disciplinary research project by implementing machine learning
and data analysis techniques to anti-microbrial material data. Created material performance prediction models to find
more effective anti-microbrial materials.
</p2>
</div>
<div class="block-section diff-eq">
<h2>Differential Equations/Calculus II Supplemental Instructor</h2>
<h3>WTAMU: August 2020 - May 2022</h3>
<p2>
Hosted tutoring sessions for students needing help with differential equations and calculus II problems.
Offered test prep sessions where I reviewed material and walked through practice questions with students.
</p2>
</div>
<div class="block-section texas-instruments">
<h2>Software Engineer</h2>
<h3>Texas Instruments: Summer 2021</h3>
<p2>I spent the Summer with the Manufacturing Systems Solutions (MSS) group. I specifically worked
as an applications developer on the mainframe team. I developed and tested multiple COBOL applications
which enhanced the lot history reporting system.
</p2>
</div>
<div class="block-section math-tutor">
<h2>Math Lab Tutor</h2>
<h3>WTAMU: January 2020 - May 2021</h3>
<p2>Assist WT students in a variety of mathematical subjects such as college algebra, trigonometry,
calculus II, etc.
</p2>
</div>
<div class="block-section undergrad-research">
<h2>Kilgore Undergraduate Researcher</h2>
<h3>WTAMU: December 2019 - December 2020</h3>
<p2>
Conducted a self-led research project which was funded by the Kilgore Research
Center. The research investigated the use of machine learning based body tracking
to develop software which is capable of detecting flaws in exercise form. See projects page for more information.
</p2>
</div>
<hr class="line line-logos">
<div class="socials-section">
<div class="social-button"><a href="https://www.instagram.com/lance_fletch/"><img class="logo instagram" src="instagram-logo.png"></a></div>
<div class="social-button"><a href="https://github.com/LFletch1"><img class="logo github" src="github-logo.png"></a></div>
<div class="social-button"><a href="https://www.linkedin.com/in/lance-fletcher/"><img class="logo linkedin" src="linkedIn-logo.png"></a></div>
</div>
</body>
</html>