Maybe recruiters will notice me now

This commit is contained in:
2026-02-25 04:19:07 -05:00
parent 704ffd280b
commit a9936afba2
6 changed files with 118 additions and 0 deletions

78
app/routes/proj-disp.tsx Normal file
View File

@@ -0,0 +1,78 @@
import {
Card,
CardFooter,
Container,
Divider,
Heading,
Image,
Link,
Stack,
Text,
} from "@chakra-ui/react";
import projects from "../../data/public-projects.json";
export function meta() {
return [
{
title: "For Hiring Teams - Car Crushers",
},
{
name: "robots",
content: "noindex",
},
];
}
export default function () {
return (
<Container maxW="container.xl">
<Heading textAlign="start">About Evan</Heading>
<br />
<Text textAlign="start">
Hello! Thank you for your interest in me as a candidate. Are you
wondering if I did all those things I mentioned on my resume? If so,
yes, I did. Below is a list of some things I have worked on during my
time here, some of them more strongly related than others. Thank you for
taking the time to look at a history of my past and current work.
</Text>
<br />
<div
style={{
display: "grid",
gap: "1rem",
gridTemplateColumns: "repeat(auto-fill, minmax(16rem, 1fr))",
justifyItems: "center",
}}
>
{projects.map((project) => (
<Card borderRadius="36px" key={project.name} p="12px" w="100%">
<Image
alt={`Logo for ${project.name}`}
borderRadius="36px"
src={`/files/${project.image}`}
/>
<Stack mb="8" mt="6" spacing="3">
<b>
<Heading size="md">
{project.name} ({project.timespan})
</Heading>
</b>
<Text>Time Span: {project.timespan}</Text>
<br />
<Text>{project.description}</Text>
</Stack>
<Divider />
<CardFooter gap="16px" justifyContent="center">
{project.work_link ? (
<Link href={project.work_link}>Project Work</Link>
) : null}
{project.landing_link ? (
<Link href={project.landing_link}>Project Home Page</Link>
) : null}
</CardFooter>
</Card>
))}
</div>
</Container>
);
}

40
data/public-projects.json Normal file
View File

@@ -0,0 +1,40 @@
[
{
"name": "RoVer",
"image": "public-projects-icons/rover.webp",
"work_link": "https://github.com/evaera/RoVer/commits?author=Regalijan",
"landing_link": "https://rover.link/",
"timespan": "2020 - 2021",
"description": "I contributed to RoVer, a Discord bot that links Roblox accounts to manage server access. Working on the very first version gave me hands-on experience shipping production software and collaborating in an open-source project. The current iteration supports 370k+ servers and 15M+ users, underscoring the importance of maintainable, scalable code."
},
{
"name": "Car Crushers Web (This Website)",
"image": "logo512.png",
"landing_link": "/about",
"timespan": "2021 - Present",
"description": "A full-stack web platform I designed and built end-to-end, evolving from a basic HTML/Bootstrap prototype into a modern Remix v2 + React application powered by Cloudflare Workers. It supports internal and community tools for scheduling events, handling moderation workflows (reports, bans, and appeals), and managing time-off requests, with access control driven by Discord roles following the principle of least privilege."
},
{
"name": "Noblox.js",
"image": "public-projects-icons/noblox.png",
"work_link": "https://github.com/noblox/noblox.js",
"landing_link": "https://noblox.js.org/",
"timespan": "2023 - 2025",
"description": "Noblox is an open-source JavaScript library designed to simplify interactions with the Roblox API. My work on this project focused on improving functionality, code reliability, and documentation for the developer community. In 2024, I became a maintainer, taking on responsibilities such as reviewing pull requests, managing contributions, and coordinating with other developers to ensure code quality and consistency. Through this experience, I strengthened my skills in asynchronous JavaScript, API design, and open-source collaboration workflows. While active development has slowed as Robloxs official APIs and documentation have matured, the project remains a valuable tool for developers and a meaningful example of community-driven software maintenance."
},
{
"name": "Car Crushers Forum",
"image": "public-projects-icons/cc-forums.png",
"landing_link": "https://ccdiscussion.com/",
"timespan": "2019 - Present",
"description": "I set up and operated a Discourse forum on GCP using Debian, handling both application-level configuration and cloud infrastructure. Managed deployments, upgrades, and performance tuning while ensuring a secure, stable, and scalable environment for active users."
},
{
"name": "Various Discourse Forum Plugins",
"image": "public-projects-icons/discourse.png",
"work_link": "https://github.com/Regalijan?tab=repositories&language=ruby",
"landing_link": "https://meta.discourse.org/search?expanded=true&q=%40Wolftallemo%20%23plugin%20in%3Afirst",
"timespan": "2021 - Present",
"description": "While operating the Car Crushers Forum, I authored and maintained multiple Discourse plugins, and contributed patches upstream. Publicly available on Discourse Meta, these plugins improved user experience, made life better for forum administrators, and showcased a strong commitment to community-driven software."
}
]

Binary file not shown.

After

Width:  |  Height:  |  Size: 217 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB