From 532268295d66969cdac6bf33b8a85c77ca8e0130 Mon Sep 17 00:00:00 2001 From: Norm Rasmussen Date: Wed, 6 Sep 2023 17:15:21 -0400 Subject: [PATCH] Walmart and Zenjob notes. --- .python-version | 1 + .../Blacklane/09.06.23_OpenSesame.md | 14 +++++++ CustomerNotes/Blacklane/testcourse.md | 0 CustomerNotes/Walmart/Walmart.md | 40 ++++++++++++------- CustomerNotes/Zenjob/09.06.23.md | 9 +++++ CustomerNotes/index.md | 11 +++++ Scripts/Backup_Notes_Scripts/reorg_notes.py | 8 +++- 7 files changed, 68 insertions(+), 15 deletions(-) create mode 100644 .python-version create mode 100644 CustomerNotes/Blacklane/09.06.23_OpenSesame.md create mode 100644 CustomerNotes/Blacklane/testcourse.md create mode 100644 CustomerNotes/Zenjob/09.06.23.md diff --git a/.python-version b/.python-version new file mode 100644 index 00000000..a81c0625 --- /dev/null +++ b/.python-version @@ -0,0 +1 @@ +np_scripts diff --git a/CustomerNotes/Blacklane/09.06.23_OpenSesame.md b/CustomerNotes/Blacklane/09.06.23_OpenSesame.md new file mode 100644 index 00000000..d2851ff9 --- /dev/null +++ b/CustomerNotes/Blacklane/09.06.23_OpenSesame.md @@ -0,0 +1,14 @@ +# + +Notes: + *They have a contract with OpenSesame + * Wants to improve search functionality + *School Name Change? + * They want to create categories based on departments + *Something like sales with all the sales training in that category + * Required training as well + *Leadership training categories + * Using Omnisend as an example + *They will have mandatory training & open-access training/catalog + * Employees should have a mix of both - required and self-enrolled. + * For design, we either need a SOW or they need to do the work themselves. diff --git a/CustomerNotes/Blacklane/testcourse.md b/CustomerNotes/Blacklane/testcourse.md new file mode 100644 index 00000000..e69de29b diff --git a/CustomerNotes/Walmart/Walmart.md b/CustomerNotes/Walmart/Walmart.md index aed18957..dae95931 100644 --- a/CustomerNotes/Walmart/Walmart.md +++ b/CustomerNotes/Walmart/Walmart.md @@ -637,22 +637,34 @@ TODO: Test if a course can be accessible outside of Northpass without it being a ### Aditi Feedback on Learning Paths/Resource Bundles #### Notes and Action Items + * Illustrations: - * They are not up to date, so we will need the illustrations and list for the bundles. - * Make sure the illustration style is the same across all bundles. - * Height and Width are accurate. - * Look at that card style for everything. It is accurate. - * Time Count, Title, Description, Illustration - * No change to Illustration for non-bundle cards. + * They are not up to date, so we will need the illustrations and list for the bundles. + * Make sure the illustration style is the same across all bundles. + * Height and Width are accurate. + * Look at that card style for everything. It is accurate. + * Time Count, Title, Description, Illustration + * No change to Illustration for non-bundle cards. * Experience/Overview Page: - * If someone has completed a course outside of the resource bundle, it should be marked as complete. - * Can we recalculate what courses are completed _before_ they go into the overview page? + * If someone has completed a course outside of the resource bundle, it should be marked as complete. + * Can we recalculate what courses are completed _before_ they go into the overview page? * Position of the Tags: - * Reuse the new tag on the actual course/resource within the overview page. - * Should match the category new tag. - * Norm/Kaitlyn to discuss the logic of the new tag for within a resource bundle overview page. + * Reuse the new tag on the actual course/resource within the overview page. + * Should match the category new tag. + * Norm/Kaitlyn to discuss the logic of the new tag for within a resource bundle overview page. * Copy & Font Size: - * For all description copy, it should be 14px, Grey/Medium Contrast (Low).<-- Resource Bundles - * For all title copy, Gray/High Contracts <-- Resources Bundles + * For all description copy, it should be 14px, Grey/Medium Contrast (Low).<-- Resource Bundles + * For all title copy, Gray/High Contracts <-- Resources Bundles * Feature Section: - * Krystal and Travis to mull over the order of Featured cards, which should be resources, resource bundles, etc. + * Krystal and Travis to mull over the order of Featured cards, which should be resources, resource bundles, etc. + +## 09/06/2023 + +### Content Feedback + + * Now that Krystal is back with a "fresh set of eyes", she _loathes_ the text heavy nature of all the content. + * She wants to work towards a KISS model - lets just keep it easier to obtain + * Too much text. Needs videos + * Frank can include more gifs and images, but they really need more videos. + * Wants to improve the look and feel of the resource center. + * Norm to get examples from other clients. diff --git a/CustomerNotes/Zenjob/09.06.23.md b/CustomerNotes/Zenjob/09.06.23.md new file mode 100644 index 00000000..8b7fad65 --- /dev/null +++ b/CustomerNotes/Zenjob/09.06.23.md @@ -0,0 +1,9 @@ +# Attendees: Sophie, Nortm + +## Notes + + * KPIs exist, but she doesn't know all of them. + * Number of people who completed the training exceeded all their expectations. + * Sophie to get Norm the number of learners who completed vs what their + expectations were. + diff --git a/CustomerNotes/index.md b/CustomerNotes/index.md index e69de29b..c5bb527b 100644 --- a/CustomerNotes/index.md +++ b/CustomerNotes/index.md @@ -0,0 +1,11 @@ +# Date + +## Goal - + +## Attendees - + +### Notes + + * + * + * diff --git a/Scripts/Backup_Notes_Scripts/reorg_notes.py b/Scripts/Backup_Notes_Scripts/reorg_notes.py index 012bb88b..050ab81b 100644 --- a/Scripts/Backup_Notes_Scripts/reorg_notes.py +++ b/Scripts/Backup_Notes_Scripts/reorg_notes.py @@ -1,20 +1,26 @@ from pathlib import Path +import pandas as pd +import currentdir = "/Users/normrasmussen/Documents/Work/CustomerNotes/" path_dir = Path("/Users/normrasmussen/Documents/Work/CustomerNotes/") +pd.DataFrame() +x = pd.DataFrame() + def path_files(path_dir): listfiles = list(path_dir.glob("**/*.md")) print(f"Successfully made the '{path_dir}' directory.") for file in listfiles: strfile = str(file) - company = strfile.split("/")[6][:-3] + company = strfile.split["/"](6)[:-3] new_dir = path_dir / company new_dir.mkdir() file.rename( f"/Users/normrasmussen/Documents/Work/CustomerNotes/{company}/{company}.md" ) print(company) + company = strfile.split() if __name__ == "__main__":