From c01d0d3596f1d430cca61009ad2ba7876cb3931e Mon Sep 17 00:00:00 2001 From: Drew Schaffner Date: Fri, 23 Jan 2026 19:23:05 -0600 Subject: [PATCH 1/3] update --- project.log | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/project.log b/project.log index afcc1b9..9df1c0e 100644 --- a/project.log +++ b/project.log @@ -78,3 +78,43 @@ 2026-01-19 17:44:31 | INFO | P02 | WROTE file: case_03.txt 2026-01-19 17:44:31 | INFO | P02 | Waiting 1 seconds... 2026-01-19 17:44:32 | INFO | P02 | END main() +2026-01-23 19:18:35 | INFO | P02 | === RUN START === +2026-01-23 19:18:35 | INFO | P02 | project=Automation: Creating Files with Repetition Patterns +2026-01-23 19:18:35 | INFO | P02 | repo_dir=datafun-automation +2026-01-23 19:18:35 | INFO | P02 | python=3.14.2 +2026-01-23 19:18:35 | INFO | P02 | os=Darwin 25.2.0 +2026-01-23 19:18:35 | INFO | P02 | shell=zsh +2026-01-23 19:18:35 | INFO | P02 | cwd=. +2026-01-23 19:18:35 | INFO | P02 | github_actions=False +2026-01-23 19:18:35 | INFO | P02 | START main() +2026-01-23 19:18:35 | INFO | P02 | START FUNCTION 1: create_files_from_numeric_range() +2026-01-23 19:18:35 | INFO | P02 | Starting quarter: 1 +2026-01-23 19:18:35 | INFO | P02 | Ending quarter: 4 +2026-01-23 19:18:35 | INFO | P02 | WROTE file: case_quarter_1.txt +2026-01-23 19:18:35 | INFO | P02 | WROTE file: case_quarter_2.txt +2026-01-23 19:18:35 | INFO | P02 | WROTE file: case_quarter_3.txt +2026-01-23 19:18:35 | INFO | P02 | WROTE file: case_quarter_4.txt +2026-01-23 19:18:35 | INFO | P02 | START FUNCTION 2: create_files_from_list() +2026-01-23 19:18:35 | INFO | P02 | Pet list =['dog', 'cat', 'fish'] +2026-01-23 19:18:35 | INFO | P02 | WROTE file: case_dog.txt +2026-01-23 19:18:35 | INFO | P02 | WROTE file: case_cat.txt +2026-01-23 19:18:35 | INFO | P02 | WROTE file: case_fish.txt +2026-01-23 19:18:35 | INFO | P02 | START FUNCTION 3: create_files_using_list_comprehension() +2026-01-23 19:18:35 | INFO | P02 | WHY: Use list comprehension to TRANSFORM a list into a new list. +2026-01-23 19:18:35 | INFO | P02 | WHY: They are super compact list transformations. +2026-01-23 19:18:35 | INFO | P02 | Read it as FOR each IN . +2026-01-23 19:18:35 | INFO | P02 | Pet list =['dog', 'cat', 'fish'] +2026-01-23 19:18:35 | INFO | P02 | WROTE file: case_favorite_dog.txt +2026-01-23 19:18:35 | INFO | P02 | WROTE file: case_favorite_cat.txt +2026-01-23 19:18:35 | INFO | P02 | WROTE file: case_favorite_fish.txt +2026-01-23 19:18:35 | INFO | P02 | START FUNCTION 4: create_files_periodically() +2026-01-23 19:18:35 | INFO | P02 | WHY: Use while loop for REPETITIVE tasks with a WAIT or DELAY. +2026-01-23 19:18:35 | INFO | P02 | Waiting seconds between files: 1 +2026-01-23 19:18:35 | INFO | P02 | Number of files to create: 3 +2026-01-23 19:18:35 | INFO | P02 | WROTE file: case_01.txt +2026-01-23 19:18:35 | INFO | P02 | Waiting 1 seconds... +2026-01-23 19:18:36 | INFO | P02 | WROTE file: case_02.txt +2026-01-23 19:18:36 | INFO | P02 | Waiting 1 seconds... +2026-01-23 19:18:37 | INFO | P02 | WROTE file: case_03.txt +2026-01-23 19:18:37 | INFO | P02 | Waiting 1 seconds... +2026-01-23 19:18:38 | INFO | P02 | END main() From 8addb82f68c4dbdc8bd924ba0e303afe00e19d7d Mon Sep 17 00:00:00 2001 From: Drew Schaffner Date: Fri, 23 Jan 2026 19:27:18 -0600 Subject: [PATCH 2/3] update --- mkdocs.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mkdocs.yaml b/mkdocs.yaml index a6894f8..267a625 100644 --- a/mkdocs.yaml +++ b/mkdocs.yaml @@ -10,9 +10,9 @@ site_name: "Project Documentation" #TODO: Change to your GitHub Pages URL. -site_url: https://denisecase.github.io/datafun-02-automation/ +site_url: https://dsmorgancodes.github.io/datafun-automation/ #TODO: Change to your GitHub repository URL. -repo_url: https://github.com/denisecase/datafun-02-automation +repo_url: https://github.com/dsmorgancodes/datafun-automation site_description: Project documentation. docs_dir: docs site_dir: site @@ -20,7 +20,7 @@ extra: social: - icon: fontawesome/brands/github #TODO: Change to your GitHub repository URL. - link: https://github.com/denisecase/datafun-02-automation + link: https://github.com/dsmorgancodes/datafun-automation # WHY: Material theme is industry standard, well-documented theme: From 2954070561b19613ecc51087a6ec7efa5ac1ca12 Mon Sep 17 00:00:00 2001 From: Drew Schaffner Date: Fri, 23 Jan 2026 19:28:09 -0600 Subject: [PATCH 3/3] update --- mkdocs.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mkdocs.yaml b/mkdocs.yaml index 267a625..797e20a 100644 --- a/mkdocs.yaml +++ b/mkdocs.yaml @@ -9,9 +9,9 @@ # WHY: This data file provides the site structure and settings site_name: "Project Documentation" -#TODO: Change to your GitHub Pages URL. +#DONE: Change to your GitHub Pages URL. site_url: https://dsmorgancodes.github.io/datafun-automation/ -#TODO: Change to your GitHub repository URL. +#DONE: Change to your GitHub repository URL. repo_url: https://github.com/dsmorgancodes/datafun-automation site_description: Project documentation. docs_dir: docs @@ -19,7 +19,7 @@ site_dir: site extra: social: - icon: fontawesome/brands/github - #TODO: Change to your GitHub repository URL. + #DONE: Change to your GitHub repository URL. link: https://github.com/dsmorgancodes/datafun-automation # WHY: Material theme is industry standard, well-documented