Files
tolelom.xyz/data/projects.js
tolelom c2fd7a8a41 feat: OG image, sitemap update, Neo-Slasher, design polish
- Add OG image for social sharing (og:image meta tags)
- Update sitemap data: add Hongik, update descriptions/names
- Add Neo-Slasher project (2D roguelike, ExP game dev club)
- Add Unity client mention to One of the Plans
- Footer border-top, responsive hero photo sizing

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-23 01:57:37 +09:00

70 lines
3.2 KiB
JavaScript

const projects = [
{
name: "Hongik",
description: "C++ 기반 한국어 프로그래밍 언어 인터프리터. Lexer, Parser, AST, 메모리 관리를 직접 설계·구현. React 기반 온라인 플레이그라운드도 함께 개발.",
tags: ["C++", "React"],
links: [
{ label: "hongik.tolelom.xyz", url: "https://hongik.tolelom.xyz" },
{ label: "hongik.docs.tolelom.xyz", url: "https://hongik.docs.tolelom.xyz" },
{ label: "GitHub", url: "https://github.com/hongik2023graduationproject/" }
],
category: "언어 개발",
period: "2023.03 ~ 진행 중"
},
{
name: "SION",
description: "AGV 실시간 경로 제어 시스템. Go Fiber WebSocket 서버로 로봇-웹 실시간 통신, A* 경로 탐색 알고리즘 적용. OpenAI API 연동 실시간 해설과 React 모니터링 대시보드 개발.",
tags: ["Go Fiber", "WebSocket", "React", "Python", "OpenAI API"],
links: [
{ label: "sion.tolelom.xyz", url: "https://sion.tolelom.xyz" },
{ label: "Core", url: "https://github.com/tolelom/sion" },
{ label: "Backend", url: "https://github.com/tolelom/sion-backend" },
{ label: "Frontend", url: "https://github.com/tolelom/sion-frontend" }
],
category: "IoT",
period: "2025.12"
},
{
name: "One of the Plans",
description: "블록체인 연동 게임 플랫폼. Unity 클라이언트 개발에 참여하고, Go 기반 게임 서버와 프라이빗 블록체인(PoA 합의, JSON-RPC, LevelDB)을 직접 구현. Go 게임 런처 개발.",
tags: ["Go", "LevelDB", "Prometheus", "Docker"],
links: [
{ label: "a301.tolelom.xyz", url: "https://a301.tolelom.xyz" },
{ label: "tolchain", url: "https://github.com/tolelom/tolchain" },
{ label: "Gitea", url: "https://git.tolelom.xyz/A301/" }
],
category: "게임",
period: "2026.02 ~ 진행 중"
},
{
name: "tolelog",
description: "개인 블로그 서비스. Go Fiber REST API 서버(Redis 캐싱, JWT 인증, Swagger 문서화), React 프론트엔드, CI/CD 파이프라인 구축.",
tags: ["Go Fiber", "Redis", "React", "CI/CD"],
links: [
{ label: "blog.tolelom.xyz", url: "https://blog.tolelom.xyz" },
{ label: "GitHub", url: "https://github.com/tolelom/tolelog" }
],
category: "웹",
period: "2025.09 ~ 진행 중"
},
{
name: "Neo-Slasher",
description: "게임 개발 동아리 ExP에서 8인 팀으로 제작한 모바일 2D 로그라이크 게임. 프로그래밍 디렉터로서 데이터 관리 시스템, UI/인터페이스 설계, 전투 로직 등 전체 프로그래밍 아키텍처를 주도.",
tags: ["Unity", "C#"],
links: [
{ label: "GitHub", url: "https://github.com/Neo-Slasher" },
{ label: "Refactoring", url: "https://github.com/Neo-Slasher/Neo-Slasher_Refactoring" }
],
category: "게임",
period: "2023.06 ~ 2023.12"
},
{
name: "No-ill",
description: "독거노인 낙상 감지 및 케어 서비스. 6인 팀 PM으로 개발 총괄. React 프론트엔드, Java Spring 백엔드(OpenVidu 연동), 인프라(Jira, Git, CI/CD) 담당.",
tags: ["React", "Java Spring", "OpenVidu", "Jira"],
links: [],
category: "헬스케어",
period: "2026.01 ~ 2026.02"
}
];