-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
607 lines (550 loc) · 29.9 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
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
<!DOCTYPE html>
<html lang="en" class="no-js">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Daniel Flores-Welcome!</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<meta name="description" content="Daniel Flores Resume" />
<meta name="keywords" content="Material CV, portfolio" />
<meta name="author" content="lmpixels" />
<link rel="shortcut icon" href="Personal_Logo_V1.5.ico">
<link rel="stylesheet" href="./css/bootstrap.min.css" type="text/css">
<link rel="stylesheet" href="./css/animate.css" type="text/css">
<link rel="stylesheet" href="./css/animations.css" type="text/css">
<link rel="stylesheet" href="./css/owl.carousel.css" type="text/css">
<link rel="stylesheet" href="./css/magnific-popup.css" type="text/css">
<link rel="stylesheet" href="./css/main.css" type="text/css">
<script src="./js/modernizr.custom.js"></script>
</head>
<body>
<!-- Loading animation -->
<div class="preloader">
<div class="preloader-animation">
<div class="preloader-spinner">
</div>
</div>
</div>
<!-- /Loading animation -->
<div id="page" class="page">
<!-- Header -->
<header id="site_header" class="header mobile-menu-hide">
<div class="header-content clearfix">
<div class="my-photo">
<img src="./images/main.jpg" alt="image">
</div>
<div class="site-title-block">
<div class="site-title">Daniel Flores</div>
</div>
<!-- Navigation -->
<div class="site-nav">
<!-- Main menu -->
<ul id="nav" class="site-main-menu">
<li>
<a class="pt-trigger" href="#about-me">About Me</a>
</li>
<li>
<a class="pt-trigger" href="#resume">Resume</a>
</li>
<li>
<a class="pt-trigger" href="#portfolio">Portfolio</a>
</li>
<li>
<a class="pt-trigger" href="#contact">Contact</a>
</li>
</ul>
<!-- /Main menu -->
</div>
<!-- Navigation -->
<!-- Social Links -->
<div class="social-links">
<a href="https://www.linkedin.com/in/dafloresdiaz/" target="_blank"><i class="fab fa-linkedin"></i></a>
<a href="https://github.com/Dafloresdiaz" target="_blank"><i class="fab fa-github-square"></i></a>
</div>
<!-- / Social Links -->
<!-- Copyrights -->
<div class="copyrights">© 2021 All rights reserved.</div>
<!-- / Copyrights -->
</div>
</header>
<!-- /Header -->
<!-- Mobile Header -->
<div class="mobile-header mobile-visible">
<div class="mobile-logo-container">
<div class="mobile-header-image">
<a href="#">
<img src="./images/main.jpg" alt="image">
</a>
</div>
<div class="mobile-site-title"><a href="#">Daniel Flores</a></div>
</div>
<a class="menu-toggle mobile-visible">
<i class="fa fa-bars"></i>
</a>
</div>
<!-- /Mobile Header -->
<!-- Arrows Nav -->
<div class="lmpixels-arrows-nav">
<div class="lmpixels-arrow-left"><i class="lnr lnr-chevron-left"></i></div>
<div class="lmpixels-arrow-right"><i class="lnr lnr-chevron-right"></i></div>
</div>
<!-- /Arrows Nav -->
<!-- Main Content -->
<div id="main" class="site-main">
<!-- Page changer wrapper -->
<div class="pt-wrapper">
<!-- Subpages -->
<div class="subpages">
<!-- Home Subpage -->
<section class="pt-page" data-id="about-me">
<div class="section-inner start-page-full-width">
<div class="start-page-full-width">
<div class="row">
<div class="col-sm-12 col-md-6 col-lg-6">
<div class="inner-content">
<div class="fill-block"></div>
</div>
</div>
<div class="col-sm-12 col-md-6 col-lg-6">
<div class="inner-content">
<div class="hp-text-block">
<!-- Text rotation / Subtitle -->
<div class="owl-carousel text-rotation">
<div class="item">
<div class="sp-subtitle">Software Engineer</div>
</div>
<div class="item">
<div class="sp-subtitle">Developer</div>
</div>
<div class="item">
<div class="sp-subtitle">Python Developer</div>
</div>
<div class="item">
<div class="sp-subtitle">Gamer</div>
</div>
<div class="item">
<div class="sp-subtitle">iOS Developer</div>
</div>
<div class="item">
<div class="sp-subtitle">Sports Fan</div>
</div>
</div>
<!-- /Text rotation / Subtitle -->
<h2 class="hp-main-title">Daniel Flores</h2>
<p>Hi, my name is Daniel Flores, I'm currently living in Queretaro, Mexico; I'm 25 years, I have a degree in Computer Systems Engineer; In my free time, I like to study about new programming languages, do some programming, play video games and watch and practice sports.</p><p>Currently, I finished two personal projects to learn more about Python and Swift. The first project was to obtain the information about my favorite football team, the main objective is to have the info in a database for the past 10 years and the second one is an app-based in the Pomodoro technique.</p>
<div class="hp-buttons">
<a href="./Documents/CV-Daniel_Flores.pdf" target="_blank" class="btn btn-primary">Download CV</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="section-inner custom-page-content">
<div class="page-content">
<!-- Services Block Title -->
<div class="row">
<div class="col-xs-12 col-sm-12">
<div class="col-inner">
<div class="block-title">
<h3>What I Do</h3>
</div>
</div>
</div>
</div>
<!-- /Services Block Title -->
<!-- Services Block -->
<div class="row">
<div class="col-xs-12 col-sm-6">
<div class="col-inner">
<div class="info-list-w-icon">
<!-- Service Item 1 -->
<div class="info-block-w-icon">
<div class="ci-icon">
<i class="lnr lnr-code"></i>
</div>
<div class="ci-text">
<h4>Programming</h4>
<p>I like to program in my free time, learn new stuff that helps me to understand and improve my programming skills.</p>
</div>
</div>
<!-- /Service Item 1 -->
<!-- Service Item 2 -->
<div class="info-block-w-icon">
<div class="ci-icon">
<i class="lnr lnr-license"></i>
</div>
<div class="ci-text">
<h4>Proactive</h4>
<p> I like to read articles in medium, do courses, and create projects. The objective is to use what I learn in a real-world problem.</p>
</div>
</div>
<!-- Service Item 2 -->
</div>
</div>
</div>
<div class="col-xs-12 col-sm-6">
<div class="col-inner">
<div class="info-list-w-icon">
<!-- Service Item 3 -->
<div class="info-block-w-icon">
<div class="ci-icon">
<i class="lnr lnr-flag"></i>
</div>
<div class="ci-text">
<h4>Time Management</h4>
<p>I'm a very organizational person, I like to work by tasks or objectives, know what is the next step in the process to complete the work with quality. I like to use agile for software development.</p>
</div>
</div>
<!-- Service Item 3 -->
<!-- Service Item 4 -->
<div class="info-block-w-icon">
<div class="ci-icon">
<i class="lnr lnr-users"></i>
</div>
<div class="ci-text">
<h4>Teamwork </h4>
<p>I enjoy working with a team, the process of solving every problem is important to deliver a good quality product. Each member of the team has the opportunity to give ideas and share knowledge.</p>
</div>
</div>
<!-- Service Item 4 -->
</div>
</div>
</div>
</div>
<!-- /Services Block -->
</div>
</div>
</section>
<!-- End of Home Subpage -->
<!-- Resume Subpage -->
<section class="pt-page" data-id="resume">
<div class="section-inner custom-page-content">
<div class="section-title-block second-style">
<h2 class="section-title">Resume</h2>
<h5 class="section-description">5 Years of Experience</h5>
</div>
<div class="section-content">
<div class="row">
<div class="col-xs-12 col-sm-8">
<div class="col-inner bs-30">
<div class="block-title">
<h3>Education</h3>
</div>
<div class="timeline timeline-second-style bs-30 clearfix">
<div class="timeline-item clearfix">
<div class="left-part">
<h5 class="item-period">Aug 2012- Dec 2016</h5>
<span class="item-company">Universidad del Valle de México</span>
</div>
<div class="divider"></div>
<div class="right-part">
<h4 class="item-title">Bachelor's Degree Computer Systems Engineer</h4>
<p>Bachelor's degree in the Universidad del Valle de México with a certification with Laurete International Universities</p>
</div>
</div>
</div>
<div class="block-title">
<h3>Experience<span></span></h3>
</div>
<div class="timeline timeline-second-style clearfix">
<div class="timeline-item clearfix">
<div class="left-part">
<h5 class="item-period">Jun 2021 - Today</h5>
<span class="item-company">Wizeline</span>
</div>
<div class="divider"></div>
<div class="right-part">
<h4 class="item-title">Software Engineer III</h4>
<p>Responsible to create APIs, modified existed-legacy code, use AWS to handle the creation of lambda functions.</p>
<p>Achievements: </p>
<ul type="A">
<li type="circle">Worked with Factset in the creation and maintenance of APIs, using python-flask, sql as development tools.</li>
<li type="circle">Project in progress: Working with Facset to create and maintain lambda functions, to handle the CRUD. Using python, AWS and SQL as development tools</li>
</ul>
</div>
</div>
<div class="timeline-item clearfix">
<div class="left-part">
<h5 class="item-period">Nov 2020 - Jun 2021</h5>
<span class="item-company">Cargamos</span>
</div>
<div class="divider"></div>
<div class="right-part">
<h4 class="item-title">Backend Software Engineer</h4>
<p>Responsible to develop APIs to handle client requests to update, show and create records in the database.Main programming language Python and Flask, used Git and Bitbucket for version control, Jira for tracking work, Sonar Cloud to handle code scan to detect possible errors, and NoSQL. Google Cloud (Logs, Firebase, Pubsub, Storage), Kubernetes.</p>
<p>Achievements: </p>
<ul type="A">
<li type="circle">Created two APIs to handle the process of reading a CSV file, using pandas library to create records in the database and show the errors for each row in the CSV file. This helps to improve the time to save a bunch of records and handle errors. Using a foreground and background architecture.</li>
<li type="circle">Create an API to handle the creation of a pdf file, using the report lab library. Create the design of the label. Using a foreground and background architecture. This help to improve the time to scan and detect info of a package.</li>
<li type="circle">Gave technical meetings to the new members to explain how the code works and how is the architecture.</li>
<li type="circle">mprove my skills in Python, Flask, NoSQL and learn more about Google Cloud and Kubernetes.</li>
</ul>
</div>
</div>
<div class="timeline-item clearfix">
<div class="left-part">
<h5 class="item-period">Mar 2017 - Jul 2020</h5>
<span class="item-company">GE-General Electric</span>
</div>
<div class="divider"></div>
<div class="right-part">
<h4 class="item-title">Flight Management Embedded Software Engineer</h4>
<p>Responsible to develop the FMS for the COMAC C919 and Airbus for the User Interface team. As User interface member I was in charge to display the information to the pilot in the correct format and display the correct value. Responsible to do the verification process; Unit testing, follow the process to solve the issues and have technical meetings with lead engineers.</p>
<p>Achievements: </p>
<ul type="A">
<li type="circle">Started new verification process from the beginning; giving metrics about the process, giving my opinion to improve the process.</li>
<li type="circle">Find new ways to implement the code, this means to create new functions with the current architecture and making sure the new functions does not break the build, using git or RTC.</li>
<li type="circle">Learned Scrum Methodology Agile.</li>
<li type="circle">Improve my skills in ADA, Python, C, Git Hub.</li>
<li type="circle">Learned about the different aviation products.</li>
</ul>
</div>
</div>
<div class="timeline-item clearfix">
<div class="left-part">
<h5 class="item-period">Jul 2015 - Mar 2017</h5>
<span class="item-company">Ge-General Electric</span>
</div>
<div class="divider"></div>
<div class="right-part">
<h4 class="item-title">Software Engineer Intern</h4>
<p>Designed, programmed and implemented web tools (under the standards of the company), working with different areas and teams.Administration, maintenance and improvements of existing tools. I gave support and teach how to use the tool.</p>
<p>Achievements: </p>
<ul type="A">
<li type="circle">Learned new programming languages; PHP, Json and Javascript</li>
<li type="circle">I gave maintenance to 10 projects, I saved time for how to show the information and how the information was updated and show metrics.</li>
<li type="circle">I worked on three projects, I identified new problems in the team and work in an idea to solve it.</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-4">
<div class="col-inner">
<div class="block-title">
<h3>Personal Skills<span></span></h3>
</div>
<div class="skills-info skills-second-style">
<!-- Skill 1 -->
<div class="clearfix">
<h4>Flexibility</h4>
<div class="skill-value"><h4>Communication</h4></div>
</div>
<!-- /Skill 1 -->
<!-- Skill 2 -->
<div class="clearfix">
<h4>Ambitious</h4>
<div class="skill-value"><h4>Teamwork</h4></div>
</div>
<!-- /Skill 2 -->
<!-- Skill 3 -->
<div class="clearfix">
<h4>Responsible</h4>
<div class="skill-value"><h4>Adaptability</h4></div>
</div>
<!-- /Skill 3 -->
<!-- Skill 4 -->
<div class="clearfix">
<h4>Self-Starter</h4>
<div class="skill-value"><h4>Problem-Solving</h4></div>
</div>
<!-- /Skill 4 -->
<!-- Skill 5 -->
<div class="clearfix">
<h4>Assertive</h4>
<div class="skill-value"><h4>Organization</h4></div>
</div>
<!-- /Skill 5 -->
<!-- Skill 6 -->
<div class="clearfix">
<h4>Accountable</h4>
<div class="skill-value"><h4>Time Management</h4></div>
</div>
<!-- /Skill 6 -->
</div>
<div class="block-title ts-10">
<h3>Coding Skills<span></span></h3>
</div>
<div class="skills-info skills-second-style">
<!-- Skill 5 -->
<div class="clearfix">
<h4>Python</h4>
<div class="skill-value"><h4>Git</h4></div>
</div>
<!-- /Skill 5 -->
<!-- Skill 6 -->
<div class="clearfix">
<h4>ADA</h4>
<div class="skill-value"><h4>Java</h4></div>
</div>
<!-- /Skill 6 -->
<!-- Skill 7 -->
<div class="clearfix">
<h4>SQL</h4>
<div class="skill-value"><h4>SQLite</h4></div>
</div>
<!-- /Skill 7 -->
<div class="clearfix">
<h4>Swift (Basic)</h4>
<div class="skill-value"><h4>Linux</h4></div>
</div>
<!-- /Skill 8 -->
<div class="clearfix">
<h4>AWS</h4>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-xs-12 col-sm-12">
<div class="col-inner ts-30">
<a href="./Documents/CV-Daniel_Flores.pdf" target="_blank" class="btn btn-primary">Download CV</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End of Resume Subpage -->
<!-- Portfolio Subpage -->
<section class="pt-page" data-id="portfolio">
<div class="section-inner custom-page-content">
<div class="section-title-block second-style">
<h2 class="section-title">Portfolio</h2>
<h5 class="section-description">My projects</h5>
</div>
<div class="section-content">
<div class="row">
<div class="col-xs-12 col-sm-12">
<!-- Portfolio Content -->
<div class="portfolio-content">
<ul class="portfolio-filters">
<li class="active">
<a class="filter btn btn-sm btn-link" data-group="category_all">All</a>
</li>
<li>
<a class="filter btn btn-sm btn-link" data-group="category_python">Python</a>
</li>
<li>
<a class="filter btn btn-sm btn-link" data-group="category_swift">Swift</a>
</li>
</ul>
<!-- Portfolio Grid -->
<div class="portfolio-grid three-columns">
<figure class="item standard" data-groups='["category_all", "category_python"]'>
<div class="portfolio-item-img">
<img src="./images/portfolio/Pumas-Database.png" alt="Python Project" title="" />
<a href="https://github.com/Dafloresdiaz/Web-Scraping" target="_blank" title="Python Project"></a>
</div>
<i class="fa fa-file-alt"></i>
<h4 class="name">Pumas Database</h4>
<span class="category">Python</span>
</figure>
<figure class="item standard" data-groups='["category_all", "category_swift"]'>
<div class="portfolio-item-img">
<img src="./images/portfolio/25MinApp.png" alt="Python Project" title="" />
<a href="https://github.com/Dafloresdiaz/25-Min.-App-for-iOS" target="_blank" title="iOS App-Project"></a>
</div>
<i class="fa fa-file-alt"></i>
<h4 class="name">25 Min. Pomodoro App</h4>
<span class="category">Swift</span>
</figure>
</div>
</div>
<!-- /Portfolio Content -->
</div>
</div>
</div>
</div>
</section>
<!-- /Portfolio Subpage -->
<!-- Contact Subpage -->
<section class="pt-page" data-id="contact">
<div class="section-inner custom-page-content">
<div class="section-title-block second-style">
<h2 class="section-title">Contact</h2>
<h5 class="section-description">Get in Touch</h5>
</div>
<div class="section-content">
<div class="row">
<div class="col-xs-12 col-sm-3">
<div class="col-inner bs-30">
<div class="lm-info-block gray-default">
<i class="lnr lnr-phone-handset"></i>
<h4>(+52)442-347-3550</h4>
<span class="lm-info-block-value"></span>
<span class="lm-info-block-text"></span>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-3">
<div class="col-inner bs-30">
<div class="lm-info-block gray-default">
<i class="lnr lnr-map-marker"></i>
<h4>México, Querétaro</h4>
<span class="lm-info-block-value"></span>
<span class="lm-info-block-text"></span>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-3">
<div class="col-inner bs-30">
<div class="lm-info-block gray-default">
<i class="lnr lnr-envelope"></i>
<h4>[email protected]</h4>
<span class="lm-info-block-value"></span>
<span class="lm-info-block-text"></span>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-3">
<div class="col-inner bs-30">
<div class="lm-info-block gray-default">
<i class="lnr lnr-checkmark-circle"></i>
<h4>Freelance Available</h4>
<span class="lm-info-block-value"></span>
<span class="lm-info-block-text"></span>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class=" col-xs-12 col-sm-8 offset-sm-1 offset-sm-2">
<div class="col-inner ts-20">
<div class="block-title">
<h3>A job opportunity?</h3>
<h4>Send me an email to: [email protected]</h4>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Contact Subpage -->
</div>
</div>
<!-- /Page changer wrapper -->
</div>
<!-- /Main Content -->
</div>
<script src="./js/jquery-2.1.3.min.js"></script>
<script src="./js/bootstrap.min.js"></script>
<script src="./js/pages-switcher.js"></script>
<script src="./js/imagesloaded.pkgd.min.js"></script>
<script src="./js/validator.js"></script>
<script src="./js/jquery.shuffle.min.js"></script>
<script src="./js/masonry.pkgd.min.js"></script>
<script src="./js/owl.carousel.min.js"></script>
<script src="./js/jquery.magnific-popup.min.js"></script>
<script src='https://www.google.com/recaptcha/api.js'></script>
<!--<script src="https://maps.googleapis.com/maps/api/js?key=YOUR-API-KEY"></script>-->
<script src="https://maps.googleapis.com/maps/api/js"></script>
<script src="./js/jquery.googlemap.js"></script>
<script src="./js/main.js"></script>
</body>
</html>