Ivar Refsdal

Results 35 comments of Ivar Refsdal

What is 5k per hour? Is that 5k requests? If there are 90 000 repos and each request fetches ~100, that only needs 900 requests (and finishes in 50 minutes...

Incremental pull of updated repos is now available at: https://github.com/ivarref/dewey/blob/main/src/com/phronemophobic/dewey.clj You can evaluate `(def all-repos-vec (vec (find-clojure-repos))))` and it should *only* fetch the most recent repos (given that CWD contains...

Hi again, and thanks! I discovered a bug when continuing from a `&page=10` url: the indexing would then stop. It's fixed in main at https://github.com/ivarref/dewey I changed the data format...

Hi again @phronmophobic Thanks for your input. I totally agree with your comments on storage: it is indeed cheap. I think a person who wants to develop/modify dewey can be...

Hi. So `void *s` points to your characters in the CSV file. You need to parse that `void*`. Example parsing code: ``` #include #include #include #include /* gcc sample_parse.c --std=c99...