Kamil Szczerba

Results 7 comments of Kamil Szczerba

Thank you for the thorough answer! Supabase [has announced offline support](https://github.com/supabase/supabase/discussions/357) without progress for two years. What are Thin's plans for offline support?

I tried Thin, and did not find a way to build joins in queries (Supabase allows it, as it is a wrapper over PostgREST). How to do it?

In my case, it was actually quite simple. This is how I use it on my [blog](https://withcomment.com/kamil/technology/game-development/ai-generated-materials): ```tsx import { EffectComposer, EffectComposerContext, SMAA } from "@react-three/postprocessing" // In your R3F...

The official WASM build makes it easier to implement an extension. In my case, I settled on adding [this one](https://github.com/Ronsor/VecDex). I copied the code of the extension into [the file...

[Some](https://horasearch.com/) have successfully compiled such algorithms to [WASM](https://github.com/hora-search/hora-wasm).

I did not update this issue, but for those still looking for a solution, I successfully used a combination of [hnswlib](https://www.npmjs.com/package/hnswlib-wasm), which stores the embeddings in IndexedDB, and SQLite for...

Using `hnswlib-wasm` is straightforward, except for tuning the parameters. [This](https://github.com/nmslib/hnswlib/blob/master/ALGO_PARAMS.md) is the best explanation I have found. Today, I have discovered another web vector database with persistent storage: [Victor](https://github.com/not-pizza/victor/). It...