Steffen Beyer

Results 15 comments of Steffen Beyer

/me is poking it with a stick

I'm in a similar situation and it seems to be really difficult to find help. Would be great to have a simple example like: build a single node package from...

> When I think about your case, as I understand it, you want a broad crawl that goes to multiple websites and extracts all the information from them. Probably there...

@fstp See https://github.com/elixir-crawly/gollum/pull/1.

One of the commits introduces a failing test, IIRC. The Google-port has a lot of stuff tagged as skip to pass.

Maybe you can start your own branch and cherry-pick the commits? Edit: Added you to my fork, @fstp, not sure that is of any help. Note that my fork is...

I invite you to have a look at the following: * [SQLite manual: External content](https://www.sqlite.org/fts5.html#external_content_and_contentless_tables) * [Blog: Quick full-text search using SQLite](https://abdus.dev/posts/quick-full-text-search-using-sqlite/) A good way might be to follow the...

Same here, iamrohit is right, only the directives inside location blocks are followed. Throws signal 11 when used in more than one block, as mentioned in #4. The module is...

P.P.S.: Easy to apply without touching the source: ``` % cd $PLUGIN_DIR/jlcpcb % sqlite3 parts.db SQLite version 3.39.5 2022-10-14 20:58:05 Enter ".help" for usage hints. sqlite> CREATE UNIQUE INDEX parts_lcsc_part_index...

Some inspiration: * You do a lot of string concatenation for query building, like ```python query += f' ORDER BY "{self.order_by}" COLLATE naturalsort {self.order_dir}' ``` That might be bearable in...