-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
200 lines (179 loc) ยท 8.09 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="From La Plata, Argentina. In the field of infraestructure and automation, building day by day useful and
interesting things either for fun and professionally. I am currently working with devops culture.
Homelabs, linux, finance, chess and anime. ๐ฎ๐" />
<meta name="keywords" content="jd-apprentice, jonathan dyallo, devops, sre, homelab, pentesting" />
<meta name="author" content="jd-apprentice" />
<meta property="og:title" content="jd-apprentice - homelab enthusiast" />
<meta property="og:description" content="From La Plata, Argentina. In the field of infraestructure and automation, building day by day useful and
interesting things either for fun and professionally. I am currently working with devops culture.
Homelabs, linux, finance, chess and anime. ๐ฎ๐" />
<meta property="og:image"
content="https://avatars.githubusercontent.com/u/68082746?s=400&u=91d9f39e5c3715d8b3ef4bce134a346bbbe95150&v=4" />
<meta property="og:url" content="https://jonathan.com.ar/" />
<meta property="og:type" content="website" />
<title>jd-apprentice - homelab enthusiast</title>
<script defer src="index.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/alpine.min.js" defer></script>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" rel="stylesheet" />
</head>
<!-- Data -->
<body x-data="{
showAbout: false,
showSkills: false,
showProjects: false,
showVideos: false,
projects: [
'dbn-tools',
'docker-armhf',
'easy-static',
'dotfiles',
'jd-alpine',
'jd-server',
'jd-infra',
'jd-workflows',
'jd-bun',
'linux-bot',
'hack-the-box',
'libritos',
'waifuland-api',
'telelog'
],
colorClasses: ['green-500', 'blue-500', 'purple-500', 'yellow-500', 'indigo-500', 'red-500', 'gray-500'],
skills: [
'ARM64',
'Linux',
'Self Hosting',
'System Design',
'Software Development',
'Pentesting',
'Security',
'Networking',
'Automation',
'Cloudflare',
'DevOps',
'SRE',
'Scripting',
'Containers'
],
softSkills: [
'Problem Solving',
'Teamwork',
'Communication',
'Client Management',
'Critical Thinking',
'Conflict Resolution',
'Leadership'
],
videos: [
{
title: 'Hack The Box - Solving BANK [ES]',
url: 'https://youtu.be/zxmCYEddfeU?si=qxtDAdr7eSE8m3XJ&t=4479'
},
{
title: 'What is Git and Github? [EN]',
url: 'https://www.youtube.com/watch?v=yusKpPVGLWg'
},
{
title: 'A talk about open source [ES]',
url: 'https://www.youtube.com/watch?v=B9WX3VC9TG4'
}
]
}" class="min-h-screen flex items-center justify-center bg-gray-200">
<!-- Container -->
<main class="container bg-white p-8 rounded shadow-md">
<section>
<img width="300" height="300"
src="https://avatars.githubusercontent.com/u/68082746?s=400&u=91d9f39e5c3715d8b3ef4bce134a346bbbe95150&v=4"
alt="pfp" class="profile-img mx-auto mb-4 rounded-full" />
<h1 class="text-2xl font-bold text-center">jd-apprentice</h1>
<p class="text-center">
๐งฐ infra | ๐ดโโ ๏ธ Security | ๐ป tech | ๐ linux | ๐ anime
</p>
</section>
<!-- Buttons -->
<section class="lg:flex lg:justify-center">
<button @click="showAbout = true" class="mt-4 mx-2 px-4 py-2 bg-gray-900 text-white rounded">
about me
</button>
<button class="mt-4 mx-2 px-4 py-2 bg-gray-900 text-white rounded">
<a rel="noopener" target="_blank" href="https://blog.jonathan.com.ar/"
class="btn btn-secondary mt-4">blog</a>
</button>
<button class="mt-4 mx-2 px-4 py-2 bg-gray-900 text-white rounded">
<a rel="noopener" target="_blank" href="https://links.jonathan.com.ar"
class="btn btn-secondary mt-4">contact</a>
</button>
<button @click="showSkills = true" class="mt-4 mx-2 px-4 py-2 bg-gray-900 text-white rounded">
skills
</button>
<button @click="showProjects = true" class="mt-4 mx-2 px-4 py-2 bg-gray-900 text-white rounded">
projects
</button>
<button class="mt-4 mx-2 px-4 py-2 bg-gray-900 text-white rounded">
<a rel="noopener" target="_blank" href="./assets/Resume.pdf" class="btn btn-secondary mt-4">resume</a>
</button>
<button @click="showVideos = true" class="mt-4 mx-2 px-4 py-2 bg-gray-900 text-white rounded">
videos
</button>
<button id="audioPlayerButton"
class="cursor-pointer mt-4 mx-2 px-4 py-2 bg-red-500 text-white rounded-xl border-2 border-black">
play ๐ต
</button>
</section>
<section x-show="showAbout" @click.away="showAbout = false" class="mt-4">
<h2 class="text-xl font-bold">Bio</h2>
<p id="about-me" class="text-gray-700"></p>
</section>
<!-- Templates -->
<section x-show="showSkills" @click.away="showSkills = false" class="mt-4">
<h2 class="text-xl font-bold">Technical Skills</h2>
<div class="flex flex-wrap mt-3">
<template x-for="(skill, index) in skills" :key="skill">
<span
:class="['bg-' + colorClasses[index % colorClasses.length], 'text-white', 'py-1', 'px-2', 'mb-2', 'mr-2']"
x-text="skill"></span>
</template>
</div>
<h2 class="text-xl font-bold">Soft Skills</h2>
<div class="flex flex-wrap mt-3">
<template x-for="(skill, index) in softSkills" :key="skill">
<span
:class="['bg-' + colorClasses[index % colorClasses.length], 'text-white', 'py-1', 'px-2', 'mb-2', 'mr-2']"
x-text="skill"></span>
</template>
</div>
</section>
<section x-show="showProjects" @click.away="showProjects = false" class="mt-4">
<h2 class="text-xl font-bold">Projects</h2>
<div class="flex flex-wrap mt-3">
<template x-for="(project, index) in projects" :key="project">
<a target="_blank" :href="['https://github.com/jd-apprentice/' + project]"
:class="['bg-' + colorClasses[index % colorClasses.length], 'text-white', 'py-1', 'px-2', 'mb-2', 'mr-2']"
x-text="project">
</a>
</template>
</div>
</section>
<section x-show="showVideos" @click.away="showVideos = false" class="mt-4">
<h2 class="text-xl font-bold">Videos</h2>
<div class="flex flex-wrap mt-3">
<template x-for="(video, index) in videos" :key="video">
<a target="_blank" :href="video.url"
:class="['bg-' + colorClasses[index % colorClasses.length], 'text-white', 'py-1', 'px-2', 'mb-2', 'mr-2']"
x-text="video.title">
</a>
</template>
</div>
</section>
</main>
<!-- Music -->
<audio loop controls preload="auto" id="audioPlayer" style="display: none">
<source src="/assets/song.mp3" type="audio/mpeg" />
</audio>
</body>
</html>