Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions mkdocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,18 @@
# WHY: This data file provides the site structure and settings

site_name: "Project Documentation"
#TODO: Change to your GitHub Pages URL.
site_url: https://denisecase.github.io/datafun-02-automation/
#TODO: Change to your GitHub repository URL.
repo_url: https://github.com/denisecase/datafun-02-automation
#DONE: Change to your GitHub Pages URL.
site_url: https://dsmorgancodes.github.io/datafun-automation/
#DONE: Change to your GitHub repository URL.
repo_url: https://github.com/dsmorgancodes/datafun-automation
site_description: Project documentation.
docs_dir: docs
site_dir: site
extra:
social:
- icon: fontawesome/brands/github
#TODO: Change to your GitHub repository URL.
link: https://github.com/denisecase/datafun-02-automation
#DONE: Change to your GitHub repository URL.
link: https://github.com/dsmorgancodes/datafun-automation

# WHY: Material theme is industry standard, well-documented
theme:
Expand Down
40 changes: 40 additions & 0 deletions project.log
Original file line number Diff line number Diff line change
Expand Up @@ -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 <do this logic> FOR each <item> IN <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_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()
Loading