From 717db68a5d63a1278d88c143d9ea762d9c964e2e Mon Sep 17 00:00:00 2001 From: msa46 Date: Sun, 2 Aug 2026 16:53:42 +0200 Subject: [PATCH] content: migrate Master DSDM section --- src/config/sidebar.mjs | 15 +++++++- src/content/docs/master-dsdm/index.md | 14 +++++++ src/content/docs/master-dsdm/year-1/index.md | 40 ++++++++++++++++++++ src/content/docs/master-dsdm/year-2/index.md | 20 ++++++++++ tests/content-audit.test.mjs | 3 ++ 5 files changed, 91 insertions(+), 1 deletion(-) create mode 100644 src/content/docs/master-dsdm/index.md create mode 100644 src/content/docs/master-dsdm/year-1/index.md create mode 100644 src/content/docs/master-dsdm/year-2/index.md diff --git a/src/config/sidebar.mjs b/src/config/sidebar.mjs index 8ee29a5..7304d48 100644 --- a/src/config/sidebar.mjs +++ b/src/config/sidebar.mjs @@ -52,6 +52,19 @@ export const sidebar = [ }, ], }, - { label: 'Master DSDM', items: [] }, + { + label: 'Master DSDM', + items: [ + { slug: 'master-dsdm' }, + { + label: 'Year 1', + items: [{ slug: 'master-dsdm/year-1' }], + }, + { + label: 'Year 2', + items: [{ slug: 'master-dsdm/year-2' }], + }, + ], + }, { label: 'Useful Information', items: [] }, ]; diff --git a/src/content/docs/master-dsdm/index.md b/src/content/docs/master-dsdm/index.md new file mode 100644 index 0000000..df2050a --- /dev/null +++ b/src/content/docs/master-dsdm/index.md @@ -0,0 +1,14 @@ +--- +title: Data Science for Decision Making +description: Historical information about the master's programme in Data Science for Decision Making at Maastricht University. +--- + +# Data Science for Decision Making + +:::caution[Historical information] +This information originated in the previous wiki and may be outdated. +::: + +The following pages contain information about the master's programme in Data Science for Decision Making at the Department of Data Science and Knowledge Engineering at Maastricht University. Course summaries and old exams can be found in their respective folders. + +For the most up-to-date overview of the courses taught, visit the [Maastricht University education website](https://www.maastrichtuniversity.nl/education). diff --git a/src/content/docs/master-dsdm/year-1/index.md b/src/content/docs/master-dsdm/year-1/index.md new file mode 100644 index 0000000..3dce4d4 --- /dev/null +++ b/src/content/docs/master-dsdm/year-1/index.md @@ -0,0 +1,40 @@ +--- +title: Year 1 +description: Historical course, elective, and project information for the first year of the master's programme in Data Science for Decision Making. +--- + +# Year 1 + +:::caution[Historical information] +This information originated in the previous wiki and may be outdated. +::: + +## Schedule + +Year 1 has two courses per block in Blocks 1, 2, 4, and 5. There are four core courses, four electives, and two semester projects. + +## Core courses + +:::note[Historical course list] +The following course list originated in the previous wiki and may have changed. +::: + +- Block 1: Data Mining. +- Block 2: Model Identification and Data Fitting. +- Block 4: Algorithms for Big Data. +- Block 5: Planning and Scheduling. + +## Electives + +:::note[Historical course list] +The following elective list originated in the previous wiki and may have changed. +::: + +- Block 1: Signal and Image Processing, Mathematical Optimization, and Stochastic Decision-Making. +- Block 2: Advanced Concepts in Machine Learning and Applications of Image and Video Processing. +- Block 4: Building and Mining Knowledge Graphs, Information Security, and Dynamic Game Theory. +- Block 5: Symbolic Computation and Control, Deep Learning, Information Retrieval and Text Mining, and Computer Vision. + +## Semester projects + +The first year includes two semester projects. diff --git a/src/content/docs/master-dsdm/year-2/index.md b/src/content/docs/master-dsdm/year-2/index.md new file mode 100644 index 0000000..5a969d5 --- /dev/null +++ b/src/content/docs/master-dsdm/year-2/index.md @@ -0,0 +1,20 @@ +--- +title: Year 2 +description: Historical elective and thesis information for the second year of the master's programme in Data Science for Decision Making. +--- + +# Year 2 + +:::caution[Historical information] +This information originated in the previous wiki and may be outdated. +::: + +## Schedule + +:::note[Historical study structure] +The following study structure originated in the previous wiki and may have changed. +::: + +The first semester of Year 2 consists of 30 credits of electives. + +The second semester of Year 2 consists of a 30-credit master's thesis. diff --git a/tests/content-audit.test.mjs b/tests/content-audit.test.mjs index 5ad4299..cfef346 100644 --- a/tests/content-audit.test.mjs +++ b/tests/content-audit.test.mjs @@ -23,6 +23,9 @@ for (const file of [ 'src/content/docs/master-ai/year-1/research-project-1.md', 'src/content/docs/master-ai/year-1/research-project-2.md', 'src/content/docs/master-ai/year-2/index.md', + 'src/content/docs/master-dsdm/index.md', + 'src/content/docs/master-dsdm/year-1/index.md', + 'src/content/docs/master-dsdm/year-2/index.md', ]) { test(`${file} contains clean migrated Markdown`, async () => { const content = await readFile(file, 'utf8');