-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
95 lines (94 loc) · 3.36 KB
/
about.html
File metadata and controls
95 lines (94 loc) · 3.36 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>About</title>
<!-- <meta charset="utf-8"> -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<!--[if lt IE 9]>
<script src=”http://html5shim.googlecode.com/svn/trunk/html5.js”>
</script>
<![endif]-->
</head>
<body>
<div id="wrapper">
<header><h1>David Orona's Portfolio</h1></header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="hobbies.html">Hobbies</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<main>
<p>Here, my professional and personal experiences are highlighted to demonstrate where I come from as a software engineer.</p>
<table>
<tr>
<th>Position</th>
<th>Description</th>
<th>Role Start Date</th>
<th>Role End Date</th>
</tr>
<tr>
<td><strong>Test Automation Engineer</strong></td>
<td class="position-description bulleted-list">
<ul>
<li>Establish Jenkins builds for compiling reports on daily test failures and nightly testing statuses</li>
<li>Utilize Python aggregation for exporting MongoDB data into legible HTML file content</li>
<li>Automate product status checking and reprograming processes using Selenium utilities</li>
<li>Incorporate Squish functionality in testing primary and secondary display GUI interactions</li>
<li>Support dealer technicians in helping diagnose, troubleshoot, and rectify product issues</li>
<li>Lead daily standups featuring updates on firmware release candidates and their associated defects</li>
</ul>
</td>
<td>Aug 2018</td>
<td>Present</td>
</tr>
<tr>
<td><strong>Product Safety and Compliance Tool Developer</strong></td>
<td class="position-description bulleted-list">
<ul>
<li>Restructured existing VB.NET code to significantly reduce hours of manual interaction</li>
<li>Streamlined the submission process for new countries, standards, and products</li>
<li>Delivered an increase in pertinent information to the user while reducing process time by ~80%</li>
<li>Conducted weekly standups discussing added features while sprint planning for the next build</li>
</ul>
</td>
<td>Jan 2018</td>
<td>Aug 2018</td>
</tr>
<tr>
<td><strong>Hardware Product Development</strong></td>
<td class="position-description bulleted-list">
<ul>
<li>Developed VBA program to measure latency/data rates between current and future production JD Ethernet switches</li>
</ul>
</td>
<td>May 2017</td>
<td>Dec 2017</td>
</tr>
<tr>
<td><strong>Computer Applications</strong></td>
<td class="position-description">
<ul>
<li>VBA/VB.NET</li>
<li>Python</li>
<li>Java</li>
<li>SQL</li>
</ul>
</td>
<td></td>
<td></td>
</tr>
</table>
</main>
<footer>
<p>Address: 5916 Sutton Place #4 Urbandale, IA 50322</p>
<p>Email: <a href="mailto:OronaDavidJ@JohnDeere.com">OronaDavidJ@JohnDeere.com</a></p>
<p>Phone: <a href="tel:1-319-529-8647">(319) 529-8647</a></p>
</footer>
</div>
</body>
</html>