-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
94 lines (92 loc) · 4.4 KB
/
index.html
File metadata and controls
94 lines (92 loc) · 4.4 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!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 about-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>About Me</h1>
<hr class="line title-line">
</div>
<div>
<div class="container">
<div class="bi-panel-text">
<h2>About Me</h2>
<p2>My name is Lance Fletcher and I am a Master's computer science student at
Texas A&M University. I currently am working part-time for Lawrence Livermore National
Laboratory under Dr. Roger Pearce. I am passionate about developing new applications
and tools to solve unique and challenging problems. Recently I have been
focusing on graph algorithms; specifically, large scale parallel graph algorithms.
Additionally, I am interested in applying machine learning to problems in a variety of
domains. </p2>
</div>
<div class="bi-panel-pic">
<img class="picture profile-pic" src="profilePic.jpg">
</div>
</div>
</div>
<div class="block-section education">
<h2>Education</h2>
<h3>Texas A&M University • College Station, TX</h3>
<div>
<p3>Master of Science Computer Science, GPA: 4.0</p3>
</div>
<div>
<p3>Expected graduation date: May 2024</p3>
</div>
<h3 style="padding-top: 20pt;">West Texas A&M University • Canyon, TX</h3>
<div>
<p3>Bachelor of Science Computer Science, GPA: 4.0</p3>
</div>
<div>
<p3>Graduation date: May 2022</p3>
</div>
</div>
<div class="block-section lang-tools">
<h2>Languages/Tools</h2>
<ul>
<li><p3>Python, C++, C, Java, R, Javascript, HTML/CSS</p3></li>
<li><p3>Pytorch, OpenAI Gym, MySQL, Bash, ARM</p3></li>
</ul>
</div>
<div class="block-section awards">
<h2>Awards</h2>
<ul>
<li><p3>1st Place in WTAMU's Undergraduate Research Oral Presentation: 2022</p3></li>
<li><p3>Kilgore Undergraduate Research Grant Recipient: 2019</p3></li>
<li><p3>Supplemental Instructor of the Year: 2021</p3></li>
<li><p3>8x WTAMU President's List Honoree: 2018-2022</p3></li>
<li><p3>2x WTAMU College of Engineering Scholarship Recipient: 2020-2022</p3></li>
<li><p3>(Very Important) WTAMU College of Engineering Egg Drop Champion: 2021</p3></li>
</ul>
</div>
<div class="block-section extra-curriculars">
<h2>Extracurriculars</h2>
<ul>
<li><p3>WT Association for Computing Machinery (ACM) Chapter President</p3></li>
<li><p3>Organized WT's Second Annual Hackathon</p3></li>
<li><p3>WT Math Club member</p3></li>
<li><p3>National Society of Leadership and Success member</p3></li>
<li><p3>Volunteered to help senior citizens with technology education</p3></li>
<li><p3>Organized a National Center for Women & Information Technology event </p3></li>
<li><p3>Taught engineering concepts to local elementary students</p3></li>
</ul>
</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>