summaryrefslogtreecommitdiff
path: root/src/projects/data.rs
blob: 21f94624c0d7fa2e7ad2de1356c69c1fd9029de2 (plain)
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
use super::{Project, Status::*, State::*};

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: "mond",
        status: Developing,
        description: "server monitoring software, no much code written so far",
        ..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: Paused(Working),
        description: "parallel anytime A* for openstreetmap with custom frontend and integration into the existing one.",
        ..default()
    },
    Project {
        name: "video-codec-experiments",
        status: Paused(Working),
        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: Paused(Working),
        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: Paused(Working),
        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()
    },
];
pub const EXTRA_PROJECTS: &'static [Project] = &[
    Project {
        name: "bad-editor",
        status: Paused(Unfinished),
        description: "A really bad editor",
        ..default()
    },
    Project {
        name: "cosu",
        status: Paused(Unfinished),
        description: "a simple fast osu! client in c (not nearly a working client yet)",
        ..default()
    },
    Project {
        name: "sprakc",
        status: Abandoned(Working),
        description: "A compiler from c++ to sprak",
        ..default()
    },
    Project {
        name: "sprak-runtime",
        status: Abandoned(Working),
        description: "",
        ..default()
    },
    Project {
        name: "ehb-data",
        status: Abandoned(Working),
        description: "",
        ..default()
    },
    Project {
        name: "sgf",
        status: Unknown,
        description: "",
        ..default()
    },
    Project {
        name: "circuit-simulator",
        status: Unknown,
        description: "",
        ..default()
    },
    Project {
        name: "metabot",
        status: Paused(Unfinished),
        description: "",
        ..default()
    },
    Project {
        name: "website",
        status: Maintained,
        description: "",
        ..default()
    },
    Project {
        name: "ld49",
        status: Abandoned(Unfinished),
        description: "Ludum dare 49",
        ..default()
    },
    Project {
        name: "bot-game",
        status: Unknown,
        description: "",
        ..default()
    },
    Project {
        name: "game-platform",
        status: Unknown,
        description: "",
        ..default()
    },
    Project {
        name: "simple-game-engine",
        status: Paused(Unfinished),
        description: "",
        ..default()
    },
    Project {
        name: "voice-control",
        status: Paused(Unfinished),
        description: "",
        ..default()
    },
    Project {
        name: "libreverse-old",
        status: Abandoned(Unfinished),
        description: "",
        ..default()
    },
    Project {
        name: "golf-lang",
        status: Abandoned(Unfinished),
        description: "",
        ..default()
    },
    Project {
        name: "mumble-music",
        status: Paused(Unfinished),
        description: "",
        ..default()
    },
    Project {
        name: "muon",
        status: Paused(Unfinished),
        description: "",
        ..default()
    },
    Project {
        name: "libresyncedvideoplayer",
        status: Unknown,
        description: "",
        ..default()
    },
    Project {
        name: "fireworks",
        status: Abandoned(Unfinished),
        description: "Fireworks with Three.js",
        ..default()
    },
    Project {
        name: "bj1",
        status: Unknown,
        description: "",
        ..default()
    },
    Project {
        name: "so-survey",
        status: Paused(Working),
        description: "Some code for processing the stackoverflow developer survey's results",
        ..default()
    },
    Project {
        name: "rubberkeys",
        status: Abandoned(Working),
        description: "",
        ..default()
    },
    Project {
        name: "lunar-lander",
        status: Abandoned(Working),
        description: "",
        ..default()
    },
    Project {
        name: "molecule-viewer",
        status: Paused(Working),
        description: "Web application to visualize layout of molecules",
        ..default()
    },
    Project {
        name: "oxelpot",
        status: Paused(Working),
        description: "text-board service using pure html on the client",
        ..default()
    },
    Project {
        name: "CUBE",
        status: Abandoned(Unfinished),
        description: "",
        ..default()
    },
    Project {
        name: "godot-mumble-link",
        status: Paused(Unfinished),
        description: "",
        ..default()
    },
    Project {
        name: "libreverse-server",
        status: Unknown,
        description: "2d multiplayer game engine server",
        ..default()
    },
    Project {
        name: "twclient",
        status: Paused(Unfinished),
        description: "A teeworlds client in rust, based on libtw2",
        ..default()
    },
    Project {
        name: "minetest_meta_uhc",
        status: Paused(Unfinished),
        description: "ultra hardcore mod for minetest with decreasing border size",
        ..default()
    },
    Project {
        name: "guitar-chords",
        status: Paused(Unfinished),
        description: "",
        ..default()
    },
    Project {
        name: "gnu-netcat",
        status: Paused(Working),
        description: "Mirror of the “GNU“ netcat utility (imported from CVS)",
        ..default()
    },
    Project {
        name: "stonk-game",
        status: Abandoned(Unfinished),
        description: "simple game to compete in trading stocks",
        ..default()
    },
    Project {
        name: "pw-patchbay",
        status: Paused(Working),
        description: "Tool to setup links for pipewire",
        ..default()
    },
    Project {
        name: "desterr",
        status: Maintained,
        description: "dead simple tool to distinguish stderr and stdout",
        ..default()
    },
    Project {
        name: "staticwiki",
        status: Paused(Working),
        description: "tools to convert MediaWiki XML dumps to static HTML pages",
        ..default()
    },
    Project {
        name: "trash-proxy",
        status: Paused(Working),
        description: "A minecraft reverse proxy for offline auth.",
        ..default()
    },
    Project {
        name: "trash-map",
        status: Paused(Working),
        description: "A minecraft map renderer",
        ..default()
    },
    Project {
        name: "acoustsearch",
        status: Paused(Unfinished),
        description: "Search the acoustid database locally.",
        ..default()
    },
    Project {
        name: "meta_shell",
        status: Paused(Unfinished),
        description: "Simple wayland shell only including a status dock.",
        ..default()
    },
    Project {
        name: "3d-frame-interpolation",
        status: Paused(Working),
        description: "",
        ..default()
    },
    Project {
        name: "librelambda",
        status: Paused(Working),
        description: "A lambda calculus \"solver\".",
        ..default()
    },
    Project {
        name: "automato",
        status: Paused(Unfinished),
        description: "A minimal, gridless automation game."    ,
        ..default()
    },
];


const fn default() -> Project {
    Project {
        name: "",
        status: super::Status::Unknown,
        description: "",
        link: None,
        repo_link: None,
    }
}