-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
111 lines (101 loc) · 2.85 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" description="blank" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Resume - Caleb Maccarone</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- this is the header photo/ contact info-->
<table cellspacing="10">
<tr>
<td><img class="circular" src="0.jpeg" alt="caleb's photo" /></td>
<td>
<h1>Caleb Maccarone</h1>
<h3>Software Developer</h3>
<h3>[email protected]</h3>
<h3>(989) 390-5704</h3>
</td>
</tr>
</table>
<hr />
<!-- Certificatoins -->
<h3>Certifications</h3>
<table>
<tr>
<td>Comptia Project+</td>
<td>December 2017</td>
</tr>
<tr>
<td>Complete Flutter Development Bootcamp | The London App Brewery</td>
<td>August 2019</td>
</tr>
<tr>
<td>IOS Development Bootcamp | The London App Brewery</td>
<td>August 2018</td>
</tr>
</table>
<hr>
<!-- Work Experience -->
<h3>Work Experience</h3>
<table cellspacing="10">
</tr>
<tr>
<td>Accountant | Washington Conference of SDA |</td>
<td>March 2017 - Present</td>
</tr>
</table>
<p>Accountant – Processed payroll and reimbursements for more than 200 different employees, managed rental
agreements for the organization’s many properties, and oversaw the sale of organization properties.
</p>
<p>Software Development - Designed and built automation workflows (with Laserfiche) for ensuring data integrity of
organization files. Developed VBA programs to format and import complex accounting data into our proprietary
accounting software. Designed and am currently developing a flutter reimbursement app. The backend is Firebase
Cloud Firestore. This app will make it so employees can check approval status and lookup past reimbursements.
The reimbursements will integrate seamlessly with our current accounting software to import transactions,
reducing the current input time to just a couple of minutes.</p>
<hr>
<!-- Education -->
<h3>Education</h3>
<hr>
<!-- Skills -->
<h3>Skills</h3>
<Table cellspacing="10">
<tr>
<td>Git</td>
<td>★★★☆☆</td>
</tr>
<tr>
<td>flutter</td>
<td>★★★★☆</td>
</tr>
<tr>
<td>Swift</td>
<td>★★★☆☆</td>
</tr>
<tr>
<td>HTML</td>
<td>★☆☆☆☆</td>
</tr>
<tr>
<td>CSS</td>
<td>☆☆☆☆☆</td>
</tr>
<tr>
<td>Javascript</td>
<td>☆☆☆☆☆</td>
</tr>
</Table>
<hr>
<table cellspacing="20">
<tr>
<td><a href="contactMe.html">Contact Me</a></td>
<td><a href="aboutme.html">About Me</a></td>
<td><a href="portfolio.html">Portfolio</a></td>
</tr>
</table>
<br />
<hr />
</body>
</html>