-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcode-data-experience.html
More file actions
380 lines (379 loc) · 15.4 KB
/
Copy pathcode-data-experience.html
File metadata and controls
380 lines (379 loc) · 15.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
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mark Eschbach - Data Analyst & Software Developer Resume</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
color: #333;
}
.navbar {
background-color: rgba(0, 0, 0, 0.85);
backdrop-filter: blur(5px);
padding: 12px 20px;
margin-top: 20px;
display: flex;
justify-content: space-between;
align-items: center;
position: relative;
box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15), 0 8px 40px rgba(255, 255, 255, 0.05);
transition: all 0.3s ease;
}
.navbar .logo {
font-family: 'Space Mono', monospace;
font-size: 1.6em;
font-weight: 400;
color: #fff;
letter-spacing: 2px;
text-transform: uppercase;
transition: transform 0.3s ease, color 0.3s ease;
}
.navbar .logo:hover {
color: #e0e0e0;
transform: scale(1.05);
}
.hamburger {
display: none;
flex-direction: column;
cursor: pointer;
}
.hamburger span {
width: 25px;
height: 3px;
background-color: #fff;
margin: 2px 0;
transition: all 0.3s ease;
}
.nav-menu {
display: flex;
list-style: none;
}
.nav-menu li {
position: relative;
margin-left: 20px;
}
.nav-menu a {
color: #fff;
text-decoration: none;
font-size: 1.1em;
padding: 8px 12px;
border-radius: 5px;
transition: background-color 0.3s ease, color 0.3s ease;
}
.nav-menu a:hover {
background-color: rgba(255, 255, 255, 0.1);
color: #e0e0e0;
}
.dropdown {
position: relative;
}
.dropdown-content {
display: none;
position: absolute;
background-color: rgba(0, 0, 0, 0.9);
backdrop-filter: blur(5px);
box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
min-width: 150px;
top: 100%;
left: 0;
z-index: 1;
border-radius: 5px;
}
.dropdown-content a {
display: block;
padding: 10px;
border-radius: 5px;
}
.dropdown:hover .dropdown-content {
display: block;
}
.dropdown-content a:hover {
background-color: rgba(255, 255, 255, 0.15);
}
@media (max-width: 768px) {
.hamburger {
display: flex;
}
.nav-menu {
display: none;
position: absolute;
top: 100%;
left: 0;
right: 0;
background-color: rgba(0, 0, 0, 0.9);
backdrop-filter: blur(5px);
flex-direction: column;
padding: 10px;
box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}
.nav-menu.active {
display: flex;
}
.nav-menu li {
margin: 10px 0;
}
.dropdown-content {
position: static;
box-shadow: none;
background-color: rgba(0, 0, 0, 0.95);
border-radius: 5px;
}
}
.resume-container {
display: flex;
max-width: 1100px;
margin: 20px auto;
margin-top: 20px;
background-color: #fff;
box-shadow: 0 0 20px rgba(0,0,0,0.1);
}
.sidebar {
width: 30%;
background-color: #1c2e4a;
color: #fff;
padding: 20px;
box-sizing: border-box;
}
.sidebar h2 {
font-size: 1.2em;
margin-bottom: 10px;
border-bottom: 1px solid #fff;
padding-bottom: 5px;
}
.sidebar ul {
list-style-type: none;
padding: 0;
margin: 0;
}
.sidebar li {
margin-bottom: 8px;
font-size: 0.9em;
}
.main-content {
width: 70%;
padding: 20px;
box-sizing: border-box;
}
.header {
margin-bottom: 20px;
}
.header h1 {
font-size: 2em;
margin: 0;
}
.header h3 {
font-size: 1.2em;
margin: 5px 0;
color: #555;
}
.section {
margin-bottom: 20px;
}
.section h2 {
font-size: 1.5em;
border-bottom: 1px solid #ddd;
padding-bottom: 5px;
margin-bottom: 10px;
}
.job {
margin-bottom: 15px;
}
.job h3 {
font-size: 1.1em;
margin: 0;
}
.job h4 {
font-size: 1em;
color: #666;
margin: 2px 0;
}
.job ul {
list-style-type: disc;
margin-left: 20px;
font-size: 0.9em;
}
.job li {
margin-bottom: 5px;
}
a {
color: #fff;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<nav class="navbar">
<div class="logo">Mark Eschbach II</div>
<div class="hamburger" onclick="toggleMenu()">
<span></span>
<span></span>
<span></span>
</div>
<ul class="nav-menu">
<li class="dropdown">
<a href="#">Blogs</a>
<div class="dropdown-content">
<a href="/philosophy.html">Philosophy</a>
<a href="/projects.html">Projects</a>
</div>
</li>
<li class="dropdown">
<a href="#">Professional</a>
<div class="dropdown-content">
<a href="https://www.approachable.fit/" target="_blank">Approachable Fitness</a>
<a href="/data-analysis.html">Data Analysis</a>
<a href="/science-experience.html">Science Experience</a>
<a href="/code-data-experience.html">Code and Data Experience</a>
<a href="/engineering-experience.html">Engineering Experience</a>
<a href="/physical-training-experience.html">Physical Training Experience</a>
</div>
</li>
</ul>
</nav>
<div class="resume-container">
<div class="sidebar">
<div class="contact">
<h2>Contact</h2>
<ul>
<li>(331) 442-2012 (Mobile)</li>
<li>meschbach2@gmail.com</li>
<li>www.linkedin.com/in/mark-eschbach-648909ab (LinkedIn)</li>
<li>https://personallyabstract.org (Personal)</li>
<li>https://github.com/Markopolo2023 (GitHub)</li>
<li>https://epistemion.com (Company)</li>
</ul>
</div>
<div class="skills">
<h2>Top Skills</h2>
<ul>
<li>Data Analysis (Python, SQL, Excel)</li>
<li>Software Development (Python, C++, HTML, Jupyter, Flutter/Dart)</li>
<li>Database Management (SQL Server, Internal Structures)</li>
<li>Project Management</li>
<li>AI & LLMs (Claude, Grok, Mistral)</li>
<li>Scientific Research & Data Visualization</li>
</ul>
</div>
<div class="languages">
<h2>Languages</h2>
<ul>
<li>English (Native/Professional Proficiency)</li>
</ul>
</div>
<div class="certifications">
<h2>Certifications</h2>
<ul>
<li>Google Data Analytics (Issued Aug 2025)</li>
<li>Differential Equations (Issued Jan 2025)</li>
<li>Partial Differential Equations (Issued Jan 2025)</li>
<li>Linear Algebra (Issued Dec 2024)</li>
<li>Access Basics for Excel (Issued Mar 2024)</li>
<li>SQL for Data Science (Issued Feb 2024)</li>
<li>Complete Microsoft SQL Server Database Administration Course (Issued Jan 2024)</li>
<li>C++ Tutorial for Complete Beginners (Issued Dec 2023)</li>
</ul>
</div>
<div class="honors">
<h2>Honors-Awards</h2>
<ul>
<li>David Jones Persuasive Speech Contest (3rd Place, 2011)</li>
</ul>
</div>
</div>
<div class="main-content">
<div class="header">
<h1>Mark Eschbach</h1>
<h3>Data Analyst & Software Developer</h3>
<h3>Champaign, Illinois, United States</h3>
</div>
<div class="section summary">
<h2>Summary</h2>
<p>Versatile data analyst and software developer with a strong foundation in scientific research, data processing, and software engineering. Experienced in developing data capture and analysis tools using Python, Flutter, SQL, and Excel, optimizing processes to enhance efficiency. Proficient in database design, AI integration, and analytical techniques to derive insights from complex datasets. Passionate about leveraging interdisciplinary skills in data science and software development to solve real-world problems and drive innovation.</p>
</div>
<div class="section experience">
<h2>Experience</h2>
<div class="job">
<h3>Plasma Chemistry Research Supervisor</h3>
<h4>Prairie Research Institute | October 2025 - Present (3 months)</h4>
<h4>Champaign, Illinois, United States</h4>
<ul>
<li>Developed Python-based plasma simulation tools</li>
<li>Developed strategic plans for plasma-based projects, incorporating data analysis for optimization.</li>
<li>Conducted hands-on research, optimizing parameters using data-driven approaches to improve efficiency and scalability.</li>
<li>Provided project management, including timeline coordination and data documentation.</li>
</ul>
</div>
<div class="job">
<h3>Co-Founder</h3>
<h4>Epistemion LLC | September 2025 - Present (4 months)</h4>
<h4>Champaign, Illinois, United States</h4>
<ul>
<li>Knowledge-driven solutions, involving software development and data management.</li>
<li>Focusing on artificail intelligence (LLM), machine learning, and app development</li>
</ul>
</div>
<div class="job">
<h3>Consulting Specialist, Analytical Chemistry</h3>
<h4>University of Illinois Urbana-Champaign | February 2025 - Present (11 months)</h4>
<h4>Springfield, Illinois, United States</h4>
<ul>
<li>Optimized pilot testing lab for DEO Grant, validating analytical methods and ensuring data accuracy through software tools.</li>
<li>Led team to streamline operations, achieving efficient workflows with data analysis and reporting.</li>
<li>Conducted testing, analyzed results, and generated reports aligned with real-time data.</li>
</ul>
</div>
<div class="job">
<h3>Scientific Specialist</h3>
<h4>Illinois Sustainable Technology Center | August 2022 - Present (3 years 5 months)</h4>
<h4>Urbana-Champaign Area</h4>
<ul>
<li>Led project management for operational overhauls, developing a comprehensive multi-platform software suite for statewide water treatment program.<li>
<li>Created Excel and SQL tools for data capture, reporting, and analysis of water treatment operations.</li>
<li>Reduced reporting time by 50% for six users through dynamic Excel solutions.</li>
<li>Compiled and digitized historical data from 1970s to present, extracting and cleaning across formats to build a research database.</li>
<li>Developed internal database structure for data management and research.</li>
<li>Initiated and led development team for internal R&D projects involving software and data analytics.</li>
</ul>
</div>
<div class="job">
<h3>Research Specialist</h3>
<h4>University of Illinois at Urbana-Champaign | October 2019 - August 2022 (2 years 11 months)</h4>
<h4>United States</h4>
<ul>
<li>Assisted in biochemical research, performing data analysis on lipid molecules and protein metabolisms using Python and analytical software.</li>
<li>Managed lab data, including synthesis characterization and reporting for publications.</li>
</ul>
</div>
</div>
<div class="section education">
<h2>Education</h2>
<ul>
<li><strong>Greenville College</strong> - Bachelor's Degree in Chemistry (2013 - 2015)</li>
<li><strong>Parkland College</strong> - Associates Degree in Science, General Studies (2008 - 2012)</li>
<li><strong>University of Illinois Urbana-Champaign</strong> - Course, Plasma and Fusion Science (Jan 2025 - May 2025)</li>
<li><strong>University of Illinois Urbana-Champaign</strong> - Course, Modeling of Nuclear Energy Systems (Jan 2022 - May 2022)</li>
<li><strong>University of Illinois Urbana-Champaign</strong> - Course, Symbolic Logic (Aug 2023 - Dec 2023)</li>
<li><strong>University of Illinois Urbana-Champaign</strong> - Course, Early Modern Philosophy (Aug 2023 - Dec 2023)</li>
<li><strong>University of Illinois Urbana-Champaign</strong> - Course, Intro Differential Equations (Aug 2020 - Dec 2020)</li>
<li><strong>University of Illinois Urbana-Champaign</strong> - Course, Logic and Reasoning (Jan 2022 - Jun 2022)</li>
<li><strong>edX</strong> - Fundamentals of Neuroscience Series (2018, Passed 85-87/100)</li>
</ul>
</div>
</div>
</div>
<script>
function toggleMenu() {
const menu = document.querySelector('.nav-menu');
menu.classList.toggle('active');
}
</script>
</body>
</html>