-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
154 additions
and
177 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
async function loadPage(name) { | ||
try { | ||
let main = document.getElementById('main'); | ||
if (!main) { | ||
console.error(`"main" element not found`); | ||
return; | ||
} | ||
main.innerHTML = ''; | ||
switch (name) { | ||
case 'blog': | ||
main.innerHTML = blogPage(); | ||
break; | ||
case 'career': | ||
main.innerHTML = careerPage(); | ||
break; | ||
default: | ||
main.innerHTML = homePage(); | ||
break; | ||
} | ||
} catch (error) { | ||
console.error(`Error loading page: "${name}"`, error); | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,27 @@ | ||
async function loadBlogPage() { | ||
try { | ||
document.getElementById('page').innerHTML = ` | ||
<h2>Blog</h2> | ||
<p> | ||
🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗<br> | ||
🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗<br> | ||
🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗<br> | ||
🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗<br> | ||
🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗<br> | ||
🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗<br> | ||
🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗<br> | ||
🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗<br> | ||
🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗<br> | ||
🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗<br> | ||
🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗<br> | ||
🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗<br> | ||
🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗<br> | ||
🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗<br> | ||
🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗<br> | ||
🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗<br> | ||
</p> | ||
<p> | ||
That's a lot of crickets! I'm still working on this page. Check back later for updates. | ||
</p> | ||
`; | ||
} catch (error) { | ||
console.error('Error loading page:', error); | ||
} | ||
function blogPage() { | ||
return `<h2>Blog</h2> | ||
<p> | ||
🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗<br> | ||
🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗<br> | ||
🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗<br> | ||
🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗<br> | ||
🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗<br> | ||
🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗<br> | ||
🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗<br> | ||
🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗<br> | ||
🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗<br> | ||
🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗<br> | ||
🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗<br> | ||
🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗<br> | ||
🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗<br> | ||
🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗<br> | ||
🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗<br> | ||
🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗🦗<br> | ||
</p> | ||
<p> | ||
That's a lot of crickets! I'm still working on this page. | ||
</p> | ||
<p> | ||
Check back later for updates. | ||
</p>`; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
async function careerPage() { | ||
return `<h2>My Career Journey</h2> | ||
<article> | ||
<h3>Military Background</h3> | ||
<p>My journey has led me from the U.S. Army to the forefront of technology. In the Army, serving | ||
as a | ||
Satellite Communications Technician and Team Leader at Fort Drum, New York from 2008 to | ||
2012, I | ||
mastered the intricacies of mobile satellite communications and network coordination. This | ||
role | ||
involved handling a mobile satcom terminal and interfacing with a mobile networking hub to | ||
ensure | ||
seamless connectivity for tactical operations. My time in the military was more than just | ||
about | ||
discipline; it was about honing technical and leadership skills under challenging | ||
conditions.</p> | ||
<h3>Academic Achievements</h3> | ||
<p>Following my military service, I pursued academic interests at Harrisburg University of | ||
Science & | ||
Technology, earning a B.S. in Computer & Information Science, graduating Cum Laude. My | ||
university | ||
years were an immersive exploration into the world of computer science, forming a solid | ||
foundation | ||
for my technology career.</p> | ||
<h3>Professional Experience</h3> | ||
<h4>Elsevier</h4> | ||
<p>My professional journey in software engineering began at Elsevier in Philadelphia. As a | ||
Software | ||
Engineer, I was deeply involved in full-stack web development for an authoring workflow | ||
system used | ||
in clinical medicine. Utilizing Java and Spring for backend development, and JavaScript with | ||
ExtJS | ||
for the frontend, I contributed to enhancing the efficiency and functionality of the system, | ||
significantly impacting the way clinical experts author, review, and approve evidence-based | ||
guidance.</p> | ||
<h4>Vanguard</h4> | ||
<p>At The Vanguard Group, my role evolved, leading me to spearhead the development of a | ||
web-based tool | ||
for back-office staff. This project involved creating a system for reconciling transaction | ||
errors | ||
and providing comprehensive dashboards and reporting tools for retail money movement. Here, | ||
my | ||
toolkit expanded to include Java for backend microservices, hosted on ECS, and DynamoDB for | ||
database | ||
management. My efforts not only optimized processes but also brought about a significant | ||
reduction | ||
in processing time and bolstered security, earning me recognition and awards.</p> | ||
<h4>Macquarie Group</h4> | ||
<p>Today, at The Macquarie Group, I’m harnessing my extensive experience to lead and innovate in | ||
new | ||
technological ventures. My career is a testament to continuous learning and excellence, with | ||
each | ||
role contributing significantly to my expertise in managing and implementing cutting-edge | ||
technology | ||
solutions.</p> | ||
</article>`; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,11 @@ | ||
async function loadHomePage() { | ||
try { | ||
|
||
} catch (error) { | ||
console.error('Error loading page:', error); | ||
} | ||
|
||
const repoList = document.createElement('div'); | ||
repoList.id = 'repo-list'; | ||
const repos = await loadGithubRepos() | ||
repos.forEach(repo => { | ||
repoList.appendChild(createRepoDiv(repo)); | ||
}); | ||
async function homePage() { | ||
return `<h2>Projects</h2> | ||
${repoList.outerHTML}`; | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
File renamed without changes.