From 168a46936af8acbaf9be90630631d44e3c1941f2 Mon Sep 17 00:00:00 2001 From: Joe Potts Date: Thu, 26 Sep 2024 11:56:32 -0400 Subject: [PATCH 1/4] commit 3 client files --- client-a.md | 1 + client-b.md | 1 + client-c.md | 1 + 3 files changed, 3 insertions(+) create mode 100644 client-a.md create mode 100644 client-b.md create mode 100644 client-c.md diff --git a/client-a.md b/client-a.md new file mode 100644 index 0000000..f964d29 --- /dev/null +++ b/client-a.md @@ -0,0 +1 @@ +# client-a.md diff --git a/client-b.md b/client-b.md new file mode 100644 index 0000000..8261cc0 --- /dev/null +++ b/client-b.md @@ -0,0 +1 @@ +# client-b.md diff --git a/client-c.md b/client-c.md new file mode 100644 index 0000000..3055677 --- /dev/null +++ b/client-c.md @@ -0,0 +1 @@ +# client-c.md From 8a346b068023ce00a48e450a14992c6522e70bfa Mon Sep 17 00:00:00 2001 From: Joe Potts Date: Sat, 28 Sep 2024 14:05:36 -0400 Subject: [PATCH 2/4] updated client files --- client-a.md | 21 +++++++++++++++++++++ client-b.md | 24 ++++++++++++++++++++++++ client-c.md | 8 ++++++++ 3 files changed, 53 insertions(+) diff --git a/client-a.md b/client-a.md index f964d29..663ce28 100644 --- a/client-a.md +++ b/client-a.md @@ -1 +1,22 @@ # client-a.md + +## Guess the number + +- Variable random_num = randint(1,10) +- Program chooses the random number between 1 and 10 +- Store the random number in a variable named random_num +### for loop w/ range(3) += Enter "Enter guess number 1:" +- Guess number 1 into variable guess_1 +- Compare guess_1 = random_num + - If true, print "Congratulations, you guessed the number"s + - If false, Enter "Enter guess number 2:" +- Guess number 2 into variable guess_2 +- Compare guess_2 = random_num + - If true, print "Congratulations, you guessed the number"s + - If false, Enter "Enter guess number 3:" +- Guess number 3 into variable guess_2 +- Compare guess_3 = random_num + - If true, print "Congratulations, you guessed the number" + - If false, print "You are out of guesses" +- End loop \ No newline at end of file diff --git a/client-b.md b/client-b.md index 8261cc0..249f2af 100644 --- a/client-b.md +++ b/client-b.md @@ -1 +1,25 @@ # client-b.md + +## A simple warehouse store map app + +### Create a tile map of the of the warehouse store. +- Interface will use the aisles, shelves, and storage bins to tile map the store. +- Aisles, shelves, and storage bins will be oriented north/south , or east/west. +- ID locations of the major material categories, such as 2X4s, plywood, electrical, etc., and the entrance to the store. +- Add tile mapping location descriptors for each of the material IDs. +- Aisles will be labeled. + +### Create a graphical user interface to show the way to get from the main entrance to any materials location, and to go from any material location to another material location. +- Interface will show the tile map of the store w/ the selected material locations labeled. +- Interface will allow the customer to select a 'to' and 'from' material/main entrance location and then press a 'go' button. +- When the 'go' button is pressed a walking map will be generated showing the path to the selected material location using a dashed line going thru the needed aisleways. +- The main entrance location wil[ be defaulted in as the 'from' input. +- Dropdown lists will allow the selection of the locations. + +### Other features +- There will be a 'clear locations' button for the to/from inputs. +- Consider a 'reset' button to clear inputs and stop any background processes so the customer can truly start over. + +### Error(s) to be considered and corrected, +- Only one location input is selected. +- After a selected amount of time and the 'gp' button has not been pressed. \ No newline at end of file diff --git a/client-c.md b/client-c.md index 3055677..700feb6 100644 --- a/client-c.md +++ b/client-c.md @@ -1 +1,9 @@ # client-c.md + +## Loop to count from 2 to 50 by 2's + +- For loop w/ range(2, 50, 2) +- Initialize counter: count==2 +- When count==50 +- Print "Stop scanning, 50 packages have been sorted. +- Reset counter, count==2 \ No newline at end of file From df940a6578ddc59937de94369a40f94fd0a62b2c Mon Sep 17 00:00:00 2001 From: joepotts220 Date: Sat, 28 Sep 2024 15:28:00 -0400 Subject: [PATCH 3/4] Update client-b.md --- client-b.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/client-b.md b/client-b.md index 249f2af..dcae014 100644 --- a/client-b.md +++ b/client-b.md @@ -3,7 +3,7 @@ ## A simple warehouse store map app ### Create a tile map of the of the warehouse store. -- Interface will use the aisles, shelves, and storage bins to tile map the store. +- Interface will use the **aisles, shelves, and storage bins** to tile map the store. - Aisles, shelves, and storage bins will be oriented north/south , or east/west. - ID locations of the major material categories, such as 2X4s, plywood, electrical, etc., and the entrance to the store. - Add tile mapping location descriptors for each of the material IDs. @@ -11,7 +11,7 @@ ### Create a graphical user interface to show the way to get from the main entrance to any materials location, and to go from any material location to another material location. - Interface will show the tile map of the store w/ the selected material locations labeled. -- Interface will allow the customer to select a 'to' and 'from' material/main entrance location and then press a 'go' button. +- Interface will allow the customer to select a 'to' and 'from' material/main entrance locations and then press a 'go' button. - When the 'go' button is pressed a walking map will be generated showing the path to the selected material location using a dashed line going thru the needed aisleways. - The main entrance location wil[ be defaulted in as the 'from' input. - Dropdown lists will allow the selection of the locations. @@ -22,4 +22,4 @@ ### Error(s) to be considered and corrected, - Only one location input is selected. -- After a selected amount of time and the 'gp' button has not been pressed. \ No newline at end of file +- After a selected amount of time and the 'gp' button has not been pressed. From e2d1dcdb8c4830449af3ae9eb080f2fdf1568361 Mon Sep 17 00:00:00 2001 From: joepotts220 Date: Sat, 28 Sep 2024 15:35:42 -0400 Subject: [PATCH 4/4] Update client-a.md typo in markdown --- client-a.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client-a.md b/client-a.md index 663ce28..8e00748 100644 --- a/client-a.md +++ b/client-a.md @@ -6,7 +6,7 @@ - Program chooses the random number between 1 and 10 - Store the random number in a variable named random_num ### for loop w/ range(3) -= Enter "Enter guess number 1:" +- Enter "Enter guess number 1:" - Guess number 1 into variable guess_1 - Compare guess_1 = random_num - If true, print "Congratulations, you guessed the number"s @@ -19,4 +19,4 @@ - Compare guess_3 = random_num - If true, print "Congratulations, you guessed the number" - If false, print "You are out of guesses" -- End loop \ No newline at end of file +- End loop