落ちる Down The Stairs and Ravioli On Me
Vocabulary
落ちる1 came up in Anki today and then showed up as 落とす2 in Komi-san.
Tooling
- I learned that 10ten has an IOS version3 which means you can do interactive lookups on the go. It would probably be miserable on an iPhone but it works fine on an iPad. Of course, you could have already used the built-in dictionary lookups, but those are a lot slower and have less information than something like 10ten or Yomitan.4
- Anki supports hint fields, which lets you hide things by default and then reveal on click.5
- I set up ASBPlayer6 with Netflix today and found it really annoying how the Netflix control and pause UI kept showing up when reviewing sentences. I created the following userstyle (applied through Arc Browser's7 Boost feature) to hide them:
.watch-video--back-container,
.watch-video--flag-container {
display: none !important;
}
.watch-video--bottom-controls-container:hover {
cursor: auto !important;
}
.watch-video--bottom-controls-container:not(:hover) {
opacity: 0 !important;
}
.watch-video--evidence-overlay-container {
display: none !important;
}