Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 698 Bytes

README.md

File metadata and controls

15 lines (11 loc) · 698 Bytes

XKCD Search Engine

Searches locally downloaded and indexed XKCD comics for given search queries.

demo.mov

Todo:

  • 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)