fix typos and a few boogs, link git

This commit is contained in:
hiina 2025-04-11 18:05:09 -06:00
parent c5e7bf307a
commit 54a3eab511
4 changed files with 22 additions and 2 deletions

View file

@ -11,6 +11,9 @@ is built offline and loaded as parquet files.
It is a bit limited, in that it only searches stems of common words, and no search operators (I think). It is a bit limited, in that it only searches stems of common words, and no search operators (I think).
But still, very fast for ~1.3 million posts. But still, very fast for ~1.3 million posts.
If you see errors, try a different browser, or turn off the "advanced tracking protection". Not sure why it
breaks this script particularly when the javascript is just as horrifying on the other pages, but oh well.
```js ```js
const schema_sql = ` const schema_sql = `
LOAD fts; LOAD fts;

View file

@ -18,7 +18,7 @@ I don't have thumbnails or images (yet), but I'm working on it. Until then,
enjoy the data. enjoy the data.
<div class="warning">All queries in your browser, which means you'll download a <div class="warning">All queries in your browser, which means you'll download a
fair amount (~100MB) of data. So probably don't browse this your phone.</div> fair amount (~100MB) of data. So probably don't browse this on your phone.</div>
## Pages ## Pages
@ -74,6 +74,13 @@ This site uses [Observable Framework](https://observablehq.com), which includes
a [DuckDB](https://duckdb.org) wasm build, which queries the archive as parquet a [DuckDB](https://duckdb.org) wasm build, which queries the archive as parquet
files. It's kind of horrifying yeah but also cool. files. It's kind of horrifying yeah but also cool.
https://git.vrg.party/hiina/vrg-archive has the source if you want to stare that the sql.
I don't have any scraper code uploaded yet, but full disclosure: it's all
(almost) one-shot python slop by gemini 2.5 pro, so you might as well ask "I want to
scrape a fuuka-based archiver for a single thread" and have it slop it out for
you yourself.
### Can you add X feature? ### Can you add X feature?
Maybe, post in the thread about it. If you don't want to wait, you can also just Maybe, post in the thread about it. If you don't want to wait, you can also just

View file

@ -73,6 +73,13 @@ WHERE
GROUP BY GROUP BY
themonth, themonth,
st.term -- Group by month AND by term st.term -- Group by month AND by term
ORDER BY
themonth,
st.term -- Sort by month AND by term
```
```js
const width = 600;
``` ```
```js ```js

View file

@ -7,7 +7,10 @@ sql:
# Thread Browser # Thread Browser
Browser posts in old threads in a somewhat faithful format. It takes a bit to load and this framework is bad about indicating loading progress, so wait around if you don't see anything. Browser posts in old threads in a somewhat faithful format. It takes a bit to
load and this framework is bad about indicating loading progress, so wait around
if you don't see anything. **Select a thread to display from the table, else
you'll see some (transient) errors**.
There are no thumbnails or full images (yet). There are no thumbnails or full images (yet).