-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
119 lines (102 loc) · 4.74 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Eduaardo J. Barrios - PERSONAL WEB PAGE</title>
<link href="https://fonts.googleapis.com/css2?family=Product+Sans:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="assets/styles.css">
</head>
<body>
<header>
<img src="assets/signature.png" alt="Logo" />
</header>
<div id="menuToggle" class="menu-icon">
<div class="bar"></div>
<div class="bar"></div>
<div class="bar"></div>
</div>
<div id="menu" class="hidden">
<ul>
<li><a href="#biography">Biography</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#knowledges">Other Knowledges</a></li>
<li><a href="#streaming-links">Find Me On</a></li>
<li><a href="#projects">Articles</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
<section id="biography">
<h2>Biography</h2>
<img src="assets/avatar.png" alt="Eduardo Barrios" width="200">
<section>
<section>
<p>Eduardo José Barrios García, hailing from Tenerife, Canary Islands, Spain, is a computer engineer specialized in software engineering and project management. His education and dedication in these specific technological areas have granted him a profound understanding and noteworthy skills that set him apart in the industry.</p>
<p>While Eduardo's primary focus lies in software engineering and project management, he is always open to tackling the diverse and multifaceted challenges that the vast realm of computer science presents. This versatility, paired with his passion and commitment, makes him a prominent professional in his field, highly esteemed by both peers and clients alike.</p>
<p>Every daily appearing challenge in this tech world could be an opportunity for Eduardo to showcase his prowess, his adaptability, and his constant desire to learn and grow in the ever-evolving arena of computer science.</p>
</section>
</section>
</section>
<<section id="skills">
<h2>Programming Skills</h2>
<div class="skill-card">🔊C</div>
<div class="skill-card">🔌C++</div>
<div class="skill-card">☕Java</div>
<div class="skill-card">🌍FRONTEND</div>
<div class="skill-card">🗄️SQL</div>
<div class="skill-card">🍏Swift</div>
<div class="skill-card">🦀Rust</div>
<div class="skill-card">📈Julia</div>
</section>
<<section id="knowledges">
<h2>Other Knowledges</h2>
<div class="knowledge-card">
<img class="badge" src="https://img.shields.io/badge/-Sonarcloud-blue" alt="Sonarcloud Badge">
</div>
<div class="knowledge-card">
<img class="badge" src="https://img.shields.io/badge/-Jenkins-red" alt="Jenkins Badge">
</div>
<div class="knowledge-card">
<img class="badge" src="https://img.shields.io/badge/-CircleCI-brightgreen" alt="Circle CI Badge">
</div>
</section>
<<section id="streaming-links">
<h2>Find Me On</h2>
<a href="streaming/linkedin.html" target="_blank">LinkedIn</a>
<a href="https://github.com/edujbarrios" target="_blank">GitHub</a>
<a href="streaming/spotify.html" target="_blank">Spotify</a>
</section>
<<section id="projects">
<h2>Articles</h2>
<a href="post_files/code/post.html" target="_blank">
<div class="post-card">
<h3>The Importance of Rust in Modern Software Development</h3>
<img src="post_files/images/rust.png" alt="My Project Screenshot">
<p>Rust or C++? Let's take a deep take dive into this topic!</p>
</div>
</a>
<a href="post_files/code/post2.html" target="_blank">
<div class="post-card">
<h3>The Role of Programming in Modern DAWs and Music Production</h3>
<img src="post_files/images/daw.png" alt="Programming in Music Production">
<p>Discover how programming in DAWs like Logic Pro X has revolutionized music production, shaping the industry both positively and negatively.</p>
</div>
</a>
<a href="post_files/code/post3.html" target="_blank">
<div class="post-card">
<h3>Deep Dive into Design Patterns in Java and C++: A Comparative Analysis</h3>
<img src="post_files/images/design_pattern.png" alt="Design Patterns in Java and C++">
<p>Explore the nuances of design patterns in Java and C++, and how their implementation differs in workflow and application complexity.</p>
</div>
</a>
</section>
<<section id="contact">
<h2>Contact</h2>
<p>Email: <a href="mailto:[email protected]">[email protected]</a></p>
</section>
< ------------------------------------------ >
<section id="footer">
<p>© 2023 - Eduardo Barrios. All rights reserved.</p>
</section>
<script src="scripts/script.js"></script>
</body>
</html>