Glassdoor notes. Some template changes.

This commit is contained in:
Norm Rasmussen
2023-06-01 09:01:08 -04:00
parent 0cd25f999f
commit 8538259fa2
21 changed files with 122 additions and 6 deletions

View File

@ -59,4 +59,18 @@ They want to embed Northpass into Wix.
Mark: Glassdoor is looking at this way differently than Northpass. The epiphany is that Northpass does not have all the same data as Glassdoor. Mark was expecting that we had to map GD segmentation to Northpass 1:1. But we don't have to do that and it isn't wise.
P
## 05/31/2023
### Partner/Agency Education
Currently using Wix. Leverages points to make a game. They redeem the points within the Wix store.
They are currently logging in and don't want them to make a new login.
Want to leverage Northpass within Wix.
How about iFraming our courses into Wix?
Are they trying to get rid of Wix? No!
Can Wix send learner information into the URL? She thinks yes.
Wants to keep their own point system. Not trying to embed ALL of Northpass into Wix.
How are Wix Points stored? They are called "Loyalty Program points"

View File

@ -449,7 +449,6 @@ Knowledge Base.
DONE: Reach out to J about deep linking between resources.
DONE: Ask Cam to mock up the resource bundle experiences - aka Learning Paths.
## 04/26/2023
### Design Changes?
@ -458,18 +457,15 @@ Pull in Aditi after making a list for her. The items for Aditi are:
* The back arrow when the course has no image. Should text change? Arrow into X?
* Duplicate titles surround this experience too. Should the title below be `display: none;`?
*
Update: Travis and MJ to meet with Aditi internally regarding this issues.
## 04/28/2023
### Metrics Requests
* Help and Question clicks
* Number of times driver clicks into resource after entering Resrouce Center
* Number of times driver clicks into resource after entering Resource Center
## 05/19/2023
@ -479,3 +475,22 @@ Confusing because bundles and features are similar. Combine LPs & Courses into s
Aditi asked about tags on the RC. New, Completed, Viewed, etc.
The new tag shows up if the course is published _after_ their enrollment date. If someone's enrollment date is _after_
the last course published date, new won't show up.
## 05/31/2023
### Design Sync with No Agenda
Franklin & MJ have discussion points about videos.
On user end, images and videos are not consistently sized. Some are full screen, some are small, etc.
How can we resize so they are standard sizes?
Resizing could make the images blurry or change other elements.
Courses affected: App Issues
_Franklin currently working on Alcohol gifs. This is his first time adding gifs to the RC._
Another thing they noticed was the video player was a bit wonky. Course: tips for claiming your branch wallet.
They are seeing a double overlay of play buttons and +/- 10. Franklin is on iPhone 14.
Charlie couldn't replicate. Franklin didn't notice it happening on all videos.
TODO: Ask Cam for an update on all the cover images and gifs in a single zip file. Whatever he has named the file is
okay.

Binary file not shown.

After

Width:  |  Height:  |  Size: 144 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 127 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

87
Scripts/harri_csv.js Normal file
View File

@ -0,0 +1,87 @@
const fs = require("fs");
const { parse } = require("csv-parse");
const axios = require('axios');
var array = [];
const apiKey = 'RfmxChNLLodO6M0Z88BwG9Xyu'
function wait(ms) {
return new Promise(r => setTimeout(r, ms));
}
function getUserProps(xApiKey, person) {
axios({
method: 'get',
url: 'https://api.northpass.com/v2/properties/people/' + person,
headers: {
'accept': 'application/json',
'x-api-key': xApiKey,
'content-type': 'application/json'
}
})
.then(res => {
info = '"' + res.data.data.attributes.properties.account_name + '"' + ';' + '"' + res.data.data.attributes.properties.company + '"' + '\n'
fs.appendFile('harriUserProps.csv', info, function(err) {
if (err) throw err;
console.log('Saved!');
return 'saved'
});
})
.catch(err => {
console.log(err);
});
};
function fetchPeople(xApiKey, users, num) {
let index = num;
axios({
method: 'get',
url: 'https://api.northpass.com/v2/people?filter[' + users[index][0] + ']=' + encodeURIComponent(users[index][1]),
headers: {
'accept': 'application/json',
'x-api-key': xApiKey,
}
})
.then(res => {
if (index < users.length - 1) {
console.log(index)
console.log(users[index][0], users[index][1], res.data.data[0].id)
getUserProps(xApiKey, res.data.data[0].id)
index++;
wait(300)
fetchPeople(xApiKey, users, index)
wait(300)
} else {
getUserProps(xApiKey, res.data.data[0].id)
console.log("complete")
}
})
.catch(err => {
console.log(err);
});
};
function csvReader(someArray, filePath) {
fs.createReadStream(filePath)
.pipe(parse({
delimiter: ',',
columns: true
}))
.on("data", function(row) {
if (row['Email'] == '') {
someArray.push(['sso_uid', row['SSO UID']])
} else {
someArray.push(['email', row['Email']])
}
})
.on("error", function(error) {
console.log(error.message);
})
.on("end", async function() {
console.log("finished");
fetchPeople(apiKey, someArray, 0)
})
}
csvReader(array, "/Users/normrasmussen/Downloads/Harri Activation Report - 2023.05.31.csv")