From f801e4bb16c99763c5d2250946995eb3bd45e4c2 Mon Sep 17 00:00:00 2001 From: Matej Focko Date: Tue, 15 Aug 2023 17:27:16 +0200 Subject: [PATCH] =?UTF-8?q?chore:=20add=20=E2=80=B9last=5Fupdate=E2=80=BA?= =?UTF-8?q?=20to=20docs-like=20posts?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Allow showing ‹last updated› on the pages and also rename the files where necessary, so they are shown in the order they were created. Signed-off-by: Matej Focko --- ...tion-ambiguity.md => 2021-03-18-postcondition-ambiguity.md} | 3 +++ ib002/03-time-complexity/{extend.mdx => 2021-03-31-extend.mdx} | 3 +++ ib002/04-recursion/{karel-1.md => 2022-11-29-karel-1.md} | 3 +++ .../{applications.md => 2022-04-05-applications.md} | 3 +++ ib002/08-rb-trees/{rules.mdx => 2023-06-10-rules.mdx} | 3 +++ ...-and-iterators.md => 2021-05-18-iterative-and-iterators.md} | 3 +++ ib002/10-graphs/{bfs-tree.mdx => 2022-04-30-bfs-tree.mdx} | 3 +++ pb071/bonuses/03.md | 2 ++ pb071/bonuses/04.md | 2 ++ pb071/pexam/b-garbage_collect.md | 2 ++ pb071/pexam/c-cams.md | 2 ++ pb161/environment.md | 2 ++ 12 files changed, 31 insertions(+) rename ib002/02-algorithms-correctness/{postcondition-ambiguity.md => 2021-03-18-postcondition-ambiguity.md} (99%) rename ib002/03-time-complexity/{extend.mdx => 2021-03-31-extend.mdx} (99%) rename ib002/04-recursion/{karel-1.md => 2022-11-29-karel-1.md} (99%) rename ib002/08-rb-trees/{applications.md => 2022-04-05-applications.md} (99%) rename ib002/08-rb-trees/{rules.mdx => 2023-06-10-rules.mdx} (99%) rename ib002/10-graphs/{iterative-and-iterators.md => 2021-05-18-iterative-and-iterators.md} (99%) rename ib002/10-graphs/{bfs-tree.mdx => 2022-04-30-bfs-tree.mdx} (98%) diff --git a/ib002/02-algorithms-correctness/postcondition-ambiguity.md b/ib002/02-algorithms-correctness/2021-03-18-postcondition-ambiguity.md similarity index 99% rename from ib002/02-algorithms-correctness/postcondition-ambiguity.md rename to ib002/02-algorithms-correctness/2021-03-18-postcondition-ambiguity.md index 553d906..216cc67 100644 --- a/ib002/02-algorithms-correctness/postcondition-ambiguity.md +++ b/ib002/02-algorithms-correctness/2021-03-18-postcondition-ambiguity.md @@ -1,4 +1,5 @@ --- +id: postcondition-ambiguity title: Vague postconditions and proving correctness of algorithms description: | Debugging and testing with precise postconditions. @@ -7,6 +8,8 @@ tags: - testing - postconditions - sorting +last_update: + date: 2021-03-18 --- ## Introduction diff --git a/ib002/03-time-complexity/extend.mdx b/ib002/03-time-complexity/2021-03-31-extend.mdx similarity index 99% rename from ib002/03-time-complexity/extend.mdx rename to ib002/03-time-complexity/2021-03-31-extend.mdx index a9ce564..9fcf26b 100644 --- a/ib002/03-time-complexity/extend.mdx +++ b/ib002/03-time-complexity/2021-03-31-extend.mdx @@ -1,4 +1,5 @@ --- +id: extend title: Time complexity of ‹extend› description: | How to make inefficient algorithm unknowingly. @@ -8,6 +9,8 @@ tags: - dynamic array - time complexity - recursion +last_update: + date: 2021-03-31 --- import ThemedSVG from "@site/src/components/ThemedSVG"; diff --git a/ib002/04-recursion/karel-1.md b/ib002/04-recursion/2022-11-29-karel-1.md similarity index 99% rename from ib002/04-recursion/karel-1.md rename to ib002/04-recursion/2022-11-29-karel-1.md index 6cf284d..7d65066 100644 --- a/ib002/04-recursion/karel-1.md +++ b/ib002/04-recursion/2022-11-29-karel-1.md @@ -1,4 +1,5 @@ --- +id: karel-1 title: Recursion and backtracking with Robot Karel description: | A problem with too many restrictions. @@ -7,6 +8,8 @@ tags: - karel - recursion - backtracking +last_update: + date: 2022-11-29 --- - [Sources](pathname:///files/ib002/karel-1) diff --git a/ib002/08-rb-trees/applications.md b/ib002/08-rb-trees/2022-04-05-applications.md similarity index 99% rename from ib002/08-rb-trees/applications.md rename to ib002/08-rb-trees/2022-04-05-applications.md index 1bbbd56..aaa80d8 100644 --- a/ib002/08-rb-trees/applications.md +++ b/ib002/08-rb-trees/2022-04-05-applications.md @@ -1,4 +1,5 @@ --- +id: applications title: Použití červeno-černých stromů description: | Ukázka použití červeno-černých stromů v standardních knižnicích známých jazyků. @@ -6,6 +7,8 @@ tags: - balanced trees - red-black trees - applications +last_update: + date: 2022-04-05 --- ## Použití diff --git a/ib002/08-rb-trees/rules.mdx b/ib002/08-rb-trees/2023-06-10-rules.mdx similarity index 99% rename from ib002/08-rb-trees/rules.mdx rename to ib002/08-rb-trees/2023-06-10-rules.mdx index 0538fb2..e7d296d 100644 --- a/ib002/08-rb-trees/rules.mdx +++ b/ib002/08-rb-trees/2023-06-10-rules.mdx @@ -1,10 +1,13 @@ --- +id: rules title: On the rules of the red-black tree description: | Shower thoughts on the rules of the red-black tree. tags: - red-black trees - balanced trees +last_update: + date: 2023-06-10 --- import ThemedSVG from "@site/src/components/ThemedSVG"; diff --git a/ib002/10-graphs/iterative-and-iterators.md b/ib002/10-graphs/2021-05-18-iterative-and-iterators.md similarity index 99% rename from ib002/10-graphs/iterative-and-iterators.md rename to ib002/10-graphs/2021-05-18-iterative-and-iterators.md index e742fa3..4349d18 100644 --- a/ib002/10-graphs/iterative-and-iterators.md +++ b/ib002/10-graphs/2021-05-18-iterative-and-iterators.md @@ -1,4 +1,5 @@ --- +id: iterative-and-iterators title: Iterative algorithms via iterators description: | Iterative DFS using iterators. @@ -7,6 +8,8 @@ tags: - graphs - iterators - iterative +last_update: + date: 2021-05-18 --- ## Introduction diff --git a/ib002/10-graphs/bfs-tree.mdx b/ib002/10-graphs/2022-04-30-bfs-tree.mdx similarity index 98% rename from ib002/10-graphs/bfs-tree.mdx rename to ib002/10-graphs/2022-04-30-bfs-tree.mdx index bef5f0d..0b5d880 100644 --- a/ib002/10-graphs/bfs-tree.mdx +++ b/ib002/10-graphs/2022-04-30-bfs-tree.mdx @@ -1,10 +1,13 @@ --- +id: bfs-tree title: Distance boundaries from BFS tree on undirected graphs description: | Short explanation of distance boundaries deduced from a BFS tree. tags: - graphs - bfs +last_update: + date: 2022-04-30 --- import ThemedSVG from "@site/src/components/ThemedSVG"; diff --git a/pb071/bonuses/03.md b/pb071/bonuses/03.md index ed8b50f..16c514a 100644 --- a/pb071/bonuses/03.md +++ b/pb071/bonuses/03.md @@ -3,6 +3,8 @@ id: seminar-03 title: 3rd seminar description: | Select sort implementation on arrays. +last_update: + date: 2023-03-07 --- :::caution diff --git a/pb071/bonuses/04.md b/pb071/bonuses/04.md index 6e92bfe..598dad3 100644 --- a/pb071/bonuses/04.md +++ b/pb071/bonuses/04.md @@ -3,6 +3,8 @@ id: seminar-04 title: 4th seminar description: | Robot in a maze. +last_update: + date: 2023-03-13 --- :::caution diff --git a/pb071/pexam/b-garbage_collect.md b/pb071/pexam/b-garbage_collect.md index 489eba3..7857be7 100644 --- a/pb071/pexam/b-garbage_collect.md +++ b/pb071/pexam/b-garbage_collect.md @@ -3,6 +3,8 @@ slug: garbage_collect title: Practice exam B description: | Garbage everywhere… +last_update: + date: 2023-05-08 --- # Garbage Collection diff --git a/pb071/pexam/c-cams.md b/pb071/pexam/c-cams.md index 989e135..a4bbc26 100644 --- a/pb071/pexam/c-cams.md +++ b/pb071/pexam/c-cams.md @@ -3,6 +3,8 @@ slug: cams title: Practice exam C description: | Stalking cars… +last_update: + date: 2023-05-07 --- # Watching Cams diff --git a/pb161/environment.md b/pb161/environment.md index f6d9c07..1c9d1f1 100644 --- a/pb161/environment.md +++ b/pb161/environment.md @@ -2,6 +2,8 @@ title: Environment description: | Suggestions for setting up a local environment for C++ course. +last_update: + date: 2023-02-18 --- ## Required tools per OS