This repository was archived by the owner on Mar 1, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
170 lines (141 loc) · 6.54 KB
/
Copy pathindex.html
File metadata and controls
170 lines (141 loc) · 6.54 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tase | Portfolio</title>
<link rel="stylesheet" href="static/devicon.min.css">
<link rel="stylesheet" href="static/style.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="#about">About Me</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#projects">My Projects</a></li>
</ul>
</nav>
</header>
<main>
<section id="about" class="about-card">
<figure class="about-icon">
<img src="assets/image.png" alt="Tase icon">
</figure>
<header class="about-header">
<h2> About Me...</h2>
</header>
<div class="about-content">
<p>I'm Benjamin "Tase" Vasquez, Chilean and a Tech lover, I'm a studing for a degree in computer engineering. Afficionate of learning new things and, most importantly, learning everyday on how to be better version of myself.</p>
</div>
</section>
<section id="skills">
<h2> Skills</h2>
<div class="skill-grid">
<article class="skills-card">
<h3>Languages</h3>
<div class="icon-group">
<i class="devicon-cplusplus-plain colored"></i>
<i class="devicon-python-plain colored"></i>
<i class="devicon-bash-plain"></i>
</div>
</article>
<article class="skills-card">
<h3>Learning</h3>
<div class="icon-group">
<i class="devicon-rust-plain colored"></i>
<i class="devicon-html5-plain colored"></i>
<i class="devicon-css3-plain colored"></i>
</div>
</article>
<article class="skills-card os-card">
<h3>Current OS</h3>
<i class="devicon-archlinux-plain colored"></i>
<p>Arch Linux</p>
</article>
<article class="skills-card">
<h3>Tools</h3>
<div class="icon-group">
<i class="devicon-git-plain colored"></i>
<i class="devicon-vim-plain colored"></i>
<i class="devicon-vscode-plain colored"></i>
</div>
</article>
</div>
</section>
<section id="projects">
<h2> My Projects...</h2>
<p>Please take a look of what i've been doing (*u*)</p>
<div class="project-grid">
<article class="project-card">
<a href="https://github.com/Tasesho/clip_assistant" target="_blank" title="Open clip_assistant repository on Github">
<h3>Command line Assistant</h3>
<p>Built in C++, Clippy help you in the console.</p>
<footer>View on Github</footer>
</a>
</article>
<article class="project-card">
<a href="https://github.com/Tasesho/script-Arch-post-install" target="_blank" title="Open Arch Post Install repository on Github">
<h3>Arch Post Install</h3>
<p>Bash commands to automatize the post instalation.</p>
<footer>View on Github</footer>
</a>
</article>
<article class="project-card">
<a href="https://github.com/Tasesho/mcMonitor" target="_blank" title="Open mcMonitor repository on Github">
<h3>mcMonitor</h3>
<p>Bot for discord, monitors if server is online.</p>
<footer>View on Github</footer>
</a>
</article>
<article class="project-card">
<a href="https://github.com/Tasesho/Universidad" target="_blank" title="Open Universidad repository on Github">
<h3>Universidad</h3>
<p>Recopilation of some codes that I developed while I was in Uni.</p>
<footer>View on Github</footer>
</a>
</article>
</div>
</section>
<section id="vision" class="vision-card">
<header class="vision-header">
<h2> True efficiency is born from curiosity...</h2>
</header>
<div class="vision-content">
<blockquote class="statement"> To develop efficiently is to develop consciously. Curiosity is the only tool that prevents the stagnation of an automated workflow. The moment a first PC was stripped down to its core was the moment a life-long philosophy took shape: understanding the smallest part is essential to mastering the entire system. Logic, priority, and depth are the pillars of my craft.</blockquote>
</div>
</section>
<section id="soft-skills" class="skills-container">
<h3>Usuful skills & Mentality</h3>
<ul class="soft-skills-grid">
<li>Problem solving</li>
<li>Resource Management</li>
<li>Strategic Planning</li>
<li>Role accountability</li>
<li>Autodidact</li>
</ul>
</section>
</main>
<footer class="main-footer">
<div class="footer-content">
<nav class="footer-nav">
<a href="me/index.html" class="me-link">
<span class="prompt">~/</span> More_About_Me
</a>
<a href="../blog/index.html" class="blog-link">
<span class="prompt">~/</span> Go_to_Blog
</a>
</nav>
<address>
<p>Santiago, Chile | <a href="mailto:benjam.vsqz@gmail.com">benjam.vsqz@gmail.com</a></p>
</address>
<ul class="contact-link">
<li><a href="https://github.com/Tasesho" target="_blank"><i class="devicon-github-original"></i> Github</a></li>
</ul>
<div class="footer-bottom">
<p>© 2026 Tase - Built with Curiosity and Passion</p>
</div>
</div>
</footer>
</body>
</html>