-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
561 lines (542 loc) · 29.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
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
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/html">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AdiCode Solutions - Solutions in Every Line of Code</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /> <link rel="stylesheet" type="text/css" href="css/master.css">
<link href="https://fonts.googleapis.com/css?family=Lato|Roboto" rel="stylesheet">
<link href="https://cdn.materialdesignicons.com/2.0.46/css/materialdesignicons.min.css" rel="stylesheet">
<script src="https://www.google.com/recaptcha/api.js"></script>
<script src="https://www.google.com/recaptcha/api.js?render=6Ldapj8pAAAAAPcYs_5MbsBwD3QGt02l4UTPRWQf"></script>
</head>
<body>
<header class="header">
<div class="container">
<div class="row">
<div class="col-md-3 col-xs-8 slideInLeft">
<div class="logo">
<span class="point">AdiCode</span><span>Solutions</span>
</div>
</div>
<div class="col-md-9 hidden-sm hidden-xs slideInRight">
<div class="main-menu">
<ul class="list-inline">
<li><a href="#hello">Hello</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#expertise">Expertise</a></li>
<!-- <li><a href="#experience">Experience</a></li> -->
<li><a href="#contact">Contact us</a></li>
</ul>
</div>
</div>
<div class="col-xs-4 hidden-lg hidden-md slideInRight">
<div class="mobile-btn">
<span><i class="mdi mdi-menu" aria-hidden="true"></i></span>
</div>
</div>
</div>
</div>
</header>
<!-- Mobile menu -->
<div class="mob-menu-wrapper hidden-md hidden-lg">
<div class="close-mob-menu">
<span><i class="mdi mdi-close" aria-hidden="true"></i></span>
</div>
<div class="mobile-menu">
<ul>
<li><a href="#hello">Hello</a></li>
<li><a href="#services">services</a></li>
<li><a href="#expertise">expertise</a></li>
<li><a href="#experience">Experience</a></li>
<li><a href="#contact">Contact us</a></li>
</ul>
</div>
</div>
<!-- Mobile menu -->
<section id="hello" class="section">
<div class="container">
<div class="row">
<div class="col-md-6 about-img-wrap">
<div class="about-img wow slideInRight">
<img src="media/image.jpg" alt="" class="img-responsive">
</div>
</div>
<div class="col-md-6">
<div class="about-me wow slideInLeft">
<div class="about-me-title">
<h1><span class="point">AdiCode</span><span>Solutions</span></h1>
<br />
<h4><span>Empowering Your Data Journey</span></h4>
<br />
</div>
<div class="about-me-text">
<div class="opacity-box">
<p>Welcome to AdiCode Solutions, led by Adil, where data innovation and engineering excellence converge.
With a decade of expertise in Back-end Development, Cloud Infrastructure, and Web Development,
we specialize in Data Engineering, offering top-notch solutions for complex data challenges.
</p>
</div>
</div>
<div class="about-me-info">
<p>
<span class="span-title">Email</span>
<span>[email protected]</span>
</p>
<p>
<span class="span-title">Address</span>
<span>Sector 4, 205D Drumul Binelui Street Floor 1, Room 5 <br >Bucuresti - 010011 Romania</span>
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="services" class="section">
<div class="container">
<div class="row wave-bg">
<div class="zigzag wow slideInLeft">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px"
y="0px" viewBox="0 0 105 20" xml:space="preserve">
<g>
<rect class="st0" width="105" height="20"/>
<g>
<polyline class="st1"
points="2.5,5 16.8,15 31.1,5 45.3,15 59.6,5 73.9,15 88.2,5 102.5,15 "/>
</g>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px"
y="0px" viewBox="0 0 105 20" xml:space="preserve">
<g>
<rect class="st0" width="105" height="20"/>
<g>
<polyline class="st1"
points="2.5,5 16.8,15 31.1,5 45.3,15 59.6,5 73.9,15 88.2,5 102.5,15 "/>
</g>
</g>
</svg>
</div>
<div class="col-md-4 wow slideInLeft">
<div class="section-sidebar">
<h2><span class="point">Services</span></h2>
<div class="opacity-box">
<p>Service excellence is the cornerstone of AdiCode Solutions. With an impressive track record spanning over a decade in Data Platform Engineering, Cloud Infrastructure Solutions, Web Development, and Technical Consultation, we proudly stand as your trusted partner on the path to success.</p>
<br />
</div>
</div>
</div>
<div class="col-md-8">
<div class="row">
<div class="col-md-6 wow zoomIn">
<div class="advantages-box">
<h4><i class="fas fa-database icon-blue"></i> Data Platform Engineering</h4>
<div class="opacity-box">
<p>Unleash the full potential of your data with our Data Platform Engineering expertise. We specialize in designing and implementing cutting-edge data solutions that drive innovation and efficiency. Whether it's building data pipelines, optimizing data storage, or enabling real-time analytics, we've got you covered.</p>
</div>
</div>
</div>
<div class="col-md-6 wow zoomIn">
<hr class="mobile-hr">
<div class="advantages-box">
<h4><i class="fas fa-cloud icon-blue"></i> Cloud Infrastructure Solutions</h4>
<div class="opacity-box">
<p>Harness the power of the cloud with our Cloud Infrastructure Solutions. From AWS to Kubernetes, we'll help you leverage cloud technologies to scale your applications, improve resilience, and reduce operational overhead. Our experts ensure your infrastructure is agile, cost-effective, and ready to support your business goals.</p>
</div>
</div>
</div>
<div class="col-md-6 wow zoomIn">
<hr>
<div class="advantages-box">
<h4><i class="fas fa-laptop-code icon-blue"></i> Web Development</h4>
<div class="opacity-box">
<p>Take your online presence to the next level with our Web Development services. We create user-friendly, responsive websites and web applications that captivate your audience. Our expertise spans a wide range of technologies, including HTML/CSS, JavaScript, ReactJS, and more, ensuring your digital footprint is strong and dynamic.</p>
</div>
</div>
</div>
<div class="col-md-6 wow zoomIn">
<hr>
<div class="advantages-box">
<h4><i class="fas fa-lightbulb icon-blue"></i> Technical Consultation</h4>
<div class="opacity-box">
<p>Tap into our technical expertise with our Technical Consultation services. Whether you need guidance on data strategy, architectural reviews, or technology adoption, we provide insightful advice and recommendations. We're committed to empowering your team with the knowledge and best practices needed for success.</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="text-center">
<br /><!-- Center align the button -->
<div class="about-btns">
<a data-toggle="modal" data-target="#contact-modal" href="#" class="site-btn">Contact us</a>
</div>
</div>
</div>
</section>
<section id="expertise" class="section">
<div class="container">
<div class="row wave-bg">
<div class="zigzag wow slideInLeft">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px"
y="0px" viewBox="0 0 105 20" xml:space="preserve">
<g>
<rect class="st0" width="105" height="20"/>
<g>
<polyline class="st1"
points="2.5,5 16.8,15 31.1,5 45.3,15 59.6,5 73.9,15 88.2,5 102.5,15 "/>
</g>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px"
y="0px" viewBox="0 0 105 20" xml:space="preserve">
<g>
<rect class="st0" width="105" height="20"/>
<g>
<polyline class="st1"
points="2.5,5 16.8,15 31.1,5 45.3,15 59.6,5 73.9,15 88.2,5 102.5,15 "/>
</g>
</g>
</svg>
</div>
<div class="col-md-4 wow slideInLeft">
<div class="section-sidebar">
<h2><span class="point">Expertise</span></h2>
<div class="opacity-box">
<p>We are inspired by collaborating with individuals who are as passionate as we are about building something awesome.</p>
</div>
</div>
</div>
<div class="col-md-8">
<div class="row">
<div class="col-md-6 wow zoomIn">
<div class="advantages-box">
<h4><i class="fas fa-code"></i> Programming</h4>
<div class="opacity-box">
<p>Java, Golang, Microservices, Unix/Linux, Bash, C, Perl, Node.JS, Python.</p>
</div>
</div>
</div>
<div class="col-md-6 wow zoomIn">
<hr class="mobile-hr">
<div class="advantages-box">
<h4><i class="fas fa-laptop-code"></i> Web Development</h4>
<div class="opacity-box">
<p>Spring Boot, HTML/CSS, JavaScript ES6, ReactJS, Redux, Cypress.</p>
</div>
</div>
</div>
<div class="col-md-6 wow zoomIn">
<hr>
<div class="advantages-box">
<h4><i class="fas fa-database"></i> Storage / Databases</h4>
<div class="opacity-box">
<p>MySQL, PostgreSQL, MongoDB, Kafka, Redis, RocksDB, ElasticSearch, Oracle, SQL Server, Cassandra, Couchbase</p>
</div>
</div>
</div>
<div class="col-md-6 wow zoomIn">
<hr>
<div class="advantages-box">
<h4><i class="fas fa-cloud"></i> Infrastructure / Cloud</h4>
<div class="opacity-box">
<p>Ubuntu, Kubernetes, Helm, Docker, Golang scripting, Terraform, Terragrunt, ArgoCD, Tekton, EC2, ECS, EKS, MSK, Fargate, Route53, S3, CloudFront, SQS , RDS, IAM, VPC, ALB.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--
<section id="experience" class="section">
<div class="container">
<div class="row wave-bg">
<div class="zigzag wow slideInLeft">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px"
y="0px" viewBox="0 0 105 20" xml:space="preserve">
<g>
<rect class="st0" width="105" height="20"/>
<g>
<polyline class="st1"
points="2.5,5 16.8,15 31.1,5 45.3,15 59.6,5 73.9,15 88.2,5 102.5,15 "/>
</g>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px"
y="0px" viewBox="0 0 105 20" xml:space="preserve">
<g>
<rect class="st0" width="105" height="20"/>
<g>
<polyline class="st1"
points="2.5,5 16.8,15 31.1,5 45.3,15 59.6,5 73.9,15 88.2,5 102.5,15 "/>
</g>
</g>
</svg>
</div>
<div class="col-md-4 wow slideInLeft">
<div class="section-sidebar">
<h2><span class="point">Experience</span></h2>
<div class="opacity-box">
<p>We have collaborated with prominent organizations, including KOR Financial, Brussels Airport Company, Adidas AG, Hireme SA, and Taktik SA, to develop digital products that address complex challenges and establish enduring connections with millions of individuals every day.</p>
</div>
</div>
</div>
<div class="col-md-8 right-box">
<div class="row wow zoomIn">
<div class="col-md-12">
<div class="about-row">
<h4 class="about-tittle">KOR Financial, USA
</h4>
<p class="about-info">Software Engineer</p>
<p>Jan. 2023 — Present</p>
<div class="opacity-box">
<p>Implemented API Microservices: Developed a series of API microservices to enhance the functionality and efficiency of our financial systems, leveraging technologies such as Kafka, Elasticsearch, and Spring Boot.</p>
<p>Containerized Deployment: Led the effort to containerize our services using Docker containers, enhancing the portability and scalability of our applications.</p>
<p>Leveraged AWS Services: Utilized a variety of AWS services to build and deploy our service infrastructure, including EC2, ECS, Fargate, Route53, S3, CloudFront, SQS, RDS, IAM, VPC, and ALB. This approach focused on achieving high availability, fault tolerance, and auto-scaling.</p>
</div>
</div>
</div>
</div>
<hr>
<div class="row wow zoomIn">
<div class="col-md-12">
<div class="about-row">
<h4 class="about-tittle">Brussels Airport Company, Brussels, Belgium
</h4>
<p class="about-info">Data Platform Engineer</p>
<p>Jan. 2022 — Dec 2022</p>
<div class="opacity-box">
<p>Drive proof-of-concepts and implement data platform solutions in highly scalable and resilient environments.</p>
<p>Review and contribute to the design of solutions.</p>
<p>Lead the implementation of data platforms hands-on.</p>
<p>Provide best practices and mentorship to team members and developers.</p>
<p>Share knowledge and facilitate upskilling of team members in the data and analytics platform.</p>
</div>
</div>
</div>
</div>
<hr>
<div class="row wow zoomIn">
<div class="col-md-12">
<div class="about-row">
<h4 class="about-tittle">Adidas AG, Herzogenaurach, Germany</h4>
<p class="about-info">Data Platform Engineer</p>
<p>Jan. 2019 — Dec. 2021</p>
<div class="opacity-box">
<p>
<p>Enabled streaming technologies for non-tech users to interact with their data via ksqlDB technology.</p>
<p>Implemented Kong API Gateway on top of ksqlDB clusters.</p>
<p>Established a GitOps model for managing Kubernetes deployments using Helm charts, Jenkins builds, and Bitbucket.</p>
<p>Provided observability for clusters through Prometheus and Grafana dashboards.</p>
<p>Enabled data transfer from different technologies and protocols (such as JMS and SAP) to Kafka topics via Kafka Connect connectors.</p>
<p>Deployed and maintained Kafka Streaming Platform components, including Kafka brokers, Zookeeper, Rest Proxy, MirrorMaker, Schema Registry, and Kafka Connect.</p>
<p>Monitored and scaled the performance of Kafka clusters using tools like Prometheus, Grafana, CloudWatch, and internal logs.</p>
<p>Developed, built, and deployed Kafka Connect plugins to extend the core functionality of the Kafka Connect framework.</p>
<p>Reviewed architecture of other teams to assist in implementing streaming solutions in their projects.</p>
</p>
</div>
</div>
</div>
</div>
<hr>
<div class="row wow zoomIn">
<div class="col-md-12">
<div class="about-row">
<h4 class="about-tittle">HIREME SA, Brussels, Belgium</h4>
<p class="about-info">Software Engineer</p>
<p>Nov, 2015 — Nov, 2019</p>
<div class="opacity-box">
<p>Implemented RESTful API for a vendor management system application using Event Sourcing and CQRS design patterns.</p>
<p>Set up a PubSub architecture for task consumption from the RESTful API.</p>
<p>Built and deployed a service infrastructure using Docker containers, Drone.io, and various AWS services, focusing on high availability, fault tolerance, and auto-scaling.</p>
<p>Monitored the scalability and performance of the API using Grafana, CloudWatch, and Elasticsearch.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
-->
<section id="contact" class="section">
<div class="container">
<div class="row wave-bg">
<div class="zigzag wow slideInLeft">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px"
y="0px" viewBox="0 0 105 20" xml:space="preserve">
<g>
<rect class="st0" width="105" height="20"/>
<g>
<polyline class="st1"
points="2.5,5 16.8,15 31.1,5 45.3,15 59.6,5 73.9,15 88.2,5 102.5,15 "/>
</g>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px"
y="0px" viewBox="0 0 105 20" xml:space="preserve">
<g>
<rect class="st0" width="105" height="20"/>
<g>
<polyline class="st1"
points="2.5,5 16.8,15 31.1,5 45.3,15 59.6,5 73.9,15 88.2,5 102.5,15 "/>
</g>
</g>
</svg>
</div>
<div class="col-md-4 wow slideInLeft">
<div class="section-sidebar">
<h2><span class="point">Contact</span></h2>
<div class="about-me-info">
<br />
<p>
<span class="span-title">Email</span>
<span>[email protected]</span>
</p>
<p>
<span class="span-title">Address</span>
<span>Sector 4, 205D Drumul Binelui Street <br />
Floor 1, Room 5 <br >Bucuresti - 010011 Romania</span>
</p>
</div>
</div>
</div>
<form action="https://submit-form.com/z80NAyrpZ" class="wow slideInRight js-footer-form">
<div class="opacity-box">
<p>Are you working on something great? We would love to help make it happen! Drop us a message and start your project right now! Just do it.</p>
<br />
</div>
<div class="form-wrapper">
<div class="col-md-3">
<div class="form-group">
<input name="name" class="form-field js-field-name" type="text" placeholder="Name" required>
<span class="form-validation"></span>
<span class="form-invalid-icon"><i class="mdi mdi-close" aria-hidden="true"></i></span>
</div>
<div class="form-group">
<input name="email" class="form-field js-field-email" type="email" placeholder="E-mail" required>
<span class="form-validation"></span>
<span class="form-invalid-icon"><i class="mdi mdi-close" aria-hidden="true"></i></span>
</div>
</div>
<div class="col-md-5">
<div class="form-group">
<textarea name="message" class="form-field js-field-message" placeholder="Message" required></textarea>
<span class="form-validation"></span>
</div>
<div class="submit-holder">
<input class="site-btn" type="submit" value="Send message">
</div>
</div>
</div>
</form>
</div>
</div>
</section>
<footer class="footer text-center">
<div class="container">
<div class="row">
<div class="col-md-12 wow zoomIn">
<div class="copyright">
<p>Copyright - AdiCode Solutions 2023</p>
</div>
</div>
</div>
</div>
</footer>
<!-- Contact me modal -->
<div class="modal fade" id="contact-modal" tabindex="-1" role="dialog" aria-labelledby="portfolio-modal">
<div class="modal-dialog modal-center" role="document">
<div class="modal-content">
<div class="modal-body">
<div class="modal-title">
<h1><span class="point">Let’s work together</span></h1>
</div>
<div class="modal-description">
<p>Are you working on something great? We would love to help make it happen! Drop us a message and let's kickstart your projects right now! Just do it.</p>
</div>
<div class="modal-form">
<form action="https://submit-form.com/z80NAyrpZ" class="js-modal-form">
<div class="row form-wrapper">
<div class="col-lg-5 col-md-5">
<div class="form-group">
<input name="name" class="form-field js-field-name" type="text" placeholder="Name" required />
<span class="form-validation"></span>
<span class="form-invalid-icon"><i class="mdi mdi-close"
aria-hidden="true"></i></span>
</div>
<div class="form-group">
<input name="email" class="form-field js-field-email" type="email" placeholder="E-mail" required />
<span class="form-validation"></span>
<span class="form-invalid-icon"><i class="mdi mdi-close"
aria-hidden="true"></i></span>
</div>
</div>
<div class="col-lg-7 col-md-7">
<div class="form-group">
<textarea name="message" class="form-field js-field-message" placeholder="Message" required></textarea>
<span class="form-validation"></span>
</div>
</div>
<div class="col-md-12">
<div class="submit-holder">
<input class="site-btn js-submit-contact" type="submit" value="Send message">
<a href="#" class="site-btn gray-btn" data-dismiss="modal">Back to site</a>
</div>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
<!-- Contact me modal -->
<!-- Thank you modal -->
<div class="modal fade" id="thanks-modal" tabindex="-1" role="dialog" aria-labelledby="thanks-modal">
<div class="modal-dialog modal-center" role="document">
<div class="modal-content">
<div class="modal-body">
<div class="modal-title">
<h1><span class="point">Your message has been sent</span></h1>
</div>
<div class="modal-description">
<p>Thank you for your interest in my work. I’ll contact you just in a few
days. Stay tuned and see you soon, friend!</p>
</div>
<a href="#" class="site-btn" data-dismiss="modal">Back to site</a>
</div>
</div>
</div>
</div>
<!-- Thank you modal -->
<!-- Error message modal -->
<div class="modal fade" id="error-modal" tabindex="-1" role="dialog" aria-labelledby="error-modal">
<div class="modal-dialog modal-center" role="document">
<div class="modal-content">
<div class="modal-body">
<div class="modal-title">
<h1><span class="point">Ooops!</span></h1>
</div>
<div class="modal-description">
<p>Something go wrong!</p>
</div>
<a href="#" class="site-btn" data-dismiss="modal">Try again</a>
</div>
</div>
</div>
</div>
<!-- Error message modal -->
<script src="js/jquery-2.2.3.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/jquery.placeholder.min.js"></script>
<!--Mix It Up-->
<script src="assets/mixitup-v3/dist/mixitup.min.js"></script>
<!--THEME-->
<script src="js/wow.min.js"></script>
<script src="js/theme.js"></script>
</body>
</html>