From cf663fa7ba467cab1a8f1306ca502dce59576caa Mon Sep 17 00:00:00 2001 From: digehode Date: Wed, 29 Jul 2020 15:43:21 +0100 Subject: [PATCH 1/4] Forgot selection --- docs/selection/README.md | 3 +++ mkdocs.yml | 1 + 2 files changed, 4 insertions(+) create mode 100644 docs/selection/README.md diff --git a/docs/selection/README.md b/docs/selection/README.md new file mode 100644 index 0000000..73fab86 --- /dev/null +++ b/docs/selection/README.md @@ -0,0 +1,3 @@ +# Selection + +{{todo("Write this section")}} diff --git a/mkdocs.yml b/mkdocs.yml index a1feab8..baafa8e 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -10,6 +10,7 @@ nav: - 'TODO - Pip': ./ - 'Values and Types': 'values-and-types/README.md' - 'Conditionals': 'conditionals/README.md' + - 'Selection': 'selection/' - 'Iteration': - 'Introduction to iteration': 'iteration/intro-to-iteration.md' - 'For Loops': 'iteration/for-loops/README.md' From afe3938cbb043367ff5cf8bea2302bd05a10137c Mon Sep 17 00:00:00 2001 From: digehode Date: Wed, 29 Jul 2020 15:45:39 +0100 Subject: [PATCH 2/4] Typo :/ --- mkdocs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mkdocs.yml b/mkdocs.yml index baafa8e..96aac63 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -20,7 +20,7 @@ nav: - 'Introduction to functions': 'functions/intro-to-functions.md' - 'User created functions': 'functions/user-functions/README.md' - 'Built-in functions': 'functions/built-in-functions/README.md' - - 'Tetsing': 'testing/' + - 'Testing': 'testing/' - 'Documentation': 'documentation/' - 'Representation of Data': './data/' - 'Algorithms': 'algorithms/' From f5137fcd2bd9b5facf2a777b455c346b304b675a Mon Sep 17 00:00:00 2001 From: digehode Date: Wed, 29 Jul 2020 18:53:43 +0100 Subject: [PATCH 3/4] Added files and user interaction pieces --- docs/files/README.md | 3 +++ docs/interaction/README.md | 12 ++++++++++++ mkdocs.yml | 4 +++- 3 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 docs/files/README.md create mode 100644 docs/interaction/README.md diff --git a/docs/files/README.md b/docs/files/README.md new file mode 100644 index 0000000..909602e --- /dev/null +++ b/docs/files/README.md @@ -0,0 +1,3 @@ +# Reading and Writing Files + +{{todo("Write this section")}} diff --git a/docs/interaction/README.md b/docs/interaction/README.md new file mode 100644 index 0000000..584946f --- /dev/null +++ b/docs/interaction/README.md @@ -0,0 +1,12 @@ +# Interacting with the User + +{{todo("Write this section")}} + + +Command line options (argv and getopt stuff) + +User input + +Sanitisation + +More? diff --git a/mkdocs.yml b/mkdocs.yml index 96aac63..934643f 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -20,9 +20,11 @@ nav: - 'Introduction to functions': 'functions/intro-to-functions.md' - 'User created functions': 'functions/user-functions/README.md' - 'Built-in functions': 'functions/built-in-functions/README.md' + - 'Interacting with the User': 'interaction/' - 'Testing': 'testing/' - 'Documentation': 'documentation/' - - 'Representation of Data': './data/' + - 'Representation of Data': 'data/' + - 'Reading and Writing Files': 'files/' - 'Algorithms': 'algorithms/' - 'Classes and Objects': 'oo/' - 'Interacting with the Network': 'network/' From 408f1aaee5a9090734e0319108658c83a657cd85 Mon Sep 17 00:00:00 2001 From: digehode Date: Thu, 30 Jul 2020 11:44:26 +0100 Subject: [PATCH 4/4] Added user interaction placeholder --- docs/interaction/README.md | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/docs/interaction/README.md b/docs/interaction/README.md index 584946f..7ed28da 100644 --- a/docs/interaction/README.md +++ b/docs/interaction/README.md @@ -3,10 +3,16 @@ {{todo("Write this section")}} -Command line options (argv and getopt stuff) -User input +## Command line options -Sanitisation +argv -More? +getopt + +## User input + + +## Sanitisation + +## More?