-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
80 lines (79 loc) · 2.37 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
<html lang="en">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no"
/>
<title>Mario Pabon</title>
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon" />
<link rel="stylesheet" href="./styles.css" />
<script src="./scripts.js" defer></script>
<script
defer
data-domain="mariopabon.com"
src="https://plausible.io/js/script.js"
></script>
</head>
<body>
<main>
<header>
<h1>
Mario Pabon is a software engineer living and working in New York
City.
</h1>
</header>
<section>
<h2>Projects</h2>
<p>
A selection of personal projects. You may find more of what I am
working on at
<a href="https://github.com/realplatanopapi">GitHub.com</a>.
</p>
<ul>
<li>
<h3>Wordler</h3>
<p>
<a href="https://wordler.xyz">wordler.xyz</a>
</p>
<p>
Turn Wordler into a weekly competition with your friends! Start a
group, post your results, and get a weekly leaderboard revealing
the most talented Wordler of them all.
</p>
</li>
<li>
<h3>Soundboard</h3>
<p>
<a href="https://soundboard.cool/">soundboard.cool</a>
</p>
<p>
A web-based soundboard comprising of all the essential sound
effects. Featuring a special "Conejo Malo" mode!
</p>
</li>
</ul>
</section>
<section>
<h2>Writings</h2>
<p>
I maintain a blog that documents my attempts to build functioning
software over at <a href="https://www.coquito.io/">coquito.io</a>.
It's mostly about Node and TypeScript.
</p>
</section>
<section>
<h2>Connect with me</h2>
<p>
If you would like to get in contact with me, consider connecting with
me on
<a rel="me" href="https://mastodon.social/@realplatanopapi"
>Mastodon</a
>, where I am known as
<a href="https://mastodon.social/@realplatanopapi">@realplatanopapi</a
>.
</p>
</section>
</main>
</body>
</html>