Searches locally downloaded and indexed XKCD comics for given search queries.
demo.mov
- Reimplement fuzzy searching using substring matches instead of word vectorization (not accurate on alt text)
- Use
tabled
for pretty table output - Clickable links using Tabled
- Lexographical sorting based on the secondary key of the title when ranks are the same
-
Implement tries and DFS for autocomplete(already tried, too slow) - Optimize HashMaps using non cryptographic hash methods
-
Add Levenschtein distance for similar results(not fast enough)