Walmart and Zenjob notes.

This commit is contained in:
Norm Rasmussen
2023-09-06 17:15:21 -04:00
parent 18271d15a4
commit 532268295d
7 changed files with 68 additions and 15 deletions

1
.python-version Normal file
View File

@ -0,0 +1 @@
np_scripts

View File

@ -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.

View File

View File

@ -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.

View File

@ -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.

View File

@ -0,0 +1,11 @@
# Date
## Goal -
## Attendees -
### Notes
*
*
*

View File

@ -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__":