1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
use super::{Project, Status::*};
pub const PROJECTS: &'static [Project] = &[
Project {
name: "keks-meet",
status: Maintained,
description: "a simple secure web conferencing application.",
link: Some("https://meet.metamuffin.org"),
..default()
},
Project {
name: "jellything",
status: Developing,
description: "media streaming solution (similiar to jellyfin). supports on-the-fly remuxing and federated content.",
..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"),
..default()
},
Project {
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: "pfadfinder",
status: Stale,
description: "parallel anytime A* for openstreetmap with custom frontend and integration into the existing one.",
..default()
},
Project {
name: "video-codec-experiments",
status: Stale,
description: "a few attempts of creating my own video codecs, making use of motion compensation, dct, quantization and more. ",
..default()
},
Project {
name: "pixelflut tools",
status: Stale,
description: "the programs I hacked together when playing pixelflut. includes GPU-acceleration for updating the canvas with minimal bandwidth usage.",
..default()
},
Project {
name: "karlender",
status: Stale,
description: " a personal calender suite consisting of a daemon, a graphical and a command-line user interface. supports very flexible condition based recurring tasks and automatic scheduling so you dont need to decide.",
..default()
},
];
const fn default() -> Project {
Project {
name: "",
status: super::Status::Unknown,
description: "",
link: None,
repo_link: None,
}
}
|