-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·417 lines (381 loc) · 17.5 KB
/
index.html
File metadata and controls
executable file
·417 lines (381 loc) · 17.5 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewports" content="width=device-width, initial-scale=1.0">
<title>Carlos Daccarett</title>
<meta name="description" content="As a software engineer, I strive to expand my knowledge beyond the work place. Fascinated by the many different facets of software development, I often submerge myself in extracurricular projects that are conceptually elusive. Through these projects, I’ve gained valuable experience that has given me the ability to create, contribute, and share software solutions.">
<meta name="keywords" content="Web Developer, Software Engineer, FullStack, Frontend, Front-end, Front end">
<link href="https://fonts.googleapis.com/css?family=Dosis:300,700" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="vendors/css/normalize.css">
<link rel="stylesheet" type="text/css" href="vendors/css/animate.css">
<link rel="stylesheet" type="text/css" href="vendors/css/Grid.css">
<link rel="stylesheet" type="text/css" href="http://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css">
<link rel="stylesheet" type="text/css" href="resources/css/contactform.css">
<link rel="stylesheet" type="text/css" href="resources/css/style.css">
<link rel="stylesheet" type="text/css" href="resources/css/queries.css">
<link rel="apple-touch-icon" sizes="76x76" href="resources/favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="resources/favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="resources/favicons/favicon-16x16.png">
<link rel="manifest" href="resources/favicons/manifest.json">
<link rel="mask-icon" href="resources/favicons/safari-pinned-tab.svg" color="#5bbad5">
<link rel="shortcut icon" href="resources/favicons/favicon.ico">
<meta name="msapplication-config" content="resources/favicons/browserconfig.xml">
<meta name="theme-color" content="#616161">
<style>
body {
/* set margin to 0 and overflow to hidden, to use the complete page */
margin: 0;
overflow: hidden;
}
</style>
<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-102481920-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<script src="resources/js/three.js"></script>
<header class="main-header section-scroll" id="home">
<!-- Div which will hold the Output -->
<div style="position: absolute;" id="WebGL-output"></div>
<div id="mySidenav" class="sidenav">
<a id="closenav" href="javascript:void(0)" class="closebtn">×</a>
<a href="#home">Home</a>
<a href="#work">Portfolio</a>
<a href="#about">About</a>
<a href="#contact">Contact</a>
</div>
<span id="menu" class="menu" style="cursor:pointer">☰</span>
<div class="hero-text-box">
<h1>Carlos E. Daccarett</h1>
<span class="element"></span>
</div>
<!--Scroll Down-->
<div class="mouse">
<a href="#work">
<div class="mouse-icon">
<div class="wheel"></div>
</div>
</a>
</div>
</header>
<section class="section-work" id="work">
<div class="work-box section-scroll">
<div style="height: 100%;" class="row flex">
<div class="col-half project-bg b">
<div class="project-context">
<a href="http://fresnostate-smartapp.herokuapp.com/" target="_blank"><img src="resources/img/studypal.png"
class="project-content-img" alt=""></a>
</div>
</div>
<div class="col-half project-left a">
<div class="project__number_right">S</div>
<div class="project-context-text">
<h4>React.js - Study Pal</h4>
<p class="project-title">— Internship Project 2017</p>
<p>Study Pal intends to solve the problem that students face trying to find study groups. Study Pal
provides students with a platform to search/join or create study groups solving this problem. Study pal
is a Full Stack (M.E.R.N.) Progressive Web App.</p>
<div class="tag">React.js</div>
<div class="tag">Redux</div>
<div class="tag">MongoDB</div>
<div class="tag">Node.js/Express</div>
<div class="tag">CSS</div>
<div class="tag">Javascript</div>
<a href="https://github.com/cdaccarett93/smartstudypalapp" target="_blank">
<div class="tag tag-link">GitHub Link</div>
</a>
</div>
</div>
</div>
</div>
<div class="work-box section-scroll">
<div style="height: 100%;" class="row">
<div class="col-half project-left">
<div class="project__number">A</div>
<div class="project-context-text">
<h4>React.js - Ai Powered Food Hastags</h4>
<p class="project-title">— Personal Project 2018</p>
<p>A react application powered by Clarifai. This react application allows you to upload a img by its url,
then Clarifai analyzes the image and auto generate relevant hashtags. With a click of a button the
hashtags are copied to clipboard ready to be pasted on your social media platform of choice.</p>
<div class="tag">React.js</div>
<div class="tag">CSS</div>
<div class="tag">JSX</div>
<div class="tag">Clarifai API</div>
<div class="tag">JavaScript</div>
<div class="tag">Heroku</div>
<a href="https://github.com/cdaccarett93/aiHastags" target="_blank">
<div class="tag tag-link">GitHub Link</div>
</a>
</div>
</div>
<div class="col-half project-bg">
<div class="project-context">
<a href="https://ai-hastags.herokuapp.com/">
<img style="width:60%;" src="resources/img/aihashtag.png" class="project-content-img" alt=""></a>
</div>
</div>
</div>
</div>
<div class="work-box section-scroll">
<div style="height: 100%;" class="row flex">
<div class="col-half project-bg b">
<div class="project-context">
<a href="https://peaceful-beach-44138.herokuapp.com/" target="_blank"><img src="resources/img/anatomy3d.png"
class="project-content-img" alt=""></a>
</div>
</div>
<div class="col-half project-left a">
<div class="project__number_right">A</div>
<div class="project-context-text">
<h4>Anatomy3d</h4>
<p class="project-title">— Hackathon Project 2017</p>
<p>UC Merced 36 hour Hackathon project with the goal to bring students of anatomy an easy way to study
anatomical models. With the help of the three.js library, we created an interactive 3d skull with speech
recognition for commands to showcase different parts of the skull.</p>
<div class="tag">Node.js/Express</div>
<div class="tag">HTML/CSS</div>
<div class="tag">Javascript</div>
<div class="tag">Three.js</div>
<div class="tag">Handlebars</div>
<div class="tag">Tween.js</div>
<a href="https://github.com/jdaccarett/anatomy3D" target="_blank">
<div class="tag tag-link">GitHub Link</div>
</a>
</div>
</div>
</div>
</div>
<div class="work-box section-scroll">
<div style="height: 100%;" class="row">
<div class="col-half project-left">
<div class="project__number">G</div>
<div class="project-context-text">
<h4>Glucose-Guardian</h4>
<p class="project-title">— Fresno State Hackathon 2017</p>
<p>This web application's purpose is to provide a functional calculation that will yield exact amounts of
the fast acting sugar source (skittles) to bring your levels back to normal. It has the option to
automatically pull your diabetic profiles,
and current blood glucose level from the NightScout API. Also has a geolocation text message feature if
blood sugar reaches a dangerous level.</p>
<div class="tag">HTML</div>
<div class="tag">CSS</div>
<div class="tag">JS</div>
<div class="tag">Node.js</div>
<div class="tag">Express.js</div>
<div class="tag">Mustache.js</div>
</div>
</div>
<div class="col-half project-bg">
<div class="project-context">
<a href="https://github.com/cdaccarett93/LowGlucoseManager" target="_blank">
<img src="resources/img/glucoseguardian.png" class="project-content-img" alt=""></a>
</div>
</div>
</div>
</div>
<div id="carbcandy" class="work-box section-scroll">
<div style="height: 100%;" class="row flex">
<div class="col-half project-bg b">
<div class="project-context carb-candy">
<a href="https://github.com/cdaccarett93/carb-candy"><img src="resources/img/carbcandy.png" class="project-content-img"
alt=""></a>
</div>
</div>
<div class="col-half project-left a">
<div class="project__number_right">C</div>
<div class="project-context-text">
<h4>Carb-Candy</h4>
<p class="project-title">— Personal Project 2017</p>
<p>Carb Candy's purpose is to make it easier for a diabetic to handle low blood sugar by providing the
precise amount of candy the user needs to each to reach a optimal blood glucose level.</p>
<div class="tag">Swift</div>
</div>
</div>
</div>
</div>
<div class="work-box section-scroll">
<div style="height: 100%;" class="row">
<div class="col-half project-left">
<div class="project__number">D</div>
<div class="project-context-text">
<h4>DCS Inc. Honduras</h4>
<p class="project-title">— Freelance Project 2017</p>
<p>DCS Inc. Honduras is designed to engage and simplify the user's experience by using a single page
website design.</p>
<div class="tag">HTML</div>
<div class="tag">CSS</div>
<div class="tag">JS</div>
</div>
</div>
<div class="col-half project-bg">
<div class="project-context dcs">
<a href="http://dairyconsultingserviceshonduras.com/" target="_blank">
<img src="resources/img/dcs.png" class="project-content-img" alt=""> </a>
</div>
</div>
</div>
</div>
<div id="fsbuynsell" class="work-box section-scroll">
<div style="height: 100%;" class="row flex">
<div class="col-half project-bg b">
<div class="project-context carb-candy">
<a href="https://github.com/vtorianne/FresnoStateBuyNSell" target="_blank">
<img src="resources/img/FSBNS.png" class="project-content-img" alt=""></a>
</div>
</div>
<div class="col-half project-left a">
<div class="project__number_right">F</div>
<div class="project-context-text">
<h4>Fresno State Buy N' Sell</h4>
<p class="project-title">— SW Engineering Project 2017</p>
<p>FS Buy N' Sell's purpose is to provide student with a easy to use and secure webpage to make transaction
with peers. This project was built by a small four person team using an agile approach.</p>
<div class="tag">CSS</div>
<div class="tag">HTML</div>
<div class="tag">JS</div>
<div class="tag">PHP</div>
</div>
</div>
</div>
</div>
</section>
<div id="pwaTodolist" class="work-box section-scroll">
<div style="height: 100%;" class="row">
<div class="col-half project-left">
<div class="project__number">T</div>
<div class="project-context-text">
<h4>ToDo List PWA</h4>
<p class="project-title">— Personal Project 2017</p>
<p>This todo list is a personal project intended to better understand how Progressive Web Applications work.
I used IndexedDB to store the ToDos, service workers to cache the neccessary files inorder to support
offline use and a manifest to allow
users to add the application to their homescreen.</p>
<div class="tag">HTML</div>
<div class="tag">CSS</div>
<div class="tag">JS</div>
<div class="tag">IndexedDB</div>
<div class="tag">PWA Techniques</div>
</div>
</div>
<div class="col-half project-bg">
<div class="project-context todoPWA">
<a href="https://todo-367d3.firebaseapp.com/" target="_blank"><img src="resources/img/todoPWA.png" class="project-content-img"
alt=""></a>
</div>
</div>
</div>
</div>
<section class="section-about section-scroll" id="about">
<div class="row about-row">
<div class="col-center span-7-of-8">
<div style="display: table;" class="row about-desc">
<div style="display: table-row;">
<div class="row">
<div class="col span-1-of-2">
<div class="avatar">
<img src="resources/img/profile.jpeg" alt="">
</div>
</div>
<div class="col span-1-of-2 about-box">
<h4>About</h4>
<p>As a software engineer, I strive to expand my knowledge beyond the work place. Fascinated by the
many different facets of software development, I often submerge myself in extracurricular projects
that are conceptually elusive. Through these projects, I’ve gained valuable experience that has given
me the ability to create, contribute, and share software solutions.</p>
</div>
</div>
<div class="row">
<div class="col span-1-of-2 about-box exp-box">
<h4>Experience</h4>
<ul>
<li>Software Engineer <span>2018-Present</span></li>
<li>Software Developer Intern <span>2016-2017</span></li>
<li>Freelance <span>2016-2017</span></li>
<li>IT Consultant <span>2016-2017</span></li>
<li>Co-Founder Envision Fitwear <span>2014-2016</span></li>
</ul>
</div>
<div class="col span-1-of-2 about-box">
<h4>Skills</h4>
<p>React.js, JavaScript, Node.js, Express.js, Git, Html5, CSS, C++, mySQL, Responsive design,
Photoshop, ...</p>
</div>
</div>
<div class="row">
<div class="col span-1-of-2 about-box">
<h4>Education</h4>
<p><strong>California State University, Fresno</strong></p>
<p>B.S. Computer Science</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="contact section-scroll" id="contact">
<div class="project-half">
<div class="project__number_contact">C</div>
<div class="project-context-text">
<h2>Contact Me</h2>
</div>
</div>
<div class="row contact-form project-halfb">
<div class="project__number_contactb">C</div>
<div class="col span-2-of-2">
<form id="my-form" action="https://www.getform.org/f/1caaad48-0472-423a-96cd-0c15077fe980" method="POST" class="form">
<p class="field required half">
<label class="label required" for="name">Name</label>
<input class="text-input" id="name" name="name" required type="text">
</p>
<p class="field required half">
<label class="label" for="email">E-mail</label>
<input class="text-input" id="email" name="_replyto" required type="email">
</p>
<p class="field">
<label class="label" for="message">Message</label>
<textarea class="textarea" cols="50" id="message" name="message" required rows="4"></textarea>
</p>
<p class="field">
<input class="button" type="submit" value="Send message">
</p>
<div id="sample-captcha"></div>
</form>
</div>
</div>
</section>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/respond/1.4.2/respond.min.js"></script>
<script src="https://cdn.jsdelivr.net/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://cdn.jsdelivr.net/selectivizr/1.0.3b/selectivizr.min.js"></script>
<script src="vendors/js/jquery.waypoints.min.js"></script>
<script type="text/javascript" src="vendors/js/typed.js"></script>
<script type="text/javascript" src="vendors/js/jquery.captcha.basic.min.js"></script>
<script src="resources/js/threejsobject.js"></script>
<script src="resources/js/script.js"></script>
<script src="resources/js/contact.js"></script>
</body>
</html>