-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
813 lines (796 loc) · 33.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
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
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Roboto&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="/style/o_index.css" />
<title>Xorum | Portfolio</title>
</head>
<body class="bg-teal-50">
<nav class="bg-gray-800 h-10vh w-100%">
<div class="max-w-7xl mx-auto px-4">
<div class="flex items-center justify-between h-10vh">
<div class="flex items-center flex-row">
<a href="./index.html" class="text-white text-lg font-semibold">
<img src="./img/logo white.png" alt="Xorum Logo" class="h-20" />
</a>
<h2 class="text-white text-lg font-semibold">XORUM</h2>
</div>
<div class="hidden md:flex">
<a
href="#AboutMe"
class="text-gray-300 hover:text-white px-3 py-2 rounded-md"
>About Me</a
>
<a
href="#skills"
class="text-gray-300 hover:text-white px-3 py-2 rounded-md"
>Skills</a
>
<a
href="#projects"
class="text-gray-300 hover:text-white px-3 py-2 rounded-md"
>Projects</a
>
<a
href="#formation"
class="text-gray-300 hover:text-white px-3 py-2 rounded-md"
>Education & Work</a
>
</div>
</div>
</div>
</nav>
<section class="bg-slate-300" id="AboutMe">
<div
class="flex flex-col-reverse items-center mx-2 md:mx-10 md:flex-row-reverse"
>
<div
class="flex-1 p-8 border-2 border-purple-500 rounded-lg shadow-2xl bg-teal-100 mb-8 md:mb-0"
>
<h1
class="text-center text-2xl font-bold text-gray-900 py-4 md:text-4x1"
>
Dev. <span class="gradient-text">Murariu Andrei</span>
</h1>
<p class="text-base mb-4 text-center text-black md:text-lg">
Unleashing the power of code like a
<span class="text-blue-500 animate-pulse">hacker</span> in the
<span class="text-green-500 animate-pulse">Matrix</span>, I delve
into the realms of
<span class="text-yellow-500 animate-pulse"
>Object-Oriented Programming</span
>, crafting intricate
<span class="text-purple-500 animate-pulse">Full-Stack</span>
solutions that push boundaries. With
<span class="text-red-500 animate-pulse">Linux</span> as my trusted
sidekick, I conquer challenges with finesse, blending creativity and
precision to craft seamless digital experiences.
</p>
<p class="text-base mb-4 text-center text-black md:text-lg">
But wait, there's more! When I'm not hacking away at code, you can
find me unleashing <span class="text-green-500">sick beats</span> in
the studio, producing music that sets the world on fire {..
literally, I burnt my speakers}. And if that's not enough, I'm also
a <span class="text-green-500">gym enthusiast</span>. So, whether
it's coding, making music, or hitting the gym, I bring passion and
dedication to everything I do. Let's collaborate and create
something extraordinary!
</p>
</div>
<div class="flex-1">
<img
src="./img/techny-project-management.gif"
alt="Techny Project Management"
class="w-full h-auto object-cover selector"
style="max-width: 100%; height: auto"
/>
</div>
</div>
</section>
<section class="bg-teal-50" id="skills">
<div class="flex h-40vh items-center">
<div class="bg-teal-50 flex-1 p-8">
<h1 class="text-4xl font-bold mb-4 text-center md:text-2x1">
Skill Experience
</h1>
<div class="flex justify-start items-center mt-4 mb-8">
<div class="flex justify-between w-full">
<div
class="bg-green-500 text-white px-4 py-2 rounded-lg mx-2 flex-1 text-center"
>
0-1 years
</div>
<div
class="bg-yellow-500 text-white px-4 py-2 rounded-lg mx-2 flex-1 text-center"
>
2-4 years
</div>
<div
class="bg-red-500 text-white px-4 py-2 rounded-lg mx-2 flex-1 text-center"
>
5+ years
</div>
</div>
</div>
<div class="flex justify-between">
<div class="w-1/2 mr-2">
<h2 class="text-2x1 font-semibold mb-2 text-center md:text-base">
Hard Skills
</h2>
<div class="flex flex-wrap gap-1.5 sm:gap-4">
<div
class="bg-green-500 text-white px-6 py-2 rounded-lg hover:bg-blue-600 transition-colors duration-300 text-sm"
>
Tailwind
</div>
<div
class="bg-green-500 text-white px-6 py-2 rounded-lg hover:bg-blue-600 transition-colors duration-300 text-sm"
>
Photoshop
</div>
<div
class="bg-green-500 text-white px-6 py-2 rounded-lg hover:bg-blue-600 transition-colors duration-300 text-sm"
>
Docker
</div>
<div
class="bg-green-500 text-white px-6 py-2 rounded-lg hover:bg-blue-600 transition-colors duration-300 text-sm"
>
JQuery
</div>
<div
class="bg-green-500 text-white px-6 py-2 rounded-lg hover:bg-blue-600 transition-colors duration-300 text-sm"
>
Zabbix
</div>
<div
class="bg-green-500 text-white px-6 py-2 rounded-lg hover:bg-blue-600 transition-colors duration-300 text-sm"
>
Jenkins
</div>
<div
class="bg-green-500 text-white px-6 py-2 rounded-lg hover:bg-blue-600 transition-colors duration-300 text-sm"
>
AWS
</div>
<div
class="bg-yellow-500 text-white px-6 py-2 rounded-lg hover:bg-blue-600 transition-colors duration-300 text-sm"
>
Bash
</div>
<div
class="bg-yellow-500 text-white px-6 py-2 rounded-lg hover:bg-blue-600 transition-colors duration-300 text-sm"
>
Git
</div>
<div
class="bg-yellow-500 text-white px-6 py-2 rounded-lg hover:bg-blue-600 transition-colors duration-300 text-sm"
>
PHP
</div>
<div
class="bg-yellow-500 text-white px-6 py-2 rounded-lg hover:bg-blue-600 transition-colors duration-300 text-sm"
>
FL Studio
</div>
<div
class="bg-yellow-500 text-white px-6 py-2 rounded-lg hover:bg-blue-600 transition-colors duration-300 text-sm"
>
JetBrains IDEs
</div>
<div
class="bg-yellow-500 text-white px-6 py-2 rounded-lg hover:bg-blue-600 transition-colors duration-300 text-sm"
>
VS Code
</div>
<div
class="bg-yellow-500 text-white px-6 py-2 rounded-lg hover:bg-blue-600 transition-colors duration-300 text-sm"
>
IntelliJ IDEA
</div>
<div
class="bg-yellow-500 text-white px-6 py-2 rounded-lg hover:bg-blue-600 transition-colors duration-300 text-sm"
>
C++
</div>
<div
class="bg-yellow-500 text-white px-6 py-2 rounded-lg hover:bg-blue-600 transition-colors duration-300 text-sm"
>
JavaScript
</div>
<div
class="bg-yellow-500 text-white px-6 py-2 rounded-lg hover:bg-blue-600 transition-colors duration-300 text-sm"
>
MatLab
</div>
<div
class="bg-yellow-500 text-white px-6 py-2 rounded-lg hover:bg-blue-600 transition-colors duration-300 text-sm"
>
Python
</div>
<div
class="bg-yellow-500 text-white px-6 py-2 rounded-lg hover:bg-blue-600 transition-colors duration-300 text-sm"
>
File Handling
</div>
<div
class="bg-yellow-500 text-white px-6 py-2 rounded-lg hover:bg-blue-600 transition-colors duration-300 text-sm"
>
JAVA
</div>
<div
class="bg-yellow-500 text-white px-6 py-2 rounded-lg hover:bg-blue-600 transition-colors duration-300 text-sm"
>
C
</div>
<div
class="bg-yellow-500 text-white px-6 py-2 rounded-lg hover:bg-blue-600 transition-colors duration-300 text-sm"
>
HTML
</div>
<div
class="bg-yellow-500 text-white px-6 py-2 rounded-lg hover:bg-blue-600 transition-colors duration-300 text-sm"
>
XML
</div>
<div
class="bg-yellow-500 text-white px-6 py-2 rounded-lg hover:bg-blue-600 transition-colors duration-300 text-sm"
>
CSS
</div>
<div
class="bg-yellow-500 text-white px-6 py-2 rounded-lg hover:bg-blue-600 transition-colors duration-300 text-sm"
>
Database
</div>
<div
class="bg-yellow-500 text-white px-6 py-2 rounded-lg hover:bg-blue-600 transition-colors duration-300 text-sm"
>
MySQL
</div>
<div
class="bg-yellow-500 text-white px-6 py-2 rounded-lg hover:bg-blue-600 transition-colors duration-300 text-sm"
>
SASS/SCSS
</div>
<div
class="bg-yellow-500 text-white px-6 py-2 rounded-lg hover:bg-blue-600 transition-colors duration-300 text-sm"
>
OOP
</div>
<div
class="bg-yellow-500 text-white px-6 py-2 rounded-lg hover:bg-blue-600 transition-colors duration-300 text-sm"
>
Data Structures
</div>
<div
class="bg-yellow-500 text-white px-6 py-2 rounded-lg hover:bg-blue-600 transition-colors duration-300 text-sm"
>
Algorithms
</div>
<div
class="bg-yellow-500 text-white px-6 py-2 rounded-lg hover:bg-blue-600 transition-colors duration-300 text-sm"
>
Linux
</div>
<div
class="bg-red-500 text-white px-6 py-2 rounded-lg hover:bg-blue-600 transition-colors duration-300 text-sm"
>
Debugging
</div>
</div>
</div>
<div class="flex justify-center">
<div class="border-r border-indigo-50 h-auto"></div>
</div>
<div class="w-1/2 ml-2">
<h2 class="text-2x1 font-semibold mb-2 text-center md:text-base">
Soft Skills
</h2>
<div class="flex flex-wrap gap-2">
<div
class="bg-blue-500 text-white px-6 py-2 rounded-lg hover:bg-blue-100 hover:text-blue-500 transition-colors duration-300 text-sm"
>
Problem Solving
</div>
<div
class="bg-blue-500 text-white px-6 py-2 rounded-lg hover:bg-blue-100 hover:text-blue-500 transition-colors duration-300 text-sm"
>
Teamwork
</div>
<div
class="bg-blue-500 text-white px-6 py-2 rounded-lg hover:bg-blue-100 hover:text-blue-500 transition-colors duration-300 text-sm"
>
Communication
</div>
<div
class="bg-blue-500 text-white px-6 py-2 rounded-lg hover:bg-blue-100 hover:text-blue-500 transition-colors duration-300 text-sm"
>
Time Management
</div>
<div
class="bg-blue-500 text-white px-6 py-2 rounded-lg hover:bg-blue-100 hover:text-blue-500 transition-colors duration-300 text-sm"
>
Adaptability
</div>
<div
class="bg-blue-500 text-white px-6 py-2 rounded-lg hover:bg-blue-100 hover:text-blue-500 transition-colors duration-300 text-sm"
>
Creativity
</div>
<div
class="bg-blue-500 text-white px-6 py-2 rounded-lg hover:bg-blue-100 hover:text-blue-500 transition-colors duration-300 text-sm"
>
Algebra
</div>
<div
class="bg-blue-500 text-white px-6 py-2 rounded-lg hover:bg-blue-100 hover:text-blue-500 transition-colors duration-300 text-sm"
>
Software Design
</div>
<div
class="bg-blue-500 text-white px-6 py-2 rounded-lg hover:bg-blue-100 hover:text-blue-500 transition-colors duration-300 text-sm"
>
Ideas
</div>
<div
class="bg-blue-500 text-white px-6 py-2 rounded-lg hover:bg-blue-100 hover:text-blue-500 transition-colors duration-300 text-sm"
>
Self-Taught
</div>
<div
class="bg-blue-500 text-white px-6 py-2 rounded-lg hover:bg-blue-100 hover:text-blue-500 transition-colors duration-300 text-sm"
>
Curiosity
</div>
<div
class="bg-blue-500 text-white px-6 py-2 rounded-lg hover:bg-blue-100 hover:text-blue-500 transition-colors duration-300 text-sm"
>
Commitment and eager to learn new things
</div>
<div
class="bg-blue-500 text-white px-6 py-2 rounded-lg hover:bg-blue-100 hover:text-blue-500 transition-colors duration-300 text-sm"
>
Agile Methodologies
</div>
<div
class="bg-blue-500 text-white px-6 py-2 rounded-lg hover:bg-blue-100 hover:text-blue-500 transition-colors duration-300 text-sm"
>
Scripting
</div>
<div
class="bg-blue-500 text-white px-6 py-2 rounded-lg hover:bg-blue-100 hover:text-blue-500 transition-colors duration-300 text-sm"
>
Reverse Engineering
</div>
<div
class="bg-blue-500 text-white px-6 py-2 rounded-lg hover:bg-blue-100 hover:text-blue-500 transition-colors duration-300 text-sm"
>
Testing
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="bg-slate-300" id="projects">
<h1 class="text-4xl font-bold mb-4 text-center pt-10">Projects</h1>
<div class="flex flex-wrap justify-center">
<a href="./Simulation/index.html" class="project-card shadow-2xl">
<div class="project-image">
<img src="./img/Simulation.jpg" alt="Bachelor's Degree Simulation (Romanian)" />
<div class="overlay"></div>
</div>
<div class="project-name">Bachelor's Degree Simulation (Romanian)</div>
</a>
<a href="./Chomsky/Page 1/tema.html" class="project-card shadow-2xl">
<div class="project-image">
<img src="./img/chomsky.jpg" alt="Chomsky Normal Form" />
<div class="overlay"></div>
</div>
<div class="project-name">Chomsky Normal Form</div>
</a>
<a href="./Cryptography/crypto.html" class="project-card shadow-2xl">
<div class="project-image">
<img src="./img/crypto.jpg" alt="Cryptography WebApps" />
<div class="overlay"></div>
</div>
<div class="project-name">Cryptography WebApps</div>
</a>
<a href="./Altex/altex.html" class="project-card shadow-2xl">
<div class="project-image">
<img src="./img/altex.png" lt="Altex" />
<div class="overlay"></div>
</div>
<div class="project-name">Altex</div>
</a>
<a
href="https://github.com/iamxorum/medical-system"
class="project-card shadow-2xl"
>
<div class="project-image">
<img src="./img/java.jpg" alt="Java Projects" />
<div class="overlay"></div>
</div>
<div class="project-name">Java<br />Medical System Management</div>
</a>
<a
href="https://github.com/iamxorum/universities_management"
class="project-card shadow-2xl"
>
<div class="project-image">
<img src="./img/cpp.jpg" alt="C++ Projects" />
<div class="overlay"></div>
</div>
<div class="project-name">
C++<br />Universities System Management
</div>
</a>
<a
href="https://github.com/iamxorum/climbing_stairs"
class="project-card shadow-2xl"
>
<div class="project-image">
<img src="./img/cpp.jpg" alt="C++ Projects" />
<div class="overlay"></div>
</div>
<div class="project-name">
C++<br />Backtracking Algorithm<br />Climbing stairs
</div>
</a>
<a
href="https://github.com/iamxorum/best_sum_of_money"
class="project-card shadow-2xl"
>
<div class="project-image">
<img src="./img/cpp.jpg" alt="C++ Projects" />
<div class="overlay"></div>
</div>
<div class="project-name">
C++<br />Dynamic Programming<br />Best sum of money
</div>
</a>
<a
href="https://github.com/iamxorum/gauss_montante_algorithm"
class="project-card shadow-2xl"
>
<div class="project-image">
<img src="./img/c.jpg" alt="Java Projects" />
<div class="overlay"></div>
</div>
<div class="project-name">
C<br />Gauss-Montante<br />Bareiss Algorithm
</div>
</a>
<a
href="https://github.com/iamxorum/patients_management"
class="project-card shadow-2xl"
>
<div class="project-image">
<img src="./img/fullstack.jpg" alt="Java Projects" />
<div class="overlay"></div>
</div>
<div class="project-name">Full-Stack<br />Patients Management</div>
</a>
<a
href="https://github.com/iamxorum/faculty_database"
class="project-card shadow-2xl"
>
<div class="project-image">
<img src="./img/database.png" alt="Java Projects" />
<div class="overlay"></div>
</div>
<div class="project-name">Transact SQL<br />Faculty DataBase</div>
</a>
</div>
</section>
<section class="bg-teal-50 flex flex-col md:flex-row" id="formation">
<!-- Work Experience Timeline -->
<div class="flex items-center h-100vh mx-5">
<div class="flex-1 p-8">
<h1 class="text-2xl text-center font-bold mb-8 md:text-4x1">
Work<br />Experience
</h1>
<div class="flex items-start h-100vh mx-10">
<div class="timeline ml-40 flex-2">
<div class="timeline-item flex">
<div class="timeline-year mr-4">
<h3 class="timeline-title">Pres.<br /></h3>
</div>
<div class="timeline-icon">
<i class="fas fa-briefcase"></i>
</div>
<div class="timeline-content ml-4">
<h4 class="timeline-description">Freelancing</h4>
<p class="timeline-description">
IT Support & Operations Specialist
</p>
</div>
</div>
<div class="timeline-item flex">
<div class="timeline-year mr-4">
<h3 class="timeline-title">2018<br />2023</h3>
</div>
<div class="timeline-icon">
<i class="fas fa-briefcase"></i>
</div>
<div class="timeline-content ml-4">
<h4 class="timeline-description">Freelancing</h4>
<p class="timeline-description">
Software & Front-end development
</p>
<button
class="popup-button3 bg-blue-500 hover:bg-blue-600 text-white font-bold py-2 px-4 rounded mt-2"
>
Info
</button>
<div
id="popup3"
class="hidden bg-gray-100 border border-gray-300 rounded p-4 mt-2"
>
<div class="popup-content">
<p class="text-gray-800 mb-4">
As a freelancer in basic software and frontend
development projects, I have experience working on
various projects using different technologies.
</p>
<p class="text-gray-800 mb-4">
In frontend development, I specialize in creating
Vanilla websites using HTML, CSS, JavaScript, and
Tailwind CSS. I have a solid understanding of web
fundamentals and can create responsive and visually
appealing web pages without relying on frameworks.
</p>
<p class="text-gray-800 mb-4">
For software development, I have worked on super basic
projects using languages such as C, C++, and Java.
Although these projects may be small in scale, they have
provided me with a solid foundation in programming
concepts and problem-solving skills.
</p>
<p class="text-gray-800 bg-gray-800mb-4">
I am constantly learning and exploring new technologies
to enhance my skills and expand my capabilities as a
developer. I enjoy taking on new challenges and
delivering high-quality solutions to meet client
requirements.
</p>
</div>
</div>
</div>
</div>
<div class="timeline-item flex">
<div class="timeline-year mr-4">
<h3 class="timeline-title">2017<br />2017</h3>
</div>
<div class="timeline-icon">
<i class="fas fa-briefcase"></i>
</div>
<div class="timeline-content ml-4">
<h4 class="timeline-description">Lenzi Bike, Prato, Italy</h4>
<p class="timeline-description">
Sales Assistant {School-Work Program}
</p>
</div>
</div>
<div class="timeline-item flex">
<div class="timeline-year mr-4">
<h3 class="timeline-title">2017<br />2019</h3>
</div>
<div class="timeline-icon">
<i class="fas fa-briefcase"></i>
</div>
<div class="timeline-content ml-4">
<h4 class="timeline-description">
ITEPS Paolo Dagomari, Prato, Italy
</h4>
<p class="timeline-description">System Administration</p>
<button
class="popup-button bg-blue-500 hover:bg-blue-600 text-white font-bold py-2 px-4 rounded mt-2"
>
Info
</button>
<div id="popup">
<div
class="popup-content bg-white border border-gray-300 rounded p-4 mt-2"
>
<p class="text-gray-800 mb-4">
As a system administrator in a school, I am responsible
for managing and maintaining computer systems, networks,
and technology infrastructure. My role involves ensuring
the smooth operation of IT systems and supporting the
educational environment.
</p>
<p class="text-gray-800 mb-4">
I install and configure hardware and software, manage
user accounts and permissions, troubleshoot technical
issues, and implement security measures to protect
sensitive data and network resources. I collaborate with
teachers, staff, and IT vendors to address technology
needs and provide technical support and training.
</p>
<p class="text-gray-800 mb-4">
In addition, I oversee the deployment and management of
educational software, maintain servers and network
infrastructure, monitor system performance, and plan for
future technology upgrades. I stay updated with the
latest advancements in technology and security practices
to optimize the school's technology environment and
enhance the learning experience for students and
educators.
</p>
</div>
</div>
</div>
</div>
<div class="timeline-item flex">
<div class="timeline-year mr-4">
<h3 class="timeline-title">2018<br />2020</h3>
</div>
<div class="timeline-icon">
<i class="fas fa-briefcase"></i>
</div>
<div class="timeline-content ml-4">
<h4 class="timeline-description">
Associazione Italiana Arbitri, Prato, Italy
</h4>
<p class="timeline-description">11v11 Football Referee</p>
</div>
</div>
<div class="timeline-item flex">
<div class="timeline-year mr-4">
<h3 class="timeline-title">2020<br />2020</h3>
</div>
<div class="timeline-icon">
<i class="fas fa-briefcase"></i>
</div>
<div class="timeline-content ml-4">
<h4 class="timeline-description">CoseNonCose, Italy</h4>
<p class="timeline-description">
Video Maker & Content Creator
</p>
<button
class="popup-button2 bg-blue-500 hover:bg-blue-600 text-white font-bold py-2 px-4 rounded mt-2"
>
Info
</button>
<div
id="popup2"
class="hidden bg-gray-100 border border-gray-300 rounded p-4 mt-2"
>
<div class="popup-content">
<p class="text-gray-800 mb-4">
As a Video Maker & Content Creator, I specialize in
creating memes and video memes. My work involves
leveraging my creativity and video editing skills to
produce engaging and entertaining content.
</p>
<p class="text-gray-800 mb-4">
I am proficient in using video editing software to craft
humorous and relatable memes that resonate with the
audience. I have a keen eye for viral trends and know
how to incorporate them into my content to maximize
engagement.
</p>
<p class="text-gray-800 mb-4">
I stay up-to-date with the latest internet culture and
meme formats, allowing me to create content that is
relevant and shareable. I understand the importance of
timing, humor, and visual aesthetics in creating
effective memes and video memes.
</p>
<p class="text-gray-800 bg-gray-800mb-4">
Through my work as a Video Maker & Content Creator, I
strive to bring joy and entertainment to online
communities and connect with a wide audience through the
power of memes and videos.
</p>
</div>
</div>
</div>
</div>
<!-- Add more timeline items here -->
</div>
</div>
</div>
</div>
<div class="flex h-100vh mx-5">
<div class="flex-1 p-8">
<h1 class="text-2xl text-center font-bold mb-8 md:text-4x1">
Education
</h1>
<div class="flex items-start h-100vh mx-10">
<div class="timeline ml-40 flex-2">
<div class="timeline-item flex">
<div class="timeline-year mr-4">
<h3 class="timeline-title">2014<br />2019</h3>
</div>
<div class="timeline-icon">
<i class="fas fa-code"></i>
</div>
<div class="timeline-content ml-4">
<h4 class="timeline-description">
ITEPS Paolo Dgomari, Prato, Italy
</h4>
<p class="timeline-description">
Informatics and Economics diploma.
</p>
</div>
</div>
<div class="timeline-item flex">
<div class="timeline-year mr-4">
<h3 class="timeline-title">2021<br />2024</h3>
</div>
<div class="timeline-icon">
<i class="fas fa-database"></i>
</div>
<div class="timeline-content ml-4">
<h4 class="timeline-description">
Universitatea Titu Maiorescu, Bucharest, Romania
</h4>
<p class="timeline-description">
Bachelor's degree in Computer Science.
</p>
</div>
</div>
<!-- Add more timeline items here -->
</div>
</div>
</div>
</div>
</section>
<section class="bg-gray-800 h-10vh w-full">
<div class="flex items-center justify-center h-full">
<div class="text-white text-center">
<h4 class="text-xl font-bold mb-2 mt-3">Contact Information</h4>
<p class="mb-1">Email: andrei.smurariu@gmail.com</p>
<p class="mb-1">Phone: +40 729 762 236</p>
<p class="mb-3">
<a
href="https://www.linkedin.com/in/andrei-stefanel-murariu-83317b177/"
>Linkedin</a
>
</p>
</div>
</div>
</section>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script>
$(document).ready(function () {
$(".popup-button").click(function () {
$("#popup").fadeIn();
});
$(".popup-button2").click(function () {
$("#popup2").fadeIn();
});
$(".popup-button3").click(function () {
$("#popup3").fadeIn();
});
$("#popup").click(function (event) {
if (event.target === this) {
$(this).fadeOut();
}
});
$("#popup2").click(function (event) {
if (event.target === this) {
$(this).fadeOut();
}
});
$("#popup3").click(function (event) {
if (event.target === this) {
$(this).fadeOut();
}
});
});
</script>
</body>
</html>