Add personal website

This commit is contained in:
Aram 🍐 2019-10-26 14:01:50 -04:00
commit 27d33fcc41
11 changed files with 339 additions and 0 deletions

132
website/src/index.html Normal file
View file

@ -0,0 +1,132 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>Aram Peres</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta property="og:description" content="Aram Peres: Personal Website">
<meta property="og:site_name" content="Aram Peres">
<meta name="robots" content="index,follow">
<style>
html,
body {
font-family: Arial, Helvetica, sans-serif;
margin: 0;
}
.page-container {
margin: 0 auto;
width: 100%;
max-width: 800px;
}
.headline {
text-align: center;
margin: 20px;
}
.examples {
margin-top: 20px;
margin-left: 85px;
margin-right: 20px;
}
@media only screen and (max-width: 900px) {
.examples {
margin-left: 20px;
}
}
</style>
</head>
<body>
<div class="page-container">
<p class="headline">
Hello, looks like you found my landing page.
</p>
<p class="headline">
My name is Aram (<i>Momo</i>) Peres, I'm a software and web developer based in Ottawa, Canada.
</p>
<p class="headline">
I usually contribute to
<a href="https://github.com/momothereal">open source</a> in my free time.
</p>
<p class="headline">
--
</p>
<div class="examples">
<p>
<strong>Some of my projects:</strong>
</p>
<ul>
<li>
<a href="https://glowstone.net" target="_blank">Glowstone</a> (Java, core developer of open-source, reverse-engineered game server)</li>
<li>
<a href="https://github.com/coop-ctf" target="_blank">COOP-CTF</a> (Organized a Capture-the-Flag competition with 60+ participants)</li>
<li>
<a href="https://wavy.fm" target="_blank">wavy.fm</a> (React + Python + MongoDB + Kubernetes, music social media)</li>
<li>
<a href="https://github.com/momothereal/rmc" target="_blank">rateMyColor</a> (Python + Redis, project speedrun in 4 hours)</li>
<li>
<a href="https://github.com/momothereal/code-jam-1" target="_blank">PythonDiscord code jam #1</a> (Winner, 72-hour Python programming competition)</li>
<li>
<a href="https://github.com/momothereal/code-jam-2" target="_blank">PythonDiscord code jam #2</a> (Winner, 1-week Python programming competition)</li>
<li>
<a href="https://devpost.com/software/post-hop" target="_blank">Post Hop</a> (Angular + Cordova + Python + GCP/GKE, delivery app demo for cuHacking 2019)</li>
<li>
<a href="https://github.com/momothereal/Minesweeper" target="_blank">Minesweeper</a> (Java, Swing implementation of Minesweeper)</li>
</ul>
<p>
<strong>Libraries:</strong>
</p>
<ul>
<li>
<a href="https://github.com/momothereal/Pathfinder" target="_blank">Pathfinder</a> (Java, A* implementation)</li>
<li>
<a href="https://github.com/momothereal/Mojangson" target="_blank">Mojangson</a> (Java, JSON variant parsing library)</li>
<li>
<a href="https://github.com/momothereal/OneLineReflection" target="_blank">OneLineReflection</a> (Java, string reflection utility)</li>
</ul>
<p>
<strong>Other contributions:</strong>
</p>
<ul>
<li>
<a href="https://pythondiscord.com" target="_blank">Python Discord</a> (Python, website + Discord bot)</li>
<li>
<a href="https://github.com/sindresorhus/refined-github" target="_blank">Refined GitHub</a> (JS, browser extension)</li>
<li>
<a href="https://github.com/withspectrum/spectrum" target="_blank">Spectrum</a> (JS, network for online communities)</li>
<li>
<a href="https://github.com/spring-cloud/spring-cloud-openfeign" target="_blank">Spring Cloud OpenFeign</a> (Java, Spring support for OpenFeign)</li>
<li>
<a href="https://github.com/caelunshun/feather" target="_blank">Feather</a> (Rust, experimental clean-room server software for Minecraft)</li>
</ul>
</div>
<p class="headline">
--
</p>
<div class="examples">
<p>
<strong>Reach me:</strong>
</p>
<ul>
<li>
<a href="https://github.com/momothereal" target="_blank">GitHub</a> / <a href="https://gitlab.com/momothereal" target="_blank">GitLab</a> (@momothereal)</li>
<li>
<strong>Email</strong> (<u>contact <i>at</i> aramperes.ca</u>)</li>
<li>
<a href="https://www.linkedin.com/in/aram-peres/" target="_blank">LinkedIn</a> (Aram Peres)</li>
</ul>
</div>
</div>
</body>
</html>