mirror of
https://github.com/mfocko/blog.git
synced 2024-11-21 20:43:48 +01:00
chore: add ‹last_update› to docs-like posts
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 <mfocko@redhat.com>
This commit is contained in:
parent
ad9e964c4b
commit
f801e4bb16
12 changed files with 31 additions and 0 deletions
|
@ -1,4 +1,5 @@
|
||||||
---
|
---
|
||||||
|
id: postcondition-ambiguity
|
||||||
title: Vague postconditions and proving correctness of algorithms
|
title: Vague postconditions and proving correctness of algorithms
|
||||||
description: |
|
description: |
|
||||||
Debugging and testing with precise postconditions.
|
Debugging and testing with precise postconditions.
|
||||||
|
@ -7,6 +8,8 @@ tags:
|
||||||
- testing
|
- testing
|
||||||
- postconditions
|
- postconditions
|
||||||
- sorting
|
- sorting
|
||||||
|
last_update:
|
||||||
|
date: 2021-03-18
|
||||||
---
|
---
|
||||||
|
|
||||||
## Introduction
|
## Introduction
|
|
@ -1,4 +1,5 @@
|
||||||
---
|
---
|
||||||
|
id: extend
|
||||||
title: Time complexity of ‹extend›
|
title: Time complexity of ‹extend›
|
||||||
description: |
|
description: |
|
||||||
How to make inefficient algorithm unknowingly.
|
How to make inefficient algorithm unknowingly.
|
||||||
|
@ -8,6 +9,8 @@ tags:
|
||||||
- dynamic array
|
- dynamic array
|
||||||
- time complexity
|
- time complexity
|
||||||
- recursion
|
- recursion
|
||||||
|
last_update:
|
||||||
|
date: 2021-03-31
|
||||||
---
|
---
|
||||||
|
|
||||||
import ThemedSVG from "@site/src/components/ThemedSVG";
|
import ThemedSVG from "@site/src/components/ThemedSVG";
|
|
@ -1,4 +1,5 @@
|
||||||
---
|
---
|
||||||
|
id: karel-1
|
||||||
title: Recursion and backtracking with Robot Karel
|
title: Recursion and backtracking with Robot Karel
|
||||||
description: |
|
description: |
|
||||||
A problem with too many restrictions.
|
A problem with too many restrictions.
|
||||||
|
@ -7,6 +8,8 @@ tags:
|
||||||
- karel
|
- karel
|
||||||
- recursion
|
- recursion
|
||||||
- backtracking
|
- backtracking
|
||||||
|
last_update:
|
||||||
|
date: 2022-11-29
|
||||||
---
|
---
|
||||||
|
|
||||||
- [Sources](pathname:///files/ib002/karel-1)
|
- [Sources](pathname:///files/ib002/karel-1)
|
|
@ -1,4 +1,5 @@
|
||||||
---
|
---
|
||||||
|
id: applications
|
||||||
title: Použití červeno-černých stromů
|
title: Použití červeno-černých stromů
|
||||||
description: |
|
description: |
|
||||||
Ukázka použití červeno-černých stromů v standardních knižnicích známých jazyků.
|
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
|
- balanced trees
|
||||||
- red-black trees
|
- red-black trees
|
||||||
- applications
|
- applications
|
||||||
|
last_update:
|
||||||
|
date: 2022-04-05
|
||||||
---
|
---
|
||||||
|
|
||||||
## Použití
|
## Použití
|
|
@ -1,10 +1,13 @@
|
||||||
---
|
---
|
||||||
|
id: rules
|
||||||
title: On the rules of the red-black tree
|
title: On the rules of the red-black tree
|
||||||
description: |
|
description: |
|
||||||
Shower thoughts on the rules of the red-black tree.
|
Shower thoughts on the rules of the red-black tree.
|
||||||
tags:
|
tags:
|
||||||
- red-black trees
|
- red-black trees
|
||||||
- balanced trees
|
- balanced trees
|
||||||
|
last_update:
|
||||||
|
date: 2023-06-10
|
||||||
---
|
---
|
||||||
|
|
||||||
import ThemedSVG from "@site/src/components/ThemedSVG";
|
import ThemedSVG from "@site/src/components/ThemedSVG";
|
|
@ -1,4 +1,5 @@
|
||||||
---
|
---
|
||||||
|
id: iterative-and-iterators
|
||||||
title: Iterative algorithms via iterators
|
title: Iterative algorithms via iterators
|
||||||
description: |
|
description: |
|
||||||
Iterative DFS using iterators.
|
Iterative DFS using iterators.
|
||||||
|
@ -7,6 +8,8 @@ tags:
|
||||||
- graphs
|
- graphs
|
||||||
- iterators
|
- iterators
|
||||||
- iterative
|
- iterative
|
||||||
|
last_update:
|
||||||
|
date: 2021-05-18
|
||||||
---
|
---
|
||||||
|
|
||||||
## Introduction
|
## Introduction
|
|
@ -1,10 +1,13 @@
|
||||||
---
|
---
|
||||||
|
id: bfs-tree
|
||||||
title: Distance boundaries from BFS tree on undirected graphs
|
title: Distance boundaries from BFS tree on undirected graphs
|
||||||
description: |
|
description: |
|
||||||
Short explanation of distance boundaries deduced from a BFS tree.
|
Short explanation of distance boundaries deduced from a BFS tree.
|
||||||
tags:
|
tags:
|
||||||
- graphs
|
- graphs
|
||||||
- bfs
|
- bfs
|
||||||
|
last_update:
|
||||||
|
date: 2022-04-30
|
||||||
---
|
---
|
||||||
|
|
||||||
import ThemedSVG from "@site/src/components/ThemedSVG";
|
import ThemedSVG from "@site/src/components/ThemedSVG";
|
|
@ -3,6 +3,8 @@ id: seminar-03
|
||||||
title: 3rd seminar
|
title: 3rd seminar
|
||||||
description: |
|
description: |
|
||||||
Select sort implementation on arrays.
|
Select sort implementation on arrays.
|
||||||
|
last_update:
|
||||||
|
date: 2023-03-07
|
||||||
---
|
---
|
||||||
|
|
||||||
:::caution
|
:::caution
|
||||||
|
|
|
@ -3,6 +3,8 @@ id: seminar-04
|
||||||
title: 4th seminar
|
title: 4th seminar
|
||||||
description: |
|
description: |
|
||||||
Robot in a maze.
|
Robot in a maze.
|
||||||
|
last_update:
|
||||||
|
date: 2023-03-13
|
||||||
---
|
---
|
||||||
|
|
||||||
:::caution
|
:::caution
|
||||||
|
|
|
@ -3,6 +3,8 @@ slug: garbage_collect
|
||||||
title: Practice exam B
|
title: Practice exam B
|
||||||
description: |
|
description: |
|
||||||
Garbage everywhere…
|
Garbage everywhere…
|
||||||
|
last_update:
|
||||||
|
date: 2023-05-08
|
||||||
---
|
---
|
||||||
|
|
||||||
# Garbage Collection
|
# Garbage Collection
|
||||||
|
|
|
@ -3,6 +3,8 @@ slug: cams
|
||||||
title: Practice exam C
|
title: Practice exam C
|
||||||
description: |
|
description: |
|
||||||
Stalking cars…
|
Stalking cars…
|
||||||
|
last_update:
|
||||||
|
date: 2023-05-07
|
||||||
---
|
---
|
||||||
|
|
||||||
# Watching Cams
|
# Watching Cams
|
||||||
|
|
|
@ -2,6 +2,8 @@
|
||||||
title: Environment
|
title: Environment
|
||||||
description: |
|
description: |
|
||||||
Suggestions for setting up a local environment for C++ course.
|
Suggestions for setting up a local environment for C++ course.
|
||||||
|
last_update:
|
||||||
|
date: 2023-02-18
|
||||||
---
|
---
|
||||||
|
|
||||||
## Required tools per OS
|
## Required tools per OS
|
||||||
|
|
Loading…
Reference in a new issue