fix: label legacy programme information

This commit is contained in:
msa46 2026-08-02 16:27:55 +02:00
parent 25db9a8c3f
commit 8f1bee6bd6
2 changed files with 16 additions and 4 deletions

View file

@ -25,11 +25,15 @@ MSV Incognito is the study association for the Department of Data Science & Arti
<LinkCard title="About Incognito" href="./about-incognito/" description="Learn about the study association behind this wiki." /> <LinkCard title="About Incognito" href="./about-incognito/" description="Learn about the study association behind this wiki." />
</CardGrid> </CardGrid>
## 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. 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. 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
<a href="https://www.youtube.com/watch?v=__N81DcxsEw">Watch the programme video on YouTube</a> <a href="https://www.youtube.com/watch?v=__N81DcxsEw">Watch the programme video on YouTube</a>
</p> </p>
### Bachelor #### Bachelor
The bachelors 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. The bachelors 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.
### Masters programmes #### Masters 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. **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.

View file

@ -58,3 +58,11 @@ test('landing page navigation uses the migration manifest destinations', async (
assert.ok(landingPage.includes(`href="${destination}"`), `missing ${destination}`); 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\./,
);
});