diff --git a/src/content/docs/index.mdx b/src/content/docs/index.mdx index b51dbc4..479727f 100644 --- a/src/content/docs/index.mdx +++ b/src/content/docs/index.mdx @@ -25,11 +25,15 @@ MSV Incognito is the study association for the Department of Data Science & Arti -## Maastricht University +## Historical programme notes + +This information originated in the previous wiki and may be outdated. For current curricula, consult the [official Maastricht University programme pages](https://www.maastrichtuniversity.nl/about-um/faculties/humanities-and-sciences/department-data-science-knowledge-engineering). + +### Maastricht University Maastricht University (UM) is the youngest university in the Netherlands. Its “Leading in Learning” approach is closely associated with Problem-Based Learning (PBL): students work in small tutorial groups to analyse problems, exchange knowledge, and set their learning goals together. This approach connects education with independent research and collaboration. -## Data Science & Knowledge Engineering +### Data Science & Knowledge Engineering The programmes cover the integration of knowledge into computer systems to solve complex problems that ordinarily need significant human expertise. The field connects mathematical logic, artificial intelligence, data mining, machine learning, decision support, knowledge management, and cognitive science. @@ -37,11 +41,11 @@ The programmes cover the integration of knowledge into computer systems to solve Watch the programme video on YouTube

-### Bachelor +#### Bachelor The bachelor’s programme includes Java and Matlab as primary languages, with Prolog and C/C++ available as optional languages, alongside LaTeX. Its Project-Centred Learning (PCL) approach has students work in small groups throughout a semester on phases of one project, such as traffic simulation, ECG separation, multi-agent surveillance, or speaker recognition. -### Master’s programmes +#### Master’s programmes **Artificial Intelligence** focuses on developing and applying intelligent systems that can learn, reason, and collaborate. Research areas include machine learning, information retrieval, intelligent search, and multi-agent systems. diff --git a/tests/project-structure.test.mjs b/tests/project-structure.test.mjs index 3fea342..7b719ae 100644 --- a/tests/project-structure.test.mjs +++ b/tests/project-structure.test.mjs @@ -58,3 +58,11 @@ test('landing page navigation uses the migration manifest destinations', async ( assert.ok(landingPage.includes(`href="${destination}"`), `missing ${destination}`); } }); + +test('landing page labels source-era programme information as potentially outdated', async () => { + const landingPage = await readFile('src/content/docs/index.mdx', 'utf8'); + assert.match( + landingPage, + /This information originated in the previous wiki and may be outdated\./, + ); +});