A filter for creating a list of specific items to quiz on.
This is a third-party script/app and is not created by the WaniKani team. By using this, you understand that it can stop working at any time or be discontinued indefinitely.
NOTE: When setting up a list of items to quiz on, it is important to understand how these filters work, because they have a slightly non-intuitive behavior:
Suppose you want to quiz on a set of vocabulary. When you enable the [Vocabulary List] and specify your vocab items, it will remove all vocabulary except the ones you specified. (Duh, right?). But… it DOES NOT remove any kanji or radicals from the quiz, so you will still have all kanji and radicals in your quiz unless you also check “Vocabulary” in the [Item Type] filter.
Essentially, the filters do this:
Radical List - If the item is a radical and it’s not in the specified list of radicals, remove it.
Kanji List - If the item is a kanji and it’s not in the specified list of kanji, remove it.
Vocabulary List - If the item is vocabulary and it’s not in the specified list of vocabulary, remove it.
So, suppose you want to quiz yourself on:
Vocab: 大きい and 小さい
Kanji: 大 and 小
Radicals: -none-
Then you would:
Enable the [Vocabulary List] filter and add the two vocab words.
Enable the [Kanji List] filter and add the two kanji.
Enable the [Item Type] filter and check both Kanji and Vocabulary (and leave Radicals unchecked).
The new filter shows in the Item Inspector settings and I can configure it. Item Inspector uses this filter but it seems that there is a bug. Not all items in the list show up in the table. I tried the same configuration with Self-Study Quiz and I have the same bug there too. So it seems to be a problem with the filter itself.
Only the radicals ground and gambler and the kanji 一 are shown in the table or used in a quiz. The other two kanji and the vocabulary items don’t show up.
For testing purposes I find that Item Inspector is more convenient than Self-Study Quiz because it displays all items at once on the dashboard. You can see at a glance if something is missing instead of having to run through a quiz.
Hi,
I have just started using the Self Study Quiz app and it all works fine except for the audio. I have toggled the speaker icon to the different colours and nothing. I am using Safari on a Mac. Any ideas. Thanks.
First, note that you only get audio on Vocabulary.
Second… just to be 100% sure everything else about your audio is set up correctly, try playing some audio from an item page (such as [here]) by clicking on the speaker icon:
Third, open the Javascript console (you’ll have to google how to do that on Mac since I can never remember the process) and see if any errors related to audio files are reported.
I have looked at the code and found the bug reported in the post I am replying to. The regex handling the white spaces doesn’t do its job. White spaces are breaking the script. If you replace the split_list function with this one it will be OK.
function split_list(str) {return str.trim().replace(/\s*,\s*/g, ',').split(',').filter(function(name) {return (name.length > 0);});}
hey there sorry if I missed the answer to this but couldn’t find any filters for this. I want to quiz my entire item list EXCEPT certain items. Is it possible to use this or any other filter in a subtractive way? For example, I would like to put in the filter “大きい”, and then no longer be quizzed on that item.
My end goal here is to remove the items that I personally have already etched into my brain
Just wanted to check if this script is no longer working as expected? For example, I am trying to create a filter by setting Vocabulary List to “場所,近所,欠ける”. But instead of returning just 3 items, it comes back with thousands.