Files
seanstarkey.dev/projects.js
2026-05-27 16:55:56 -06:00

160 lines
4.0 KiB
JavaScript

window.projects = [
{
name: "Hallowdeep",
description: "A browser-based Halloween roguelike game.",
url: "https://github.com/SeanStarkey/Hallowdeep",
siteUrl: "https://seanstarkey.dev/Hallowdeep/",
language: "JavaScript",
license: "MIT",
stars: 0,
forks: 0,
updated: "2026-05-27",
created: "2026-05-01",
tags: ["featured", "game", "browser"],
accent: "#f97316"
},
{
name: "talus",
description: "A recent C++ project under active development.",
url: "https://github.com/SeanStarkey/talus",
language: "C++",
license: "MIT",
stars: 0,
forks: 0,
updated: "2026-05-27",
created: "2026-05-15",
tags: ["featured", "systems"],
accent: "#38bdf8"
},
{
name: "chexdump",
description: "ANSI C utilities for printing binary data, useful for debugging and logging.",
url: "https://github.com/SeanStarkey/chexdump",
language: "C",
license: "Unspecified",
stars: 1,
forks: 0,
updated: "2026-05-27",
created: "2011-06-02",
tags: ["featured", "utility", "debugging"],
accent: "#22c55e"
},
{
name: "adventofcode",
description: "Advent of Code solutions and experiments.",
url: "https://github.com/SeanStarkey/adventofcode",
language: "CMake",
license: "Unspecified",
stars: 0,
forks: 0,
updated: "2025-12-04",
created: "2025-12-03",
tags: ["Practice", "puzzles"],
accent: "#eab308"
},
{
name: "base64",
description: "A Base64 encoder and decoder written in ANSI C.",
url: "https://github.com/SeanStarkey/base64",
language: "C",
license: "Unspecified",
stars: 5,
forks: 4,
updated: "2024-09-29",
created: "2012-10-04",
tags: ["utility", "encoding"],
accent: "#10b981"
},
{
name: "euler",
description: "Project Euler solutions.",
url: "https://github.com/SeanStarkey/euler",
language: "Common Lisp",
license: "Unspecified",
stars: 2,
forks: 0,
updated: "2022-10-11",
created: "2012-06-05",
tags: ["Practice", "math"],
accent: "#a78bfa"
},
{
name: "math",
description: "C++ math explorations and problem-solving code.",
url: "https://github.com/SeanStarkey/math",
language: "C++",
license: "Unspecified",
stars: 0,
forks: 0,
updated: "2022-04-13",
created: "2022-04-13",
tags: ["math"],
accent: "#60a5fa"
},
{
name: "graphics",
description: "Graphics programming experiments.",
url: "https://github.com/SeanStarkey/graphics",
language: "Makefile",
license: "Unspecified",
stars: 0,
forks: 0,
updated: "2022-04-11",
created: "2022-04-11",
tags: ["graphics"],
accent: "#fb7185"
},
{
name: "codingpractice",
description: "Various coding practice problems.",
url: "https://github.com/SeanStarkey/codingpractice",
language: "C++",
license: "Unspecified",
stars: 1,
forks: 0,
updated: "2021-09-27",
created: "2021-05-18",
tags: ["Practice", "algorithms"],
accent: "#facc15"
},
{
name: "map-utilities",
description: "Various mapping utilities.",
url: "https://github.com/SeanStarkey/map-utilities",
language: "C++",
license: "Apache-2.0",
stars: 0,
forks: 0,
updated: "2015-06-03",
created: "2013-08-25",
tags: ["utility", "maps"],
accent: "#2dd4bf"
},
{
name: "uva",
description: "UVa Online Judge problem solutions.",
url: "https://github.com/SeanStarkey/uva",
language: "C++",
license: "Unspecified",
stars: 0,
forks: 0,
updated: "2013-12-23",
created: "2012-06-22",
tags: ["Practice", "algorithms"],
accent: "#818cf8"
},
{
name: "torrent-file-reader",
description: "Reads a torrent file into memory.",
url: "https://github.com/SeanStarkey/torrent-file-reader",
language: "C++",
license: "Unspecified",
stars: 0,
forks: 1,
updated: "2013-10-16",
created: "2012-07-31",
tags: ["utility", "parser"],
accent: "#f472b6"
}
];