Starting to learn Neorg. Had to fix the Walmart screenshots node script. Some notes and TODO items.

This commit is contained in:
Norm Rasmussen
2023-08-10 16:26:17 -04:00
parent b9fe8d640b
commit d683da4ce8
9 changed files with 60 additions and 5 deletions

View File

@ -241,7 +241,7 @@ Concerns:
* Restructuring Groups & Analytics concerns her. She is open to archiving everything and "starting fresh" with an academy.
* She doesn't know yet where she is going to get this sources for making content.
* Where does "follow up" training come from? What are the subjects?
* She wants to be trained on making more modular, micro, smaller trainings
* [She](2023-08-10_she.md) wants to be trained on making more modular, micro, smaller trainings
## 06/15/2023

View File

@ -12,3 +12,8 @@ Questions for Wayne:
* Prereq property use case? Label or should it block someone?
* "(undefined)" property, can we update it to "NO MATTR" or "BLANK"
## 08/10/2023
TODO: Can we get quiz raw answer in Webhook?
TODO: We need quiz raw answer in Looker

View File

@ -0,0 +1 @@
This is a test

View File

@ -0,0 +1,10 @@
* Heading one
** Heading two
- (-) Task 1
- ( ) Task 2
- (-) Section Tasks
--- ( ) Section1 Tasks
--- (x) Section 2 Tasks
*** Another Meeting

View File

@ -0,0 +1,5 @@
# Customer Notes
---- Liste item
----- LIst 2

View File

34
Customer_Notes/index.norg Normal file
View File

@ -0,0 +1,34 @@
.toc Customer List
* Customers
** Skuid:
- {:Skuid/Data Discussion - 08.10.2023:}
- {:Skuid/Data2 - 08.11.2023:}
- {:Skuid/Data333:}
-- Data - 08/10/2023
- Data 2 - tomorrow
** Skuid
-- Data - 08/10/2023
- Big Ideas Learning
-- Weekly Sync - 08/10/2023
- ( ) Skuid
-- ( ) Level 2 Child
-- ( ) Level 2.1 Child
Big ideas:
Quiz feedback that is wider than correct/incorrect. An example 50% choose C, lets look at why.
Their customers rate them lower when they don't like the quiz questions. Are Big ideas answering the correct items?
Sophia's focus has been the data and info for Jason.
Overall goal: "Improve teacher onboarding experieince. Increase product usage and satisfaction."
* KPIS:
-- NPS for high usage districts
- Time on tasks for high touch tasks.

View File

View File

@ -25,10 +25,10 @@ const getAllGroups = async (num) => {
}
})
.then(async (res) => {
if (res.data.links.next != null) {>
page++;
for (let i = 0; i < res.data.d
if (res.data.data[i].attribu
if (res.data.links.next != null) {
page++;
for (let i = 0; i < res.data.data.length; i++) {
if (res.data.data[i].attributes.status == "live") {
console.log(res.data.data[i].attributes.name)
groupIds.push(res.data.data[i].id)
}