Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
youngbum
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
6 ms
·
1.
▲
by
youngbum
4mo ago
Huge fan of Hocuspocus. Congrats on the new release and grateful for your efforts. We have been using Hocuspocus to sync multiple users in our form builder editor ( https://walla.my ), and they were very reliable and sturdy. We no
2.
▲
by
youngbum
5mo ago
touché
3.
▲
Show HN: Bingsan – Apache Iceberg REST Catalog in Go (24k rps, multi-node)
(teampaprika.github.io)
1 points
by
youngbum
8mo ago
|
0 comments
4.
▲
by
youngbum
10mo ago
Big fan of Cloudflare Tunnel here, too. We use our Windows workstations as WSL SSH tunnels, protected with email verification (only for our domain), and it’s been working perfectly. I’m curious, though, about how we can expose Docker servic
5.
▲
by
youngbum
11mo ago
pi-thon
6.
▲
by
youngbum
1y ago
Yesterday, I migrated my web worker codes from Comlink to CapnWeb. I had extensive experience with Cloudflare Worker bindings, and as mentioned in the original post, they were quite similar. Everything appears to be functioning smoothly, bu
7.
▲
by
youngbum
2y ago
Duckdb is an excellent choice for this task, and it’s incredibly fast! We’ve also added vector search to our product, which is really useful. OpenAI’s official examples of embedding search use cosine similarity. But here’s the cool part: si
8.
▲
by
youngbum
2y ago
Exactly. We have also tried arrow js or parquet wasm, and they were much lighter than duckdb wasm worker. DuckDb however was useful in our case, considering our nature as form builder service, we had to provide features for statistics. It w
9.
▲
by
youngbum
2y ago
Long story short, you could either 1) query specific columns using s3-parquet-duckdb stack 2) load parquet file through network, and put it inside local duckdb-wasm instance so that you can do queries from client side
10.
▲
by
youngbum
2y ago
Great point. The advantages of loading “parquet” in “client side” are that 1) you only have to load data once from server and 2) the parquet files are surprisingly well zipped. 1) If you load once from server, no more small network requests
11.
▲
by
youngbum
2y ago
My comment was a bit ambiguous. So, for sheets where we have to load all data, we would load all columns at once as a parquet file. (I will leave comment for the advantage of this approach in the next comment) On the other hand, let’s say w
12.
▲
by
youngbum
2y ago
This is the exact reason we applied duckdb and duckdb-wasm into our service. Our team is currently building a form builder SaaS. Most forms have responses under 1,000, but some of them would have more than 50,000 responses. So, when user tr
13.
▲
by
youngbum
2y ago
Wow this is indeed cool. Figma has been tightening up our usage. What other options or alternatives would there be?
14.
▲
by
youngbum
2y ago
Great work. What are the best options for data table with large amount of data? Sometimes storing a mass data into a state could be inefficient. So our team is using duckdb-wasm and virtuoso to render current rows. I tried Perspective tho.
15.
▲
by
youngbum
2y ago
Cool