-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
117 lines (117 loc) · 4.89 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
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
<!DOCTYPE html>
<html lang = "en">
<head>
<meta charset="utf-8" />
<meta name = "viewport" content = "width=device-width, initial-scale=1.0">
<title>Laura's Website</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" integrity="sha384-rwoIResjU2yc3z8GV/NPeZWAv56rSmLldC3R/AZzGRnGxQQKnKkoFVhFQhNUwEyJ" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.1.1.slim.min.js" integrity="sha384-A7FZj7v+d/sdmMqp/nOQwliLvUsJfDHW+k9Omg/a/EheAdgtzNs3hpfag6Ed950n" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.4.0/js/tether.min.js" integrity="sha384-DztdAPBWPRXSA/3eYEEUWrWCy7G5KFbe8fFjk5JAIxUYHKkDx6Qin1DkWx51bBrb" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/js/bootstrap.min.js" integrity="sha384-vBWWzlZJ8ea9aCX4pEW3rVHjgjt7zpkNpZk+02D9phzyeVkE+jo0ieGizqPLForn" crossorigin="anonymous"></script>
</head>
<body>
<div>
<div>
<nav class="navbar navbar-toggleable-sm navbar-light bg-light">
<div class ='navbar-nav'>
<a class='navbar-brand'>Laura Pak</a>
<a class='nav-item nav-link active' href='/'>Home <span class='sr-only'>(current)</span></a>
<a class='nav-item nav-link' href='/about'>About</a>
<a class='nav-item nav-link' href='/contact'>Contact</a>
</div>
</nav>
</div>
<br />
<div class = "jumbotron">
<h4>Overview</h4>
<p>
Welcome to my website! My name is Laura Pak, and I am an
honors computer science student
at the University of Texas at Dallas, and my passion is
machine learning with a side of app development. I believe the most
important skill you can cultivate is applied communication--being
able to take in other people's ideas while conveying your own.
</p>
<p>
After I graduate in May, I hope to start work immediately
in software engineering and app development. Once I settle
in with a few years of experience, though, I'd like to take
classes on the side for a masters in machine learning and/or
artificial intelligence, hopefully with a focus on natural
language processing.
</p>
<br/>
<h4>Skills and Technologies</h4>
<div class = 'container'>
<div class='row'>
<div class='col-sm'>
<p>Python3</p>
<p>Java</p>
<p>C++</p>
</div>
<div class='col-sm'>
<p>JavaScript</p>
<p>R</p>
<p>SQL</p>
</div>
<div class='col-sm'>
<p>HTML</p>
<p>CSS</p>
</div>
<div class='col-sm'>
<p>React Native</p>
<p>nltk</p>
<p>scikit-learn</p>
</div>
<div class='col-sm'>
<p>Maven</p>
<p>Spring Boot</p>
<p>Thymeleaf</p>
</div>
<div class='col-sm'>
<p>Agile</p>
<p>vim</p>
<p>bash</p>
</div>
</div>
</div>
<br/>
<h4>Experience</h4>
<div>
<h6>JP Morgan Chase & Co. | Software Engineer Intern</h6>
<p>
• Worked on an Agile team to visualize employee
performance in a responsive online dashboard built
with Java Spring Boot web application hosted in the
cloud
</p>
<p>
• Application dynamically pulled data daily from
MSSQL databases, normalized the data, stored it
in a database created for the application,
and visualized data using amCharts JS
</p>
<p>
• Projected to save two hours a month per
manager across branches of JPMC and increase
agent efficiency
</p>
</div>
<div>
<h6>Univeristy of Texas at Dallas | NLP Research Assistant</h6>
<p>
• Cleaned data for Natural Language Processing
(NLP) algorithm training
</p>
<p>
• Reviewed and edited doctorate-level
research papers by cleaning transference from
PDF to Word, recreating graphs and tables, and
correcting grammar and spelling
</p>
</div>
<!-- <h4>personal links</h4> -->
</div>
</div>
</body>
</html>