From 6449797562e6366e980db519d47af47a0d4923bc Mon Sep 17 00:00:00 2001 From: metamuffin Date: Thu, 28 Nov 2024 17:35:26 +0100 Subject: update project list --- src/projects/data.rs | 40 ++++++++++++++++++++++++++++++---------- 1 file changed, 30 insertions(+), 10 deletions(-) (limited to 'src') diff --git a/src/projects/data.rs b/src/projects/data.rs index bb6146b..ffdc07a 100644 --- a/src/projects/data.rs +++ b/src/projects/data.rs @@ -21,23 +21,24 @@ pub const PROJECTS: &'static [Project] = &[ ..default() }, Project { - name: "mond", - status: Developing, - description: "server monitoring software, no much code written so far", + name: "gnix", + status: Maintained, + description: "a stupid reverse proxy to replace nginx. serving the webpage you are viewing right now.", + link: Some("https://metamuffin.org"), ..default() }, Project { - name: "voxelwagen", - status: Developing, - description: "voxel game engine made from scratch; made to host an automation game.", - repo_link: Some("https://codeberg.org/voxelwagen/voxelwagen"), + name: "hurrycurry", + status: Maintained, + description: "A cooperative video game about cooking. Featuring multiplayer, 3d graphics and more.", + link: Some("https://hurrycurry.metamuffin.org"), + repo_link: Some("https://codeberg.org/hurrycurry/hurrycurry"), ..default() }, Project { - name: "gnix", + name: "abrechenbarkeit", status: Maintained, - description: "a stupid reverse proxy to replace nginx. serving the webpage you are viewing right now.", - link: Some("https://metamuffin.org"), + description: "a simple trust-based ledger implemented as a Lua CGI web application with a CSV database", ..default() }, Project { @@ -58,12 +59,31 @@ pub const PROJECTS: &'static [Project] = &[ description: "the programs I hacked together when playing pixelflut. includes GPU-acceleration for updating the canvas with minimal bandwidth usage.", ..default() }, + Project { + name: "attocc", + status: Paused(Unfinished), + description: "minimal C compiler in C", + ..default() + }, Project { name: "trash-proxy", status: Maintained, description: "A minecraft reverse proxy for offline authentification.", ..default() }, + Project { + name: "mond", + status: Paused(Unfinished), + description: "server monitoring software, no much code written so far", + ..default() + }, + Project { + name: "voxelwagen", + status: Paused(Unfinished), + description: "voxel game engine made from scratch; made to host an automation game.", + repo_link: Some("https://codeberg.org/voxelwagen/voxelwagen"), + ..default() + }, ]; pub const EXTRA_PROJECTS: &'static [Project] = &[ Project { -- cgit v1.2.3-70-g09d2