2022-08-10 16:31:25 -04:00
|
|
|
|
export interface TagData {
|
|
|
|
|
name?: string;
|
|
|
|
|
description?: string;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export const tagInfo: Record<string, TagData> = {
|
2022-10-12 21:16:13 -04:00
|
|
|
|
barin: {
|
|
|
|
|
name: "Barin",
|
|
|
|
|
description:
|
|
|
|
|
"Welcome to Barin — a world in constant conflict between productivity and procrastination.",
|
|
|
|
|
},
|
2022-08-10 16:31:25 -04:00
|
|
|
|
bsscc: {
|
|
|
|
|
name: "BSSCC",
|
|
|
|
|
description: "Posts related to Bayview's Computer Club.",
|
|
|
|
|
},
|
2022-10-12 21:16:13 -04:00
|
|
|
|
ibia: {
|
|
|
|
|
name: "Ibia",
|
|
|
|
|
description:
|
|
|
|
|
"A Kurious child struggles to fight the misinformation brought by the Six Goddesses of the Subjects.",
|
|
|
|
|
},
|
2022-08-10 16:31:25 -04:00
|
|
|
|
misc: { name: "Miscellaneous" },
|
|
|
|
|
poetry: {
|
|
|
|
|
name: "Poetry",
|
|
|
|
|
description:
|
|
|
|
|
"Poetry is interesting in that there is a lot of implied stuff that is normally said directly in prose.",
|
|
|
|
|
},
|
|
|
|
|
primoprod: {
|
|
|
|
|
name: "Primoprod",
|
|
|
|
|
description:
|
2022-08-10 18:05:40 -04:00
|
|
|
|
'Reports following the development of <a href="https://github.com/potatoeggy/primoprod">Primoprod</a>.',
|
2022-08-10 16:31:25 -04:00
|
|
|
|
},
|
|
|
|
|
tech: { name: "Technology" },
|
|
|
|
|
unstagnation: {
|
|
|
|
|
name: "Unstagnation Short",
|
|
|
|
|
description:
|
|
|
|
|
"A collection of very short stories written to do something productive during June–August 2020 and August 2021.",
|
|
|
|
|
},
|
2022-10-02 16:30:35 -04:00
|
|
|
|
albatross: {
|
|
|
|
|
name: "The FOSS Albatross",
|
|
|
|
|
description:
|
|
|
|
|
'Articles about free and open source software. Also available on <a href="https://medium.com/the-foss-albatross">Medium</a>.',
|
|
|
|
|
},
|
2022-10-24 23:05:11 -04:00
|
|
|
|
birds: {
|
|
|
|
|
name: "Bird Family",
|
|
|
|
|
description:
|
|
|
|
|
"A large, loving family of birds who have found in each other a kindred soul for eternal suffering.",
|
|
|
|
|
},
|
2022-12-02 00:46:00 -05:00
|
|
|
|
uoft: {
|
|
|
|
|
name: "University of Teyvat",
|
|
|
|
|
description: "A <em>Genshin Impact</em> university AU.",
|
|
|
|
|
},
|
|
|
|
|
nanowrimo: {
|
|
|
|
|
name: "NaNoWriMo",
|
|
|
|
|
description:
|
|
|
|
|
"Story snippets written during National Novel Writing Month as part of a larger work.",
|
|
|
|
|
},
|
2022-08-10 16:31:25 -04:00
|
|
|
|
};
|
|
|
|
|
export default tagInfo;
|