From 2f4b46525b7282845fcd79089f29237f1c687cd1 Mon Sep 17 00:00:00 2001 From: rzmk Date: Wed, 18 Aug 2021 00:11:50 -0400 Subject: [PATCH] Added frontmatter to project READMEs --- projects/Day 16/README.md | 4 ++++ projects/Day 17/README.md | 4 ++++ projects/Day 18/README.md | 4 ++++ projects/Day 19/README.md | 4 ++++ projects/Day 20/README.md | 4 ++++ projects/Day 21/README.md | 4 ++++ 6 files changed, 24 insertions(+) diff --git a/projects/Day 16/README.md b/projects/Day 16/README.md index 5b3c949..294dbd3 100644 --- a/projects/Day 16/README.md +++ b/projects/Day 16/README.md @@ -1,3 +1,7 @@ +--- +custom_edit_url: https://github.com/rzmk/100-days-of-code/edit/main/projects/Day%2016/README.md +--- + # Day 16 - Learning OOP with Python - OOP concepts were taught in the source main.py file, such as classes, attributes, and methods. The Turtle and prettytable packages were also used to explore these concepts, and I installed prettytable in a virtual environment for this. diff --git a/projects/Day 17/README.md b/projects/Day 17/README.md index 676760a..9e05651 100644 --- a/projects/Day 17/README.md +++ b/projects/Day 17/README.md @@ -1,3 +1,7 @@ +--- +custom_edit_url: https://github.com/rzmk/100-days-of-code/edit/main/projects/Day%2017/README.md +--- + # Day 17 - Implementing Classes - Learned the structure of creating a class with its attributes, methods, and how to initialize objects diff --git a/projects/Day 18/README.md b/projects/Day 18/README.md index a643e71..021a9a2 100644 --- a/projects/Day 18/README.md +++ b/projects/Day 18/README.md @@ -1,3 +1,7 @@ +--- +custom_edit_url: https://github.com/rzmk/100-days-of-code/edit/main/projects/Day%2018/README.md +--- + # Day 18 - Turtle & the Graphical User Interface (GUI) - Developed various basic turtle graphics. diff --git a/projects/Day 19/README.md b/projects/Day 19/README.md index 4291c24..2e48b2d 100644 --- a/projects/Day 19/README.md +++ b/projects/Day 19/README.md @@ -1,3 +1,7 @@ +--- +custom_edit_url: https://github.com/rzmk/100-days-of-code/edit/main/projects/Day%2019/README.md +--- + # Day 19 - Instances, State, and Higher Order Functions - Built an etch-a-sketch while understanding higher order functions diff --git a/projects/Day 20/README.md b/projects/Day 20/README.md index b15fd09..9a50c2e 100644 --- a/projects/Day 20/README.md +++ b/projects/Day 20/README.md @@ -1,3 +1,7 @@ +--- +custom_edit_url: https://github.com/rzmk/100-days-of-code/edit/main/projects/Day%2020/README.md +--- + # Day 20 - Build the Snake Game Part 1: Animation & Coordinates - Made a controllable snake, and will complete the full snake game on Day 21. diff --git a/projects/Day 21/README.md b/projects/Day 21/README.md index bb84ac7..815e1e1 100644 --- a/projects/Day 21/README.md +++ b/projects/Day 21/README.md @@ -1,3 +1,7 @@ +--- +custom_edit_url: https://github.com/rzmk/100-days-of-code/edit/main/projects/Day%2021/README.md +--- + # Day 21 - Build the Snake Game Part 2: Inheritance & List Slicing - Built a snake game.