-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·460 lines (415 loc) · 21.6 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
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
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
<html>
<head>
<!-- Favicon -->
<link rel="shortcut icon" href="/mcfavicon.png" />
<link rel="apple-touch-icon" sizes="57x57" href="/mcfavicon.png">
<link rel="apple-touch-icon" sizes="60x60" href="/mcfavicon.png">
<link rel="apple-touch-icon" sizes="72x72" href="/mcfavicon.png">
<link rel="apple-touch-icon" sizes="76x76" href="/mcfavicon.png">
<link rel="apple-touch-icon" sizes="114x114" href="/mcfavicon.png">
<link rel="apple-touch-icon" sizes="120x120" href="/mcfavicon.png">
<link rel="apple-touch-icon" sizes="144x144" href="/mcfavicon.png">
<link rel="apple-touch-icon" sizes="152x152" href="/mcfavicon.png">
<link rel="apple-touch-icon" sizes="180x180" href="/mcfavicon.png">
<link rel="icon" type="image/png" sizes="192x192" href="/mcfavicon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/mcfavicon.png">
<link rel="icon" type="image/png" sizes="96x96" href="/mcfavicon.png">
<link rel="icon" type="image/png" sizes="16x16" href="/mcfavicon.png">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta name="description" content="Mark Caldropoli's Personal Website">
<meta name="author" content="Mark Caldropoli">
<title>Mark Caldropoli</title>
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Custom Google Web Font -->
<link href='https://fonts.googleapis.com/css?family=Lato:100,300,400,700,900,100italic,300italic,400italic,700italic,900italic' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Arvo:400,700' rel='stylesheet' type='text/css'>
<!-- Custom CSS-->
<link href="css/general.css" rel="stylesheet">
<!-- Owl-Carousel -->
<link href="css/custom.css" rel="stylesheet">
<link href="css/owl.carousel.css" rel="stylesheet">
<link href="css/owl.theme.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<link href="css/animate.css" rel="stylesheet">
<!-- Magnific Popup core CSS file -->
<link rel="stylesheet" href="css/magnific-popup.css">
<!-- Modernizr /-->
<script src="js/modernizr-2.8.3.min.js"></script>
<!-- Font Awesome -->
<script src="https://kit.fontawesome.com/a59f40aebf.js" crossorigin="anonymous"></script>
<!-- Google Analytics -->
<script>
(function (i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r; i[r] = i[r] || function () {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date(); a = s.createElement(o),
m = s.getElementsByTagName(o)[0]; a.async = 1; a.src = g; m.parentNode.insertBefore(a, m)
})(window, document, 'script', 'https://www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-96866156-1', 'auto');
ga('send', 'pageview');
</script>
<style>
h1 {
text-shadow: 0 1px 3px #0d2838;
}
h2 {
text-shadow: 0 1px 2px #FF6C23;
}
h3 {
text-shadow: 0 1px 2px #b0aea2;
}
a {
text-shadow: 0 1px 1px #FF6C23;
}
@font-face {
font-family: "IgnorelandA";
src: url(../fonts/IgnorelandA.ttf);
}
@font-face {
font-family: "A_Love_of_Thunder";
src: url(../fonts/A_Love_of_Thunder.ttf);
}
</style>
</head>
<body id="home">
<!-- Preloader -->
<div id="preloader">
<div id="status"></div>
</div>
<!-- FullScreen -->
<div class="intro-header">
<div class="col-xs-12 text-center abcen1">
<h1 class="name" data-wow-delay="0.4s" style="font-family:A_Love_of_Thunder;">
<font color="#FF6C23" size="115px">Mark Caldropoli</font>
</h1>
<h3 class="h3_home wow fadeIn" data-wow-delay="0.6s">
<font color="#63FECD">Software Engineer at </font>
<font color="#D22D36">Societe Generale</font>
</h3>
<h3 class="h3_home wow fadeIn" data-wow-delay="0.6s">
<font color="#63FECD">BS Computer Science & BA Mathematics from Binghamton University</font>
</h3>
<ul class="list-inline intro-social-buttons">
<li><a href="https://linkedin.com/in/markcaldropoli"><i class="fab fa-linkedin fa-5x"></i></i></a>
<li><a href="https://github.com/markcaldropoli"><i class="fab fa-github fa-5x"></i></a>
<!--li><a href="https://www.hackerrank.com/markcaldropoli?hr_r=1"><i class="fab fa-hackerrank fa-5x"></i></a-->
</ul>
</div>
<div class="col-xs-12 text-center abcen wow fadeIn">
<div class="button_down">
<a class="imgcircle wow bounceInUp" data-wow-duration="1.5s" href="#aboutme"><i class="fa fa-chevron-down fa-4x"></i></a>
</div>
</div>
</div>
<!-- NavBar -->
<nav class="navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-ex1-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#home"><font color="#81d2e0" style="font-family:A_Love_of_Thunder;">Mark Caldropoli</font></a>
</div>
<div class="collapse navbar-collapse navbar-right navbar-ex1-collapse">
<ul class="nav navbar-nav">
<li class="menuItem"><a href="#aboutme"><font color="#81d2e0" style="font-family:A_Love_of_Thunder;">About</font></a></li>
<!--li class="menuItem"><a href="#projects"><font color="#81d2e0" style="font-family:A_Love_of_Thunder;">Projects</font></a></li-->
<li class="menuItem"><a href="#contact"><font color="#81d2e0" style="font-family:A_Love_of_Thunder;">Contact</font></a></li>
</ul>
</div>
</div>
</nav>
<!-- About Me -->
<div id="aboutme" class="content-section-a">
<div class="container">
<div class="row">
<div class="col-sm-3 pull-right wow fadeInRightBig">
<br><br>
<center><img class="img-circle" width=375px height=545px src="img/profilesmall1.jpg"></center>
</div>
<div class="col-sm-8 wow fadeInLeftBig" data-animation-delay="200">
<h2 class="section-heading" style="font-family:A_Love_of_Thunder;">About Me</h2>
<p class="lead">
I am currently a <b>Software Engineer at Societe Generale</b> through the Full-Time Analyst Program.
I graduated from <b>Binghamton University</b> with degrees in <b>Computer Science & Mathematics</b>.
Previously, I interned at Societe Generale in New York City as a Front Office Developer and at Swisher International Inc. in Jacksonville as an Application Developer.
</p>
<p class="lead">
I have great expertise in various languages, primarily <b>C#</b>, <b>Java</b>, <b>Python</b>, and <b>SQL</b>.
I have proven experience developing .NET Web APIs, .NET desktop applications, and .NET class libraries in .NET Core and .NET Framework, both from scratch and on existing projects.
</p>
<p class="lead">
At Binghamton, I was a <b>Co-Director (VP of Finance/Logistics) of <a href="http://club.hackbu.org/">HackBU</a></b>.
Despite graduating, I continue to love organizing and participating in hackathons to craft new ideas.
I worked as a <b>Residential Computing Consultant</b> (ResCon) for two years.
This program is part of an on-campus, student-run computer repair and IT service that helps fellow students resolve problems with their electronic devices.
</p>
</div>
</div>
</div>
</div>
<!-- Projects -->
<!--div id="projects" class="content-section-b" style="border-top: 0">
<div class="container">
<div class="col-md-6 col-md-offset-3 text-center wrap_title">
<h2><font color="#4CA07A" style="font-family:A_Love_of_Thunder;">Projects</font></h2>
<p class="lead" style="margin-top:0"></p>
</div>
<div class="row">
<div class="col-sm-4 wow fadeInDown text-center">
<img class="icon" src="img/BottleItUp.png" alt="Bottle It Up!" width=300px height=200px>
<h3><a href="https://bottleitup.github.io/"><font color="#0e2836">Bottle It Up!</font></a></h3>
<p class="lead"><b><font color="#102d3b"><a href="https://bottleitup.github.io/">Bottle It Up!</a>
Bottle It Up! takes a user's information from their Facebook profile and allows them to send their own 'message in a bottle'
as well as receive one, with all messages being stored and executed out of a particular database. The website was built
using Javascript, Firebase, CSS, Bootstrap, and HTML.</font></b></p>
</div>
<div class="col-sm-4 wow fadeInDown text-center">
<img class="icon" src="img/ICEElocatorthumbnail.png" alt="ICEE Locator" width=300px height=200px>
<h3><a href="#spotlight"><font color="#0e2836">ICEE Locator</font></a></h3>
<p class="lead"><b><font color="#102d3b"><a href="https://github.com/markcaldropoli/iceelocator">The ICEE Locator iOS App</a>
The ICEE Locator iOS App provides users the ability to find the nearest location carrying ICEE's based on their current location.
It was built using Swift and Xcode. The Google Places API was implemented to create a map displaying
nearby locations of establishments carrying ICEE's.</font></b></p>
</div>
<div class="col-sm-4 wow fadeInDown text-center">
<img class="icon" src="img/hackersvsharassmentbing.png" width=300px height=200px>
<h3><a href="https://hackersvsharassment.github.io/"><font color="#0e2836">Hackers vs. Harassment</font></a></h3>
<p class="lead"><b><font color="#102d3b"><a href="https://github.com/hackersvsharassment/hackersvsharassment.github.io">Hackers vs. Harassment</a>
Hackers vs. Harassment addresses the continual issue of bullying and online harassment seen within today's society
and urges others to take a stand against it. The website was built using Bootstrap, HTML, Javascript, and CSS, and
the website's survey was programmed using Python, Flask, and JSON.</font></b></p>
</div>
</div>
<div class="row tworow">
<div class="col-sm-4 wow fadeInDown text-center">
<img class="icon" src="img/craps.png" width=300px height=200px>
<h3><a href="https://github.com/emilylakic/craps-game"><font color="#0e2836">Simulating Craps</font></a></h3>
<p class="lead"><b><font color="#102d3b">Worked in a team of 5 to create a Python program that simulates the craps dice game.
We coded seven classes to implement the game, including RollingDie, ControlPanel, CrapsGame, CrapsTable, Die, DisplayPanel and Craps.</font></b></p>
</div>
<div class="col-sm-4 wow fadeInDown text-center">
<img class="icon" src="img/nyctreats.png" width=300px height=200px>
<h3><a href="https://github.com/nyctreats/nyctreats.github.io"><font color="#0e2836">NYCtreats</font></a></h3>
<p class="lead"><b><a href="https://github.com/nyctreats/nyctreats.github.io">NYCtreats</a><font color="#102d3b">NYCtreats is a website created using bootstrap
skills and modeled off of a business Instagram account with over 75,000 followers, </font></b><a href="http://instagram.com/nyctreats">nyctreats</a><font color="#102d3b">.</font></p>
</div>
</div>
</div>
</div-->
<!--ICEE Locator-->
<!--div id="spotlight" class="content-section-b">
<div class="container">
<div class="row">
<div class="col-md-10 col-md-offset-1 text-center wrap_title ">
<h2><font color="#4CA07A" style="font-family:A_Love_of_Thunder;">ICEE Locator</font></h2>
<p class="lead" style="margin-top:0"><b>Created by Mark Caldropoli and Emily Lakic @ BrickHack 3</b></p>
<p class="lead"><font color="#f06140"><b>Won Best Reverse Engineering App</b></font></p>
<font color="white"><p>ICEE Locator provides users the ability to find the nearest location
carrying ICEE's based on their current location. We built the app using <b>Swift</b>,
<b>Python</b>, and <b>Ruby</b>. We used Swift to make the app, Python to scrape the
ICEE website in order to obtain a large compiled list of over <b>20,000 locations</b>,
and Ruby to install Pods for the <b>Google Places API</b>.
</p></font>
</div>
</div>
<div class="row wow bounceInUp">
<div id="owl-demo" class="owl-carousel">
<a href="img/AppLanding.png" class="image-link">
<div class="item">
<img class="img-responsive img-rounded" src="img/AppLanding.png" alt="Owl Image">
</div>
</a>
<a href="img/AppLocator.png" class="image-link">
<div class="item">
<img class="img-responsive img-rounded" src="img/AppLocator.png" alt="Owl Image">
</div>
</a>
<a href="img/ICEELocation.png" class="image-link">
<div class="item">
<img class="img-responsive img-rounded" src="img/ICEELocation.png" alt="Owl Image">
</div>
</a>
</div>
</div>
</div>
</div-->
<!-- Hackers vs. Harassment-->
<!--div class="content-section-a">
<div class="container">
<div class="row">
<div class="col-sm-6 wow fadeInLeftBig">
<div id="owl-demo-1" class="owl-carousel">
<a href="img/hackersvsharassmentbing.png" class="image-link">
<div class="item">
<img class="img-responsive img-rounded" src="img/hackersvsharassmentbing.png" alt="">
</div>
</a>
<a href="img/explanationofHvsH.png" class="image-link">
<div class="item">
<img class="img-responsive img-rounded" src="img/explanationofHvsH.png" alt="">
</div>
</a>
<a href="img/Homepage.png" class="image-link">
<div class="item">
<img class="img-responsive img-rounded" src="img/Homepage.png" alt="">
</div>
</a>
</div>
</div>
<div class="col-sm-6 wow fadeInRightBig" data-animation-delay="200">
<h3 class="section-heading"><font color="#005a43" style="font-family:A_Love_of_Thunder;">Hackers vs. Harassment</font></h3>
<div class="sub-title lead3">HackAE Collaborative Hackathon Project - Mark Caldropoli & Emily Lakic</div>
<p class="lead">
<b>Hackers vs. Harassment</b> was created in an effort to improve the
overpowering societal issue of bullying by collecting data using
<b>Python</b> and presenting it in the form of a website to illustrate the
complexity of the problem. Data was collected to make pie charts
on the website based on questions asked in our survey.
Received the <b>#HackHarassment</b> award from Major League Hacking at
<b>Hack America East</b> held at Binghamton University's Innovative Technologies
Complex.
</p>
<p><a class="btn btn-embossed btn-primary" href="https://github.com/hackersvsharassment/hackersvsharassment.github.io" role="button">Source Code</a>
<a class="btn btn-embossed btn-info" href="https://hackersvsharassment.github.io/" role="button">Visit Website</a>
</p>
</div>
</div>
</div>
</div-->
<!-- Contact -->
<div id="contact" class="content-section-b contact">
<div class="container">
<div class="row">
<div class="col-md-6 col-md-offset-3 text-center wrap_title">
<h2 style="font-family:A_Love_of_Thunder;">Contact Me</h2>
</div>
<form name="gform" id="gform" enctype="text/plain" action="https://docs.google.com/forms/d/e/1FAIpQLSeqf30CG02uRhDXF3YX1BHS7oLT0B4synvit10kBslszZj9Uw/formResponse?" target="hidden_iframe" onsubmit="submitted=true;">
<div class="col-md-8 col-md-offset-2">
<div class="form-group">
<label for="entry.141532411">
<i class="fa-solid fa-angle-left"></i>
<font color="#4CA07A" style="font-family:A_Love_of_Thunder;"><b> Your Name </b></font>
<i class="fa-solid fa-angle-right"></i>
</label>
<div class="input-group">
<input type="text" class="form-control" name="entry.141532411" id="entry.141532411" placeholder="Enter Name" style="font-family:A_Love_of_Thunder;" required>
<span class="input-group-addon"><i class="glyphicon glyphicon-ok form-control-feedback"></i></span>
</div>
</div>
<div class="form-group">
<label for="InputEmail">
<i class="fa-solid fa-angle-left"></i>
<font color="#4CA07A" style="font-family:A_Love_of_Thunder;"><b> Your Email </b></font>
<i class="fa-solid fa-angle-right"></i>
</label>
<div class="input-group">
<input type="email" class="form-control" name="entry.322797797" id="entry.322797797" placeholder="Enter Email" style="font-family:A_Love_of_Thunder;" required>
<span class="input-group-addon"><i class="glyphicon glyphicon-ok form-control-feedback"></i></span>
</div>
</div>
<div class="form-group">
<label for="InputMessage">
<i class="fa-solid fa-angle-left"></i>
<font color="#4CA07A" style="font-family:A_Love_of_Thunder;"><b> Message </b></font>
<i class="fa-solid fa-angle-right"></i>
</label>
<div class="input-group">
<textarea name="entry.543451850" id="entry.543451850" class="form-control" rows="5" placeholder="Message" style="font-family:A_Love_of_Thunder;" required></textarea>
<span class="input-group-addon"><i class="glyphicon glyphicon-ok form-control-feedback"></i></span>
</div>
</div>
<center><input type="submit" name="submit" id="submit" value="Submit" class="btn wow tada btn-embossed btn-primary" style="font-family:A_Love_of_Thunder;"></center>
</div>
</form>
<iframe name="hidden_iframe" id="hidden_iframe" style="display:none;" onload="if(submitted) {}"></iframe>
<hr class="featurette-divider hidden-lg">
<div class="col-md-4 col-md-offset-8">
<p>
<i class="fa-solid fa-angle-left"></i>
<font style="font-family:A_Love_of_Thunder;"> Created by Mark Caldropoli </font>
<i class="fa-solid fa-angle-right"></i>
</p>
</div>
</div>
</div>
</div>
<!-- Old contact form using getsimpleform -->
<!-- <div class="content-section-b contact">
<div class="container">
<div class="row">
<div class="col-md-6 col-md-offset-3 text-center wrap_title">
<h2 style="font-family:A_Love_of_Thunder;">Contact Me</h2>
</div>
<form action="https://getsimpleform.com/messages?form_api_token=c2e8a025f4ed4a7283d5f0d72fd5e281" method="post">
<div class="col-md-8 col-md-offset-2">
<div class="form-group">
<label for="InputName"><i class="fa-solid fa-angle-left"></i><font color="#4CA07A" style="font-family:A_Love_of_Thunder;"><b> Your Name </b></font><i class="fa-solid fa-angle-right"></i></label>
<div class="input-group">
<input type="text" class="form-control" name="InputName" id="InputName" placeholder="Enter Name" style="font-family:A_Love_of_Thunder;" required>
<span class="input-group-addon"><i class="glyphicon glyphicon-ok form-control-feedback"></i></span>
</div>
</div>
<div class="form-group">
<label for="InputEmail"><i class="fa-solid fa-angle-left"></i><font color="#4CA07A" style="font-family:A_Love_of_Thunder;"><b> Your Email </b></font></font><i class="fa-solid fa-angle-right"></i></label>
<div class="input-group">
<input type="email" class="form-control" id="InputEmail" name="InputEmail" placeholder="Enter Email" style="font-family:A_Love_of_Thunder;" required>
<span class="input-group-addon"><i class="glyphicon glyphicon-ok form-control-feedback"></i></span>
</div>
</div>
<div class="form-group">
<label for="InputMessage"><i class="fa-solid fa-angle-left"></i><font color="#4CA07A" style="font-family:A_Love_of_Thunder;"><b> Message </b></font></font><i class="fa-solid fa-angle-right"></i></label>
<div class="input-group">
<textarea name="InputMessage" id="InputMessage" class="form-control" rows="5" placeholder="Message" style="font-family:A_Love_of_Thunder;" required></textarea>
<span class="input-group-addon"><i class="glyphicon glyphicon-ok form-control-feedback"></i></span>
</div>
</div>
<center><input type="submit" name="submit" id="submit" value="Submit" class="btn wow tada btn-embossed btn-primary" style="font-family:A_Love_of_Thunder;"></center>
</div>
</form>
<hr class="featurette-divider hidden-lg">
<div class="col-md-4 col-md-offset-8">
<p><i class="fa-solid fa-angle-left"></i><font style="font-family:A_Love_of_Thunder;"> Created by Mark Caldropoli </font><i class="fa-solid fa-angle-right"></i></p>
</div>
</div>
</div>
</div> -->
<!-- JavaScript -->
<script src="js/jquery-1.10.2.js"></script>
<script src="js/bootstrap.js"></script>
<script src="js/owl.carousel.js"></script>
<script src="js/script.js"></script>
<!-- Form Scripts -->
<script type="text/javascript">var submitted = false;</script>
<script type="text/javascript">
$('#gform').on('submit', function (e) {
$('#gform *').fadeOut(2000);
$('#gform').prepend('<div class="col-md-8 col-md-offset-2"><center><font color="#4CA07A" style="font-family:A_Love_of_Thunder;"><p>Your message has been received!</p></font></center></div>');
});
</script>
<!-- StikyMenu -->
<script src="js/stickUp.min.js"></script>
<script type="text/javascript">
jQuery(function ($) {
$(document).ready(function () {
$('.navbar-default').stickUp();
});
});
</script>
<!-- Smoothscroll -->
<script type="text/javascript" src="js/jquery.corner.js"></script>
<script src="js/wow.min.js"></script>
<script>
new WOW().init();
</script>
<script src="js/classie.js"></script>
<script src="js/uiMorphingButton_inflow.js"></script>
<!-- Magnific Popup core JS file -->
<script src="js/jquery.magnific-popup.js"></script>
</body>
</html>