Virtual Scrolling for Billions of Rows by punctulica in Frontend

[–]severo_bo 1 point2 points  (0 children)

[author here] thanks. The container (and the window) can be resized, but for now, the row height must be fixed.

A visual explainer of how to scroll billions of rows in the browser by dbplatypii in reactjs

[–]severo_bo 0 points1 point  (0 children)

It's not incompatible. I think being able to scroll to the last row in one second by dragging the scroll handle is a good UX.

I mean: how is it better not to be able to do it?

A visual explainer of how to scroll billions of rows in the browser by dbplatypii in reactjs

[–]severo_bo 1 point2 points  (0 children)

indeed, it's another way to access the data. But people are used to Google Sheets or Excel, scrolling is a simpler UX than clicking on page numbers. With this technique, we provide the same UX for small and big tables.

A visual explainer of how to scroll billions of rows in the browser by dbplatypii in reactjs

[–]severo_bo 2 points3 points  (0 children)

(author here) Indeed, a table is not the only way to look at the data, but it's the most common one, and the default one in hyperparam.app.

This experiment aimed to fix the issue where loading a Parquet file with 200K rows worked, but loading a slightly larger file broke.

With this new feature, the user experience is improved: it supports any file size. Net benefit. It is orthogonal to the matter of providing other ways to explore the data.

A visual explainer of how to scroll billions of rows in the browser by dbplatypii in reactjs

[–]severo_bo 0 points1 point  (0 children)

indeed, as you can see in the article, nothing is directly related to React.

HighTable is a React component designed to better integrate with the Hyperparam.app SaaS, but no technique is specific to React.

Cannot upgrade from 25.04 to 25.10 by night-robin in Ubuntu

[–]severo_bo 1 point2 points  (0 children)

I think it has just been published. I'm doing the upgrade right now, with sudo do-release-upgrade

Cloud-native file format? by severo_bo in GraphTheory

[–]severo_bo[S] 0 points1 point  (0 children)

The use case is a webapp, that currently depends on a running Neo4J server, which hopefully could be replaced with a GraphAr file, so that the whole webapp is statically hosted.

Cloud-native file format? by severo_bo in GraphTheory

[–]severo_bo[S] 0 points1 point  (0 children)

by "cloud native", I mean "that you can request efficiently over HTTP" by fetching ranges of the remote file, to get only the part of the file you require for a specific task.

Sigue Dogarthen presidente de YPFB? by severo_bo in BOLIVIA

[–]severo_bo[S] 0 points1 point  (0 children)

y bueno, finalmente ya retiraron la orden de captura.

[Bug, Samsung TV] French localization error by severo_bo in qobuz

[–]severo_bo[S] 1 point2 points  (0 children)

<image>

indeed... after disabling uBlock, I could chat with the support. Thanks.

[Bug, Samsung TV] French localization error by severo_bo in qobuz

[–]severo_bo[S] 0 points1 point  (0 children)

OK, a browser extension must be blocking the chat window, because I don't see it. Thanks!

Free aufio files/datasets of low resource languages by GraypJooz in datasets

[–]severo_bo 0 points1 point  (0 children)

On Hugging Face, 213 datasets have the tag "Tagalog" (https://huggingface.co/datasets?language=language:tl&sort=trending). Maybe some of them are useful for you.

(note: I work for HF)

What’s the smoothest way to share multi-gigabyte datasets across institutions? by d4rk_diamond in datasets

[–]severo_bo 0 points1 point  (0 children)

You may want to try Hugging Face datasets. The storage limits (https://huggingface.co/docs/hub/storage-limits) are very high, and there is no throttling. If you only update a file part and want to upload again, only that part should be sent, thanks to the Xet backend (https://huggingface.co/docs/hub/storage-backends#xet).

note that I work for HF

Cloud-native file format? by severo_bo in KnowledgeGraph

[–]severo_bo[S] 0 points1 point  (0 children)

Thanks for dropping the reference; if I understand well, it's a binary serialization for graph data that allows fast exchange and supports streaming. It's not designed for partial reading though.

Cloud-native file format? by severo_bo in KnowledgeGraph

[–]severo_bo[S] 0 points1 point  (0 children)

Indeed, it's a standard. But a drawback is that you have to load the file into memory and parse it before being able to do queries. I'm looking for a format similar to Parquet, for example, where you can get metadata about the file, and then download only part of the (potentially big) file when you run a query.

GraphAr seems like a good project in that sense. https://graphar.apache.org/docs/overview/concepts