You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
from our last meeting, we agreed that we should keep track a couple more statistics in our s3 file to create our own bobabuddies wrapped.
Currently, i believe the json file in s3 only keep tracks of number of pairs overall.
So, we now want to add onto this and keep track of each person's
number of times met with their buddies
longest streak of meeting their buddy
current streak of meeting their buddy
Just so we don't forget, the bobabuddies wrapped we'll create is being sent biweekly, so we want to make sure data is "reset" accordingly. This would probably be used when tracking the number of pairs met in each cycle as well as before each semester to start a clean state.
The text was updated successfully, but these errors were encountered:
/**
This json represents
pairsMet - the total number of pairs met during this cycle (a semester)
timesMet - number of times each user met with their buddies during the cycle
longestStreaks - the longest streak of each user meeting their buddy
currentStreaks - current streak of each user meeting their buddy
*/
{
"pairsMet": 4,
"timesMet":
{
"aloe": 2, // in practice, these should be user ids rather than display names (needs to be unique)
"KEKW Lead" : 1,
"on jia": 2
},
"longestStreaks": {
"aloe": 20,
"KEKW Lead" : 10,
"on jia": 15
},
"currentStreaks": {
"aloe": 3,
"KEKW Lead" : 1,
"on jia": 12
},
}
from our last meeting, we agreed that we should keep track a couple more statistics in our s3 file to create our own bobabuddies wrapped.
Currently, i believe the json file in s3 only keep tracks of number of pairs overall.
So, we now want to add onto this and keep track of each person's
Just so we don't forget, the bobabuddies wrapped we'll create is being sent biweekly, so we want to make sure data is "reset" accordingly. This would probably be used when tracking the number of pairs met in each cycle as well as before each semester to start a clean state.
The text was updated successfully, but these errors were encountered: