2023-12-28 03:11:21 +00:00
<!doctype html>
< html lang = "en" >
2023-12-28 03:34:06 +00:00
< head >
< meta charset = "UTF-8" / >
< meta name = "viewport" content = "width=device-width, initial-scale=1" / >
< title > El Asteroide De Miguel< / title >
2023-12-28 03:11:21 +00:00
2024-01-22 19:00:46 +00:00
< link rel = "stylesheet" href = "https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel = "stylesheet" integrity = "sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin = "anonymous" > < / link >
2023-12-28 03:11:21 +00:00
2024-01-22 19:00:46 +00:00
< link rel = "stylesheet" href = "./styles.css" > < / link >
2023-12-28 03:11:21 +00:00
2024-01-22 19:00:46 +00:00
< script src = "https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js" integrity = "sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin = "anonymous" > < / script >
2023-12-28 03:11:21 +00:00
2024-01-22 19:00:46 +00:00
< script src = "https://unpkg.com/htmx.org@1.9.10" integrity = "sha384-D1Kt99CQMDuVetoL1lrYwg5t+9QdHe7NLX/SoJYkXDFfX37iInKRy5xLSi8nO7UC" crossorigin = "anonymous" > < / script >
2023-12-28 03:11:21 +00:00
2024-01-22 19:00:46 +00:00
< script src = "./scripts.js" > < / script >
2023-12-28 03:11:21 +00:00
2024-01-22 19:00:46 +00:00
< / head >
2023-12-28 03:11:21 +00:00
2023-12-28 08:28:57 +00:00
2024-01-22 19:00:46 +00:00
< body >
< nav class = "navbar navbar-dark bg-dark fixed-top" >
< div class = "container-fluid" >
< a class = "navbar-brand" href = "#" > Miguel's Asteroid< / a >
< button class = "navbar-toggler" type = "button" data-bs-toggle = "offcanvas" data-bs-target = "#offcanvasDarkNavbar" aria-controls = "offcanvasDarkNavbar" aria-label = "Toggle navigation" >
< span class = "navbar-toggler-icon" > < / span >
< / button >
< div class = "offcanvas offcanvas-end text-bg-dark" tabindex = "-1" id = "offcanvasDarkNavbar" aria-labelledby = "offcanvasDarkNavbarLabel" >
< div class = "offcanvas-header" >
< h5 class = "offcanvas-title" id = "offcanvasDarkNavbarLabel" > Menu< / h5 >
< button type = "button" class = "btn-close btn-close-white" data-bs-dismiss = "offcanvas" aria-label = "Close" > < / button >
< / div >
< div class = "offcanvas-body" >
< ul class = "navbar-nav justify-content-end flex-grow-1 pe-3" >
< li class = "nav-item" >
< a class = "nav-link active" aria-current = "page" href = "#" > Home< / a >
< / li >
< li class = "nav-item" >
< a class = "nav-link" href = "https://migs.uber.space/blog" > Blog< / a >
< / li >
< li class = "nav-item dropdown" >
< a class = "nav-link dropdown-toggle" href = "#" role = "button" data-bs-toggle = "dropdown" aria-expanded = "false" >
Resumes
< / a >
< ul class = "dropdown-menu dropdown-menu-dark" >
<!-- <li><a class="dropdown - item" href="#">Hospitality</a></li> -->
< li > < a class = "dropdown-item" href = "./resumes/PIC.pdf" > Public Interest Communications< / a > < / li >
< / ul >
< / li >
< / ul >
2024-01-22 21:20:48 +00:00
< / nav >
2024-01-22 19:00:46 +00:00
< section >
< div class = "container my-5" >
< div class = "row p-4 pb-0 pe-lg-0 pt-lg-5 align-items-center rounded-3 border shadow-lg" >
< div class = "col-lg-7 p-3 p-lg-5 pt-lg-3" >
< h1 class = "display-4 fw-bold lh-1" > Miguel Almodovar< / h1 >
< p class = "lead" > I am currently studying for a comptia certification in order to branch out into new career opportunities in tech.
Click on a button below to learn a fun fact about me!
< / p >
< div class = "d-grid gap-2 d-md-flex justify-content-md-start mb-4 mb-lg-3" >
< button type = "button" class = "btn btn-primary btn-lg px-4 me-md-2 fw-bold" onclick = "factAlert('dob')" > Show DOB< / button >
< button type = "button" class = "btn btn-primary btn-lg px-4 me-md-2 fw-bold" onclick = "factAlert('favorite game')" > Show Favorite Game< / button >
< button type = "button" class = "btn btn-primary btn-lg px-4 me-md-2 fw-bold" onclick = "factAlert('birthplace')" > Show Birthplace< / button >
2023-12-28 08:28:57 +00:00
< / div >
2024-01-22 19:00:46 +00:00
< / div >
< div class = "col-lg-4 offset-lg-1 p-0 overflow-hidden shadow-lg" >
< img class = "rounded-lg-3" src = "./img/headshot.jpg" alt = "" width = "360" >
< / div >
2023-12-28 08:28:57 +00:00
< / div >
< / div >
< / section >
2023-12-28 03:11:21 +00:00
< section >
2024-01-22 19:00:46 +00:00
< div class = "container-fluid" >
< div > < div class = "card mb-4 text-center mx-auto" style = "max-width: 75%;" >
< div class = "card-body" >
< h5 class = "card-title" > < b > Kingdom Heart Quote Shuffler< / b > < / h5 >
< p class = "card-text" > I recently built a homemade web scraper in Python to scrape quotes off a database of my favorite video game, Kingdom Hearts.< / p >
< p > After scraping the quotes into a json file, I feed them into a small program that fetches and periodically rotates the quotes every 5 seconds.
< br > I then installed a Gummi-themed Kingdom Hearts font from < a href = "https://github.com/Televo/kingdom-hearts-recollection" > a dope Github repository < / a >
to make it LEGIT! Check it out below this paragraph.< / p >
< p class = "card-text" >
< div class = "'container-fluid" style = "max-width: 800px; margin: auto;" >
< div class = "clearfix" >
< div id = "quoteBanner" class = "quote-banner card-footer" >
< blockquote class = "blockquote mb-0" >
< p > Quote goes here< / p >
< footer class = "blockquote-footer" > Someone famous in < cite title = "Source Title" > Source Title< / cite > < / footer >
< / blockquote >
< / div >
< a href = "https://github.com/miggymofongo" class = "card-link" > Check it out on Github!< / a >
< / p >
< / div >
< / div >
< / div >
< / div >
2023-12-28 08:28:57 +00:00
2024-01-22 19:00:46 +00:00
< script src = "scripts.js" > < / script >
2023-12-28 03:11:21 +00:00
< / section >
2023-12-28 06:33:55 +00:00
2023-12-28 03:11:21 +00:00
< section >
2024-01-22 19:00:46 +00:00
< div class = "container my-5" >
< img src = "./img/forsite.webp" width = "200" class = "col-md-6 float-md-end mb-3 ms-md-3" alt = "Miguel in Japan" style = "max-width: 100%; height: auto;" >
< p > I just turned 30 and and live in Aguadilla, Puerto Rico, with my dog, Kaido. I have been studying CCNA and
basic web development curriculum consistantly over the past year to jump into a new tech-focused role. I currently
hold a remote role at a California-based organization.< / p >
< p > I am motivated by a lifelong passion for tech as
a consumer. My earliest memory of opening up a computer was when I flashed custom
firmware on my red God of War PlayStation Portable during middle school. I am recently < a href = "https://github.com/miggymofongo" > established
on Github < / a > and have < a href = "https://nilfm.cc/" > a few friends in senior software engineer roles that
are helping guide< / a > my learning journey. < / p >
< p > Please check back frequently as I update my website and continue to add projects to display on my asteroid.
Currently I am learning more about decentralized social media protocols like ActivityPub and Nostr while familiarizing
myself with smart contracts and self custody wallet solutions.
< / p >
< / div >
2023-12-28 03:11:21 +00:00
2024-01-22 19:00:46 +00:00
< script src = "./scripts.js" > < / script >
2023-12-28 08:28:57 +00:00
< / section >
2024-01-22 19:00:46 +00:00
< script src = "https://unpkg.com/htmx.org@1.9.10" crossorigin = "anonymous" > < / script >
2023-12-28 08:28:57 +00:00
2023-12-28 03:11:21 +00:00
< / body >
< / html >