- Edited
It appears that some of the courses I was studying have disappeared, so perhaps the points I earned there were subtracted
P.S. I like this kind of playfulness, like a game.
It appears that some of the courses I was studying have disappeared, so perhaps the points I earned there were subtracted
P.S. I like this kind of playfulness, like a game.
neoncube I think maybe three of them disappeared. I remember the following two, both about letters.
FYI: Removing diacritical marks in JavaScript is easy.
function removeDiacriticalMarks(s) {
return Array.from(s.normalize("NFC")).map(ch => ch.normalize("NFD")[0]).join("");
}
7shi Ugh, I think something went horribly wrong :/ I'm rerunning my script, and it's happily reuploading hundreds of English speaker courses for Czech, Maori, Swahili, "Other language", etc., which must mean that those courses were somehow deleted, as you mentioned.
Yeah, sorry, I haven't gotten to diacritic handling yet My hope is to provide an option to let them be required or not.
I just checked my backups, and the courses were there two days ago and then gone yesterday (as you probably knew! XD)
I've still no idea what would have deleted those courses, though :/
Ooh, that reminds me: I need to set the minimum review time to 15 or 30 minutes, so that words aren't shown as being ready for review as soon as they're learned.
I finally paid off my debt!
BTW, I'd love to eventually make it so that there are different themes for the village, depending on what language a person is learning
I've reworked the site so that when courses, words, etc. are deleted, they're marked as invisible, rather than truly being deleted. Hopefully this should make it easier to undo mistaken deletes
(In programmer terms, I'm "soft deleting" them )