-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
158 lines (154 loc) · 6 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<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" />
<meta name="description" content="About David DeCorso">
<title>About Me | David DeCorso Personal Website</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body id="main-content">
<div id="particles-js"></div>
<header>
<h1 class="name-nav center-col">
<a href="/">David DeCorso</a>
</h1>
<span class="folio-nav center-col">Portfolio / 2021</span>
<h1 class="about-nav center-col"><a href="about.html">About</a></h1>
</header>
<main asscroll-container id="body">
<div id="about-me">
<div id="about-content">
<img
id="self-pic-mobile"
src="img/pic smaller.jpg"
alt="Picture of me!"
/>
<p></p>
<p></p>
<img id="self-pic" src="img/pic smaller.jpg" alt="Picture of me!" />
<div>
<h2 class="about-title">About Me</h2>
<p class="body-text">
I am a senior at the University of Central Florida studying
Computer Science. I also currently work for Siemens Energy as an
assitant data scientist.
</p>
</div>
</div>
<div class="spacer"></div>
<div id="exp-container">
<h3 id="experience-title" class="subtitle">Experience</h3>
<div id="experience">
<div class="tabs">
<button id="tab1" class="tab-button tab-is-active">
Siemens Energy</button
><button id="tab2" class="tab-button tab-is-inactive">
DHMC
</button>
<button id="tab3" class="tab-button tab-is-inactive">
UCF Undergrad Research
</button>
</div>
<div class="body-text">
<div id="exp1">
<b>Assistant Data Scientist @ Siemens Energy</b>
<p class="exp-date">Oct 2020 - Present</p>
<div class="exp-text">
<ul>
<li>
Processed, analyzed, and visualized sales data for
business leadership.
</li>
<li>Worked with technologies like Tableau and Alteryx.</li>
<li>
Worked remotely as part of an international team with an
AGILE/SCRUM framework.
</li>
</ul>
</div>
</div>
<div id="exp2" class="is-hidden">
<b>Plugin Development @ Dark Helmet Minecraft</b>
<p class="exp-date">May 2020 - Aug 2020</p>
<div class="exp-text">
<ul>
<li>
Used the Spigot API to develop and maintain plugins for a
Minecraft server with thousands of unique players.
</li>
<li>
Worked collaboratively to fix bugs and resolve feature
requests in a large codebase.
</li>
<li>
Worked with a Github repository using pull requests.
</li>
</ul>
</div>
</div>
<div id="exp3" class="is-hidden">
<b>Research Assistant @ UCF A.R.E.A. 67 Research Lab</b>
<p class="exp-date">Oct 2019 - Apr 2020</p>
<div class="exp-text">
<ul>
<li>
Fixed bugs in synthetic concurrent data structure
benchmarking software written in C.
</li>
<li>
Implemented high performance concurrent data structures
and operations from novel research papers.
</li>
<li>
Worked with C/Java concurrent programming libraries.
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<footer>
<div class="contact">
<a href="https://www.linkedin.com/in/david-decorso-226992151/"
><img
id="linkedin-img"
src="img/LnLogoNoBG.png"
alt="David DeCorso's LinkedIn"
/></a>
<p class="body-text">
<a href="mailto:david@daviddecorso.com">david@daviddecorso.com</a>
</p>
<a id="github-logo" href="https://github.com/daviddecorso/"
><img src="img/github.png" alt="David DeCorso's Github"
/></a>
</div>
<div class="contact-mobile">
<div class="mobile-logos">
<a href="https://www.linkedin.com/in/david-decorso-226992151/"
><img
id="linkedin-img"
src="img/LnLogoNoBG.png"
alt="David DeCorso's LinkedIn" /></a
><a id="github-logo" href="https://github.com/daviddecorso/"
><img src="img/github.png" alt="David DeCorso's Github"
/></a>
</div>
<p class="body-text">
<a href="mailto:david@daviddecorso.com">david@daviddecorso.com</a>
</p>
</div>
<h1 class="in-touch">Get in touch</h1>
</footer>
</div>
</main>
</body>
<script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
<script>
particlesJS.load("particles-js", "particles.json");
</script>
<script type="module" src="src/main.js"></script>
<script src="src/tabs.js"></script>
</html>