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,6 +637,7 @@ TODO: Test if a course can be accessible outside of Northpass without it being a
### Aditi Feedback on Learning Paths/Resource Bundles ### Aditi Feedback on Learning Paths/Resource Bundles
#### Notes and Action Items #### Notes and Action Items
* Illustrations: * Illustrations:
* They are not up to date, so we will need the illustrations and list for the bundles. * 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. * Make sure the illustration style is the same across all bundles.
@ -656,3 +657,14 @@ TODO: Test if a course can be accessible outside of Northpass without it being a
* For all title copy, Gray/High Contracts <-- Resources Bundles * For all title copy, Gray/High Contracts <-- Resources Bundles
* Feature Section: * 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 from pathlib import Path
import pandas as pd
import
currentdir = "/Users/normrasmussen/Documents/Work/CustomerNotes/" currentdir = "/Users/normrasmussen/Documents/Work/CustomerNotes/"
path_dir = Path("/Users/normrasmussen/Documents/Work/CustomerNotes/") path_dir = Path("/Users/normrasmussen/Documents/Work/CustomerNotes/")
pd.DataFrame()
x = pd.DataFrame()
def path_files(path_dir): def path_files(path_dir):
listfiles = list(path_dir.glob("**/*.md")) listfiles = list(path_dir.glob("**/*.md"))
print(f"Successfully made the '{path_dir}' directory.") print(f"Successfully made the '{path_dir}' directory.")
for file in listfiles: for file in listfiles:
strfile = str(file) strfile = str(file)
company = strfile.split("/")[6][:-3] company = strfile.split["/"](6)[:-3]
new_dir = path_dir / company new_dir = path_dir / company
new_dir.mkdir() new_dir.mkdir()
file.rename( file.rename(
f"/Users/normrasmussen/Documents/Work/CustomerNotes/{company}/{company}.md" f"/Users/normrasmussen/Documents/Work/CustomerNotes/{company}/{company}.md"
) )
print(company) print(company)
company = strfile.split()
if __name__ == "__main__": if __name__ == "__main__":