Ever been confused by words and phrases used at informatics? Look no further
Add your phrases and words to ./lib/entries.json
using the following format:
{
// The actual name of the entry
name: string;
// Aliases, or commonly used nicknames
aliases?: Array<string>;
// Keywords for the entry, e.g. course, editor
keywords?: Array<string>;
// A description for it
description: string;
}
Look in the file itself for examples, or use the following as a simple example:
{
"name": "Mitt UiB",
"aliases": ["mitt", "MittUiB"],
"description": "UiB sitt internsystem for fag, kommunikasjon, innleveringer etc"
},
MIT