2023-08-26 21:44:48 -04:00
|
|
|
export const description = "Software developer and open-source enthusiast.";
|
|
|
|
|
|
|
|
export default function({ nav }) {
|
|
|
|
const sortPosts = (a,b) => {
|
|
|
|
if (a.data.date < b.data.date) {
|
|
|
|
return 1;
|
|
|
|
} else if (a.data.date > b.data.date) {
|
|
|
|
return -1;
|
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<p>
|
2023-12-03 20:36:14 -05:00
|
|
|
I am a software developer, open-source enthusiast, lover of pizza, and renegade of funk. I speak fluent English and Filipino.
|
2023-08-26 21:44:48 -04:00
|
|
|
</p>
|
|
|
|
<p>
|
2023-10-21 11:28:53 -04:00
|
|
|
You'll most likely find me within <a href="https://code.fosterhangdaan.com">my lab</a> tinkering with my inventions and the latest JavaScript frameworks.
|
|
|
|
Other times, I help in the battle for an open web and for user privacy by contributing in the development of free and open-source software.
|
|
|
|
</p>
|
2023-12-03 11:18:36 -05:00
|
|
|
<h2 id="contact-me" tabIndex="-1">
|
2023-12-03 11:14:35 -05:00
|
|
|
<a className="header-anchor" href="#contact-me">Contact Me</a>
|
|
|
|
</h2>
|
2023-08-26 21:44:48 -04:00
|
|
|
<p>
|
|
|
|
The best method of reaching me is through my email: <a href="mailto:foster@hangdaan.email">foster@hangdaan.email</a>.
|
|
|
|
</p>
|
|
|
|
<p>
|
2023-12-03 19:21:33 -05:00
|
|
|
If you'd like an encrypted response, you can send me your GPG public key. You can find mine in the <a href="/gpg-key/">GPG Key</a> page.
|
2023-08-26 21:44:48 -04:00
|
|
|
</p>
|
2023-12-03 11:18:36 -05:00
|
|
|
<h2 id="highlighted-projects" tabIndex="-1">
|
2023-12-03 11:14:35 -05:00
|
|
|
<a className="header-anchor" href="#highlighted-projects">Highlighted Projects</a>
|
|
|
|
</h2>
|
2023-10-23 07:28:20 -04:00
|
|
|
<ul>
|
|
|
|
<li>
|
2023-11-28 22:05:42 -05:00
|
|
|
<a href="https://code.fosterhangdaan.com/foster/website">This website</a> — My personal website & blog.
|
2023-10-23 07:28:20 -04:00
|
|
|
</li>
|
|
|
|
<li>
|
2023-11-28 22:05:42 -05:00
|
|
|
<a href="https://code.fosterhangdaan.com/foster/grub-themes">GRUB Themes</a> — Collection of themes for the <strong>GR</strong>and <strong>U</strong>nified <strong>B</strong>ootloader.
|
2023-10-23 07:28:20 -04:00
|
|
|
</li>
|
|
|
|
<li>
|
2023-11-28 22:05:42 -05:00
|
|
|
<a href="https://code.fosterhangdaan.com/foster/ipme">IpMe</a> — A self-hostable API for obtaining your public IP address.
|
2023-10-23 07:28:20 -04:00
|
|
|
</li>
|
|
|
|
<li>
|
2023-11-28 22:05:42 -05:00
|
|
|
<a href="https://code.fosterhangdaan.com/foster/bitcoin-core-container">Bitcoin Core Container</a> — A containerized Bitcoin node.
|
2023-10-23 07:28:20 -04:00
|
|
|
</li>
|
|
|
|
<li>
|
2023-11-28 22:05:42 -05:00
|
|
|
<a href="https://code.fosterhangdaan.com/foster/monero-node-container">Monero Node Container</a> — A containerized Monero node.
|
2023-10-23 07:28:20 -04:00
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
<p>
|
2023-10-25 08:25:48 -04:00
|
|
|
<a href="https://code.fosterhangdaan.com/foster?tab=repositories">View all projects</a>
|
2023-10-23 07:28:20 -04:00
|
|
|
</p>
|
2023-12-03 11:19:11 -05:00
|
|
|
<h2 id="latest-blog-posts" tabIndex="-1">
|
2023-12-03 11:14:35 -05:00
|
|
|
<a className="header-anchor" href="#latest-blog-posts">Latest Blog Posts</a>
|
|
|
|
</h2>
|
2023-08-26 21:44:48 -04:00
|
|
|
<ul>
|
2023-12-03 13:22:18 -05:00
|
|
|
{nav.menu("/blog/posts").children.sort(sortPosts).slice(0,5).map(post => (
|
2023-08-26 21:44:48 -04:00
|
|
|
<li>
|
|
|
|
<a href={post.data.url} >{post.data.title}</a> — <time className="post-list-date">{Intl.DateTimeFormat("en-CA", { dateStyle: "long" }).format(post.data.date)}</time>
|
|
|
|
</li>
|
|
|
|
))}
|
|
|
|
</ul>
|
2023-10-23 07:28:20 -04:00
|
|
|
<p>
|
2023-12-03 19:21:33 -05:00
|
|
|
<a href="/blog/">View all blog posts</a>
|
2023-10-23 07:28:20 -04:00
|
|
|
</p>
|
2023-08-26 21:44:48 -04:00
|
|
|
</>
|
|
|
|
);
|
|
|
|
}
|