-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·724 lines (691 loc) · 39.4 KB
/
index.html
File metadata and controls
executable file
·724 lines (691 loc) · 39.4 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
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
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Daniel Lungu</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Personal Page Description"/>
<meta name="keywords" content=""/>
<meta name="author" content=""/>
<!-- Facebook and Twitter integration -->
<meta property="og:title" content=""/>
<meta property="og:image" content=""/>
<meta property="og:url" content=""/>
<meta property="og:site_name" content=""/>
<meta property="og:description" content=""/>
<meta name="twitter:title" content=""/>
<meta name="twitter:image" content=""/>
<meta name="twitter:url" content=""/>
<meta name="twitter:card" content=""/>
<!-- Place favicon.ico and apple-touch-icon.png in the root directory -->
<link rel="shortcut icon" href="images/favicon.ico">
<link href="https://fonts.googleapis.com/css?family=Quicksand:300,400,500,700" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Playfair+Display:400,400i,700" rel="stylesheet">
<!-- Animate.css -->
<link rel="stylesheet" href="css/animate.css">
<!-- Icomoon Icon Fonts-->
<link rel="stylesheet" href="css/icomoon.css">
<!-- Bootstrap -->
<link rel="stylesheet" href="css/bootstrap.css">
<!-- Flexslider -->
<link rel="stylesheet" href="css/flexslider.css">
<!-- Owl Carousel -->
<link rel="stylesheet" href="css/owl.carousel.min.css">
<link rel="stylesheet" href="css/owl.theme.default.min.css">
<!-- Theme style -->
<link rel="stylesheet" href="css/style.css">
<!-- Modernizr JS -->
<script src="js/modernizr-2.6.2.min.js"></script>
<!-- FOR IE9 below -->
<!--[if lt IE 9]>
<script src="js/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div id="website-page">
<div class="container-wrap">
<a href="#" class="js-website-nav-toggle website-nav-toggle" data-toggle="collapse" data-target="#navbar"
aria-expanded="false" aria-controls="navbar"><i></i></a>
<aside id="website-aside" role="complementary" class="border js-fullheight">
<nav id="website-main-menu" role="navigation" class="navbar">
<div id="navbar" class="collapse">
<ul>
<li class="active"><a href="#" data-nav-section="about">About</a></li>
<li><a class="navigate" href="#" data-nav-section="experience">Experience</a></li>
<li><a class="navigate" href="#" data-nav-section="skills">Skills</a></li>
<li><a class="navigate" href="#" data-nav-section="blog">Blog</a></li>
<li><a class="navigate" href="#" data-nav-section="education">Education</a></li>
<li><a class="navigate" href="#" data-nav-section="work">Projects</a></li>
<li><a class="navigate" href="#" data-nav-section="volunteer">Volunteer</a></li>
<li><a class="navigate" href="#" data-nav-section="certificates">Certificates</a></li>
</ul>
</div>
</nav>
</aside>
<div id="website-main">
<section>
<div class="contact-links">
<a class="social-link" target="_blank" href="https://www.linkedin.com/in/daniel-lungu-b1a2036a/">
<img class="social" src="images/linkedin.svg" alt="LinkedIn"/>
</a>
<a class="social-link" target="_blank"
href="https://stackoverflow.com/users/3450684/lungu-daniel?tab=profile">
<img class="social" src="images/overflowing.svg" alt="StackOverflow"/>
</a>
<a class="social-link" target="_blank" href="https://github.com/Daniel194">
<img class="social" src="images/github-logo.svg" alt="GitHub"/>
</a>
<a class="social-link" target="_blank" href="https://medium.com/@daniellungu">
<img class="social" src="images/medium.svg" alt="Medium"/>
</a>
<a class="email" href="mailto:daniel.lungu@transform-it.net">
<img class="social" src="images/email.svg" alt="Email"/>
</a>
</div>
</section>
<section id="website-hero" data-section="about">
<div id="particles-js-1" class="flexslider">
<ul class="slides">
<li>
<div class="overlay"></div>
<div class="container-fluid">
<div class="slider-text">
<div class="slider-text-inner">
<div class="desc">
<div class="greetings">
<div class="author-img" style="background-image: url(images/profile.jpeg);"></div>
<h1>Hi! I'm Daniel</h1>
</div>
<h2 id="information"></h2>
</div>
</div>
</div>
</div>
</li>
</ul>
</div>
</section>
<div class="row row-pt-md content">
<div class="col-md-7">
<section class="website-experience" data-section="experience">
<div class="website-narrow-content-left">
<div class="row">
<div class="col-md-6 col-md-offset-3 col-md-pull-3 animate-box" data-animate-effect="fadeInLeft">
<span class="heading-meta">Experience</span>
<h2 class="website-heading animate-box">Work Experience</h2>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="timeline-centered">
<article class="timeline-entry animate-box" data-animate-effect="fadeInLeft">
<div class="timeline-entry-inner">
<div class="timeline-icon color-4">
</div>
<div class="timeline-label">
<h2><a href="#">Loonio</a> <span>03/2022-PRESENT</span></h2>
<p>Rearchitected a monolithic application into a microservices and event-driven architecture to enhance scalability and fault tolerance.</p>
<p>Replatformed the application on AWS using Terraform, using S3, ECS, RDS, DynamoDB, ElastiCache, API Gateway, Application Load Balancer, SQS, SNS, and Lambda functions.</p>
<p>Built new features using Java 21, Spring Boot, and Angular, enhanced application logic, code quality, and testing practices, while mentored and guided the development team.</p>
<p>Implemented application and business metrics for improved monitoring using Terraform, CloudWatch, Lambda, Prometheus, and Grafana.</p>
<p>Created Bitbucket CI/CD pipelines and improved application deployment across all environments using AWS CodeDeploy with a blue-green deployment strategy.</p>
<p>Created documentation, defined tasks, and led the development team in extracting microservices from the monolith.</p>
<p>Collaborated closely with the quality assurance team to integrate automated and performance tests into the CI/CD pipelines.</p>
<p>Investigated, monitored, and resolved potential performance issues before production deployment.</p>
<p>Conducted interviews to recruit developers and quality assurance team members.</p>
<p>Enhanced application security on AWS while reducing costs by 25%.</p>
</div>
</div>
</article>
<article class="timeline-entry animate-box" data-animate-effect="fadeInBottom">
<div class="timeline-entry-inner">
<div class="timeline-icon color-4">
</div>
<div class="timeline-label">
<h2><a href="#">Finced</a> <span>01/2023-02/2025</span></h2>
<p>Developed a stock market portfolio tracking platform using Java, Spring Boot,
and React Native, with automated deployment to AWS through Terraform and Bitbucket CI/CD.</p>
<p>Designed the architecture based on a modular monolith and hexagonal patterns,
and selecting the technology stack for the application.</p>
<p>Collected user feedback and collaborate with the cofounder to define next steps. Define the budget and allocate costs.</p>
</div>
</div>
</article>
<article class="timeline-entry animate-box" data-animate-effect="fadeInLeft">
<div class="timeline-entry-inner">
<div class="timeline-icon color-5">
</div>
<div class="timeline-label">
<h2><a href="#">Toptal</a> <span>02/2021-03/2022</span></h2>
<p>Developed an ergonomics SaaS application using Spring Boot, Java 17, TypeScript,
and Angular, and deployed it to AWS using Terraform and Docker.</p>
<p>Developed new microservices for multi-user authentication, worker body evaluation and
training, while coordinating cross-department efforts for smooth production deployments.</p>
<p>Created documentation, managing tasks, and leading team meetings to drive ongoing application improvements.</p>
</div>
</div>
</article>
<article class="timeline-entry animate-box" data-animate-effect="fadeInTop">
<div class="timeline-entry-inner">
<div class="timeline-icon color-1">
</div>
<div class="timeline-label">
<h2><a href="#">Upwork</a> <span>03/2020-05/2022</span></h2>
<p>Worked as a tech lead on a team of five developers for a carbon analytics SaaS application.
The application was developed with Spring Boot, Java 17, React, and Python and deployed to AWS
in EC2 instances with Jenkins and Docker.</p>
<p>Built a stock market analytics platform which display data in different charts for stock
options for a specific stock symbol. The product was developed for financial industry with
Java 11, ReactJS, Spring Boot, PostgreSQL and Highcharts.</p>
<p>Built a platform for sellers to find the best supplier for a product and automate the
process of ordering, shipping and paying to a customer. The product was developed for
retails industry with Java 11, ReactJS, Spring Boot, PostgreSQL and Stripe.</p>
<p>Developed a bot for the stock market to automate trading processes based on specific rules
defined by the user in the UI. The product was created for the financial industry with Java 11,
React, Spring Boot, and PostgreSQL and deployed in AWS.</p>
<p>Built a stock market system for a client from the financial industry. Improved the quality
and the performance of the existing code, and added unit and functional tests.</p>
<p>Oversaw an entire client's project—understood the client's needs, discussed the requirements,
established the price and the deadline for new development, and delivered the solution.</p>
</div>
</div>
</article>
<article class="timeline-entry animate-box" data-animate-effect="fadeInLeft">
<div class="timeline-entry-inner">
<div class="timeline-icon color-2">
</div>
<div class="timeline-label">
<h2><a href="#">Orange Services</a> <span>07/2018-12/2020</span></h2>
<p>Developed and maintained a device management system application which manage and monitor
over 10 million devices. The application is for telecom industry and it was developed with
Java, Spring, MySQL, ElasticSearch, Kafka and deployed in OpenShift.</p>
<p>Decoupled the user interface from the backend by using REST Services and migrated the
application from an IaaS platform to a PaaS platform with CI/CD pipelines created with
Docker, GitLab CI/CD, Kubernetes and OpenShift.</p>
<p>Create a web application which simulate TR69 protocol for testing different communication
strategies with a device. The application is for telecom industry and it was developed with
Java, Spring Boot, MariaDB, Angular and TypeScript.</p>
<p>Manage a team of 5 members in developing a web application. Establish deadlines, helping
members in blocking points, discuss and establish the requirements, monitor the development
of the application and follow Scrum methodology.</p>
<p>Holding programming lessons for college students and participate in the interview process
for a new candidate.</p>
</div>
</div>
</article>
<article class="timeline-entry animate-box" data-animate-effect="fadeInRight">
<div class="timeline-entry-inner">
<div class="timeline-icon color-3">
</div>
<div class="timeline-label">
<h2><a href="#">IBM</a> <span>05/2017-07/2018</span></h2>
<p>Contributed for two applications in the banking industry, compliance division, where the
compliance officers can determine or report if a transaction will cause income gain or loss.
The application was developed in Java EE, OracleDB, PL/SQL and JSP.</p>
<p>Redesigned the web interface and added additional functionalities. Changed the way files
were integrated into the application. Created a new module that automated manual working
process to bring stock data information in the application.</p>
<p>Met deadlines and provided deployment support when it was needed and assisted the client in
unlocking certain blocking points for the project.</p>
</div>
</div>
</article>
<article class="timeline-entry animate-box" data-animate-effect="fadeInLeft">
<div class="timeline-entry-inner">
<div class="timeline-icon color-4">
</div>
<div class="timeline-label">
<h2><a href="#">UBIS</a> <span>07/2016-05/2017</span></h2>
<p>Worked on a web application that facilitates the file sharing between UniCredit and OeNB
(Österreich Nationalbank). This application generates, edits, and converts reports from XLS
format to XML format.</p>
<p>Developed a new web module where users can add, edit, and archive the release documentation
for a software product. The product was developed with Java 8, IBM DB2 and Vaadin.</p>
<p>Tracked and fixed bugs using Jira as a reporting tool. Participate in Agile meetings and
understand the clients needs and requirements.</p>
</div>
</div>
</article>
<article class="timeline-entry animate-box" data-animate-effect="fadeInTop">
<div class="timeline-entry-inner">
<div class="timeline-icon color-5">
</div>
<div class="timeline-label">
<h2><a href="#">Clarisoft</a> <span>07/2015-07/2016</span></h2>
<p>Worked on a clinical trial management system (CTMS) designed to accommodate regulatory
compliance and enhance clinical research operations. The products is for health care
industry and developed with C#, .Net, SQLServer and Telerik.</p>
<p>Developed and redesigned some functionality of the application based on the documentation.
Redesign the user interface based on the received documentation.</p>
<p>Created a cross-mobile social media application with Xamarin, .Net and C#. The platform
bring on the same application all the social medial platform to facilitate the following for
different celebrities.</p>
</div>
</div>
</article>
<article class="timeline-entry begin animate-box" data-animate-effect="fadeInBottom">
<div class="timeline-entry-inner">
<div class="timeline-icon color-none">
</div>
</div>
</article>
</div>
</div>
</div>
</div>
</section>
<section class="website-education" data-section="education">
<div class="website-narrow-content-left">
<div class="row">
<div class="col-md-6 col-md-offset-3 col-md-pull-3 animate-box" data-animate-effect="fadeInLeft">
<span class="heading-meta">Education</span>
<h2 class="website-heading animate-box">Education</h2>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="timeline-centered">
<article class="timeline-entry begin animate-box" data-animate-effect="fadeInLeft">
<div class="timeline-entry-inner">
<div class="timeline-icon color-1">
</div>
<div class="timeline-label">
<h2><a href="#">University of Bucharest</a> <span>10/2013-06/2017</span></h2>
<p>Bachelor of Science (BS): Computer Engineering Degree</p>
</div>
</div>
</article>
</div>
</div>
</div>
</div>
</section>
<section class="website-volunteer" data-section="volunteer">
<div class="website-narrow-content-left">
<div class="row">
<div class="col-md-12 animate-box" data-animate-effect="fadeInLeft">
<span class="heading-meta">Volunteer</span>
<h2 class="website-heading animate-box">Volunteer Experience</h2>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="timeline-centered">
<article class="timeline-entry animate-box" data-animate-effect="fadeInLeft">
<div class="timeline-entry-inner">
<div class="timeline-icon color-2">
</div>
<div class="timeline-label">
<h2><a href="#">Stack Overflow</a> <span>04/2019-PRESENT</span></h2>
<p>Assisting software developers worldwide with technical challenges in Java, Spring, Spring Boot, Spring Security, Hibernate, and Docker.</p>
</div>
</div>
</article>
<article class="timeline-entry animate-box" data-animate-effect="fadeInRight">
<div class="timeline-entry-inner">
<div class="timeline-icon color-3">
</div>
<div class="timeline-label">
<h2><a href="#">Medium</a> <span>03/2020-PRESENT</span></h2>
<p>Writing blog posts about programming, how to develop an application from scratch and other
things about software development, for free.</p>
</div>
</div>
</article>
<article class="timeline-entry begin animate-box" data-animate-effect="fadeInTop">
<div class="timeline-entry-inner">
<div class="timeline-icon color-1">
</div>
<div class="timeline-label">
<h2><a href="#">Code for Romania</a> <span>10/2019-08/2021</span></h2>
<p>Helping in building Legal Consultation, a project designed to ease the process of public consultation with experts in Romania, with Java 11, Spring Boot and Angular 8.</p>
</div>
</div>
</article>
<article class="timeline-entry begin animate-box" data-animate-effect="fadeInBottom">
<div class="timeline-entry-inner">
<div class="timeline-icon color-none">
</div>
</div>
</article>
</div>
</div>
</div>
</div>
</section>
<section class="website-certificate" data-section="certificates">
<div class="website-narrow-content-left">
<div class="row">
<div class="col-md-12 animate-box" data-animate-effect="fadeInLeft">
<h2 class="website-heading">Certificates</h2>
</div>
</div>
<div class="row row-pt-md">
<div class="col-md-12 animate-box">
<div class="services color-1">
<div class="desc">
<h3>AWS Certified Solutions Architect - Professional (07/2025 - 07/2028)</h3>
<p>Validation Number: 0f2a3713588f49d8bbaf1c967d6b820a</p>
</div>
</div>
</div>
<div class="col-md-12 animate-box">
<div class="services color-2">
<div class="desc">
<h3>AWS Certified AI Practitioner (08/2025 - 08/2028)</h3>
<p>Validation Number: d760198f768544a1a432cc2b48d1cfee</p>
</div>
</div>
</div>
<div class="col-md-12 animate-box">
<div class="services color-3">
<div class="desc">
<h3>AWS Certified Solutions Architect - Associate (08/2023 - 08/2026)</h3>
<p>Validation Number: LG9JV3NK9JF1QQSR</p>
</div>
</div>
</div>
<div class="col-md-12 animate-box">
<div class="services color-4">
<div class="desc">
<h3>AWS Certified Cloud Practitioner (03/2023 - 03/2026)</h3>
<p>Validation Number: 7T3WBVW14E4QQT9T</p>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
<div class="col-md-5">
<section class="website-services" data-section="skills">
<div class="website-narrow-content-right">
<div class="row">
<div class="col-md-12 animate-box" data-animate-effect="fadeInLeft">
<span class="heading-meta">What I do?</span>
<h2 class="website-heading">Some of my expertise</h2>
</div>
</div>
<div class="row row-pt-md">
<div class="col-md-12 animate-box">
<div class="services color-1">
<div class="desc">
<h3>Architecture & Cloud</h3>
<p>AWS, Terraform, Kubernetes, Microservices, Event-Driven Systems, Modular Monolith, Hexagonal Architecture</p>
</div>
</div>
</div>
<div class="col-md-12 animate-box">
<div class="services color-2">
<div class="desc">
<h3>Backend</h3>
<p>Java, Spring Boot, Gradle, Hibernate, Liquibase, Redis, Kafka</p>
</div>
</div>
</div>
<div class="col-md-12 animate-box">
<div class="services color-3">
<div class="desc">
<h3>CI/CD & DevOps</h3>
<p>Docker, Bitbucket Pipelines, Git, Bash, Prometheus, Grafana</p>
</div>
</div>
</div>
<div class="col-md-12 animate-box">
<div class="services color-4">
<div class="desc">
<h3>Databases</h3>
<p>OracleDB, PostgreSQL, MySQL, MongoDB, DynamoDB</p>
</div>
</div>
</div>
<div class="col-md-12 animate-box">
<div class="services color-5">
<div class="desc">
<h3>Frontend</h3>
<p>JavaScript, TypeScript, Angular, React, React Native, Redux</p>
</div>
</div>
</div>
<div class="col-md-12 animate-box">
<div class="services color-6">
<div class="desc">
<h3>Testing</h3>
<p>jUnit, Mockito, Gatling, Cypress</p>
</div>
</div>
</div>
<div class="col-md-12 animate-box">
<div class="services color-7">
<div class="desc">
<h3>Leadership</h3>
<p>Team mentorship, performance improvements, interviewing, agile delivery</p>
</div>
</div>
</div>
<div class="col-md-12 animate-box">
<div class="services color-8">
<div class="desc">
<h3>GenAI/AI</h3>
<p>AWS AI/ML Services, Neural Networks, Prompt Engineering</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="website-blog" data-section="blog">
<div class="website-narrow-content-right">
<div class="row">
<div class="col-md-6 col-md-offset-3 col-md-pull-3 animate-box" data-animate-effect="fadeInLeft">
<span class="heading-meta">Read</span>
<h2 class="website-heading">Recent Blog</h2>
</div>
</div>
<div class="row">
<div class="col-md-10 col-sm-10 animate-box" data-animate-effect="fadeInLeft">
<div class="blog-entry">
<a
href="https://daniellungu.medium.com/build-a-scalable-and-fault-tolerance-application-part-1-create-the-project-d58929ecd828"
target="_blank" class="blog-img">
<img src="images/blog-1.png" class="img-responsive" alt="HTML5 Bootstrap"></a>
<div class="desc">
<span><small>Software Development</small> | <small> Web application </small></span>
<h3><a
href="https://daniellungu.medium.com/build-a-scalable-and-fault-tolerance-application-part-1-create-the-project-d58929ecd828"
target="_blank">Build a scalable and fault tolerance application — Part 1 — Create the
project</a></h3>
</div>
</div>
</div>
<div class="col-md-10 col-sm-10 animate-box" data-animate-effect="fadeInTop">
<div class="blog-entry">
<a
href="https://daniellungu.medium.com/build-a-scalable-and-fault-tolerance-application-part-2-add-business-logic-a25bbe279fa1"
target="_blank" class="blog-img">
<img src="images/blog-2.png" class="img-responsive" alt="HTML5 Bootstrap"></a>
<div class="desc">
<span><small>Software Development</small> | <small> Web application </small></span>
<h3><a
href="https://daniellungu.medium.com/build-a-scalable-and-fault-tolerance-application-part-2-add-business-logic-a25bbe279fa1"
target="_blank">Build a scalable and fault tolerance application - Part 2 - Add
business logic</a></h3>
</div>
</div>
</div>
<div class="col-md-10 col-sm-10 animate-box" data-animate-effect="fadeInBottom">
<div class="blog-entry">
<a
href="https://daniellungu.medium.com/build-a-scalable-and-fault-tolerance-application-part-3-deploy-app-to-aws-9284bf5cef27"
target="_blank" class="blog-img">
<img src="images/blog-3.png" class="img-responsive" alt="HTML5 Bootstrap"></a>
<div class="desc">
<span><small>Software Development</small> | <small> Web application </small></span>
<h3><a
href="https://daniellungu.medium.com/build-a-scalable-and-fault-tolerance-application-part-3-deploy-app-to-aws-9284bf5cef27"
target="_blank">Build a scalable and fault tolerance application — Part 3 — Deploy app to
AWS</a></h3>
</div>
</div>
</div>
<div class="col-md-10 col-sm-10 animate-box" data-animate-effect="fadeInLeft">
<div class="blog-entry">
<a
href="https://daniellungu.medium.com/spring-application-monitoring-in-aws-eks-with-prometheus-and-grafana-dc5eb2f127f9"
target="_blank" class="blog-img">
<img src="images/blog-4.png" class="img-responsive" alt="HTML5 Bootstrap"></a>
<div class="desc">
<span><small>Software Development</small> | <small> Web application </small></span>
<h3><a
href="https://daniellungu.medium.com/spring-application-monitoring-in-aws-eks-with-prometheus-and-grafana-dc5eb2f127f9"
target="_blank">Spring application monitoring in AWS EKS with Prometheus and Grafana</a></h3>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="website-work" data-section="work">
<div class="website-narrow-content-right">
<div class="row">
<div class="col-md-6 col-md-offset-3 col-md-pull-3 animate-box" data-animate-effect="fadeInLeft">
<span class="heading-meta">Personal Projects</span>
<h2 class="website-heading animate-box">Recent Work</h2>
</div>
</div>
<div class="row">
<div class="col-md-6 animate-box" data-animate-effect="fadeInRight">
<div class="project" style="background-image: url(images/img-5.jpg);">
<div class="desc">
<div class="con">
<h3>
<a href="https://github.com/Daniel194/travelers-gateway" target="_blank">Travelers</a>
</h3>
<span>A social web platform created for travelers around the world to create content and share their experience from a particular trip. It was developed to be easy to scale horizontally and fault tolerant with high availability in a microservices architecture with: JHipster, Spring Boot, Java 11, ReactJS, Apache Kafka, Redis, Elasticsearch, Gatling, Cucumber, OpenAPI, MongoDB, Docker and deployed to AWS.</span>
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInRight">
<div class="project" style="background-image: url(images/img-4.png);">
<div class="desc">
<div class="con">
<h3>
<a href="https://github.com/Daniel194/Money-Management" target="_blank">Money Management</a>
</h3>
<span>A platform which provide a simple way to deal with personal finances (income, expense and savings). It was developed with a microservices architecture in the following technologies: Java 8, Gradle, Spring Boot, Spring Cloud, Angular 5, Docker and MongoDB.</span>
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInTop">
<div class="project" style="background-image: url(images/img-3.jpg);">
<div class="desc">
<div class="con">
<h3>
<a href="https://github.com/Daniel194/Transforming-How-We-Diagnose-Heart-Disease"
target="_blank">
Transforming How We Diagnose Heart Disease</a>
</h3>
<span>I developed this project as my degree paper. The purpose was to find new ways to determine either a person has a heart condition or not, using its radiology images and an artificial neural network trained on those images. The project was developed in Pythone 3.6 and TensorFlow library.</span>
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInLeft">
<div class="project" style="background-image: url(images/img-1.jpg);">
<div class="desc">
<div class="con">
<h3>
<a href="https://github.com/Daniel194/Clinical-Management" target="_blank">Clinical
Management</a>
</h3>
<span>A project designed for private clinics to help them in manage the patients and the appointments. It was developed with a microservices architecture in the following technologies: Java 8, Gradle, Spring Boot, Spring Cloud, Angular 5, Docker and MongoDB.</span>
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInRight">
<div class="project" style="background-image: url(images/img-2.jpeg);">
<div class="desc">
<div class="con">
<h3><a href="https://github.com/Daniel194/Jobzz" target="_blank">Jobzz</a></h3>
<span>This platform has been designed to simplify the communication between employers and freelancers. It was a great opportunity for me to expand my knowledge in the following technologies: Java 8, Spring Boot, Spring Security, MySql, AngularJS, Maven, SASS.</span>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
<div id="particles-js-2">
<div id="website-counter" class="website-counters"
data-stellar-background-ratio="0.5">
<div class="overlay"></div>
<div class="website-narrow-content">
<div class="row">
</div>
<div class="row">
<div class="col-md-2 text-center animate-box">
<span class="website-counter js-counter" data-from="0" data-to="20000" data-speed="5000"
data-refresh-interval="50"></span>
<span class="website-counter-label">Hours of work</span>
</div>
<div class="col-md-2 text-center animate-box">
<span class="website-counter js-counter" data-from="0" data-to="20" data-speed="5000"
data-refresh-interval="50"></span>
<span class="website-counter-label">Projects</span>
</div>
<div class="col-md-2 text-center animate-box">
<span class="website-counter js-counter" data-from="0" data-to="15" data-speed="5000"
data-refresh-interval="50"></span>
<span class="website-counter-label">Clients</span>
</div>
<div class="col-md-2 text-center animate-box">
<span class="website-counter js-counter" data-from="0" data-to="30" data-speed="5000"
data-refresh-interval="50"></span>
<span class="website-counter-label">GitHub Repositories</span>
</div>
<div class="col-md-2 text-center animate-box">
<span class="website-counter js-counter" data-from="0" data-to="844" data-speed="5000"
data-refresh-interval="50"></span>
<span class="website-counter-label">StackOverflow Reputation</span>
</div>
<div class="col-md-2 text-center animate-box">
<span class="website-counter js-counter" data-from="0" data-to="4" data-speed="5000"
data-refresh-interval="50"></span>
<span class="website-counter-label">Blogs</span>
</div>
</div>
</div>
</div>
</div>
</div><!-- end:website-main -->
</div><!-- end:container-wrap -->
</div><!-- end:website-page -->
<!-- jQuery -->
<script src="js/jquery.min.js"></script>
<!-- jQuery Easing -->
<script src="js/jquery.easing.1.3.js"></script>
<!-- Bootstrap -->
<script src="js/bootstrap.min.js"></script>
<!-- Waypoints -->
<script src="js/jquery.waypoints.min.js"></script>
<!-- Flexslider -->
<script src="js/jquery.flexslider-min.js"></script>
<!-- Owl carousel -->
<script src="js/owl.carousel.min.js"></script>
<!-- Counters -->
<script src="js/jquery.countTo.js"></script>
<!-- Particle -->
<script src="js/particles.min.js"></script>
<!-- Typed -->
<script src="js/typed.min.js"></script>
<!-- MAIN JS -->
<script src="js/main.js"></script>
<script src="js/particle.js"></script>
</body>
</html>