Viewing profile — youngbum
youngbum
HN member- Joined
- Wed, Mar 29, 2023, 3:35 AM UTC
- HN karma
- 31
- Public activity
- 15 items
- HN profile
- View on Hacker News ↗
About youngbum
No profile information was provided.
Recent public activity
-
comment
Comment #48216483
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.m…
-
comment
Comment #47788732
touché
-
story
Show HN: Bingsan – Apache Iceberg REST Catalog in Go (24k rps, multi-node)
Hey HN, I built Bingsan as an open-source Apache Iceberg REST Catalog. Why? Existing options (Nessie, Polaris) are Java-based. I wanted something lightweight that runs alongside Po…
-
comment
Comment #45960259
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…
-
comment
Comment #45535057
pi-thon
-
comment
Comment #45354806
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 quit…
-
comment
Comment #41140484
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 embeddin…
-
comment
Comment #40521070
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 buil…
-
comment
Comment #40521038
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 tha…
-
comment
Comment #40521028
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) …
-
comment
Comment #40520993
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 …
-
comment
Comment #40520073
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 …
-
comment
Comment #40499725
Wow this is indeed cool. Figma has been tightening up our usage. What other options or alternatives would there be?
-
comment
Comment #40496321
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 an…
-
comment
Comment #39905552
Cool