My personal site hosted @ https://indexx.dev
1export interface Project {
2 title: string;
3 description: string;
4 date: string;
5 href: string;
6 note?: string;
7}
8
9export const projects: Project[] = [
10 {
11 title: "Box Critters Localbox",
12 description:
13 "Looking to relive Box Critters, a defunct virtual world made by Rocketsnail Games, well you're in luck! In this GitHub organization, you can find: a Typescript, unofficial server remake of the game server, documentation surrounding the game, and an Electron desktop app for playing the game locally.",
14 date: "since November 2024",
15 href: "https://github.com/Box-Critters-Localbox/",
16 },
17 {
18 title: "Toonkins Retooned",
19 description:
20 "Looking to relive Toonkins, a defunct virtual world made by Shenanigames, well you're in luck! In this Github organization, you can find: a Typescript, unofficial server remake of the game server, and a decompiled Unity project reassembly of the game (Unity project source coming soon).",
21 date: "since October 2024",
22 href: "https://github.com/ToonkinsRetooned/",
23 note:
24 'Note: "Retooned" is purposely spelled wrong, I know how to spell I swear 😭',
25 },
26 {
27 title: "Poly+ Rewrite",
28 description:
29 "A rewrite of Poly+, my quality-of-life browser extension for Polytoria.com. Built entirely fresh using the WXT extension framework, Typescript, and with added better overall code quality. This version is not public yet.",
30 date: "since October 2024, work in progress (private)",
31 href: "#",
32 },
33 {
34 title: "PolyCode",
35 description:
36 "PolyCode provides free code snippets, tutorials, and toolbox resources for Polytoria.",
37 date: "since August 2023, archived",
38 href: "https://polycode.vercel.app",
39 note:
40 "Note: This was made awhile ago, and if I were to redo it, I'd implement SSR instead of doing JSON file fetching.",
41 },
42 {
43 title: "Poly+",
44 description:
45 "Poly+ is a quality-of-life Chromium-based extension for Polytoria!",
46 date: "since February 2023, archived",
47 href: "https://github.com/indexxing/PolyPlus/",
48 },
49];