-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
66 lines (60 loc) · 3.96 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="author" content="Emily Ploszaj">
<meta name="color-scheme" content="dark light">
<title>Emi</title>
<link rel="stylesheet" href="https://fonts.bunny.net/css?family=Ubuntu+Mono:400,700&display=block">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="topbar">
<p><a href="./">Emi</a><span class="topbar-path"> ./</span></p>
<div id="topbar-links">
<div class="topbar-link"><a href="./">Home</a><span class="topbar-path"> ./</span></div>
<div class="topbar-link"><a href="./blog">Blog</a><span class="topbar-path"> ./blog</span></div>
<div class="topbar-link"><a href="./contact">Contact</a><span class="topbar-path"> ./contact</span></div>
<div class="topbar-link"><a href="./pages">Pages</a><span class="topbar-path"> ./pages</span></div>
</div>
</div>
<div id="content">
<h1>Hi, I'm Emi!</h1>
<p>I'm an artist and I make things! Software engineer by trade. UX and game designer at heart. Oh, and I love <a style="cursor:pointer;" onclick="pastelColors()">pastel colors</a>!</p>
<h2>Notable Projects</h2>
<h3 class="inline-link"><a href="https://github.com/emilyploszaj/emi">EMI</a><span class="inline-path"> /git/emi/emi</span></h3>
<p>A featureful, accessible, and configurable item and recipe viewer mod for Minecraft. Recipe trees for multistep recipe breakdowns, and productivity tools to keep players moving forward, with a design focus on tight UX.</p>
<div class="images">
<img alt="EMI" src="/images/emi.png" width=380>
<img alt="Recipe Tree" src="/images/recipe-tree.png" width=380>
</div>
<h3 class="inline-link"><a href="https://github.com/emilyploszaj/shenzhen-solitaire-gbc">Shenzhen Solitaire GBC</a><span class="inline-path"> /git/emi/shenzhen-solitaire-gbc</span></h3>
<p>An implementation of the solitaire game in Shenzhen I/O by <a href="http://www.zachtronics.com/">Zachtronics</a> written in C for the Gameboy Color.</p>
<div class="images">
<img alt="Shenzhen Solitaire GBC title screen" src="/images/shenzhen-solitaire-title-screen.png" height=288>
<img alt="Shenzhen Solitaire GBC gameplay" src="/images/shenzhen-solitaire-gameplay.png" height=288>
</div>
<h3 class="inline-link"><a href="https://github.com/emilyploszaj/trinkets">Trinkets</a><span class="inline-path"> /git/emi/trinkets</span></h3>
<p>An accessible, data-driven accessory API mod for Minecraft, currently used by dozens of projects and recieving more than 20_000 downloads daily with over 10_000_000 total downloads.</p>
<div class="images">
<img alt="Trinkets UI" src="/images/trinkets.png" height=246>
</div>
<h3 class="inline-link"><a href="https://github.com/emilyploszaj/emi.dev">emi.dev</a><span class="inline-path"> /git/emi/emi.dev</span></h3>
<p>Of course I wrote my own website! Plain HTML and CSS is what the internet should be. Disable CSS and JS in your browser, this site will still look great!</p>
<h3 class="inline-link"><a href="https://github.com/emilyploszaj">GitHub</a><span class="inline-path"> /git/emi</span></h3>
<p>Not enough? Check out my GitHub for a list of the projects I've worked on over the years.</p>
<h2>A Little About Me</h2>
<p>I've been a software engineer since mid 2012. In that time I've written C on the Gameboy Color, leveraged HTML/CSS/JS on the web, and become a master of the Java Virtual Machine.</p>
<p>Many of my projects require an understanding and application of runtime bytecode transformation in Java. If you're looking for me, make sure to double check your classes.</p>
<p>I currently use <a href="https://neon.kde.org/">KDE Neon</a> for my desktop and <a href="https://vscodium.com/">VSCodium</a> as my IDE.</p>
</div>
<div id="botbar">
<p id="copyright">© Emily Ploszaj ❤</p>
</div>
<script>
function pastelColors() {
document.documentElement.style.setProperty("--text-color", "hsl(" + (Math.random() * 360) + ", 100%, " + (Math.floor(Math.random() * 16) + 75) + "%)");
}
</script>
</body>
</html>