Mat Kelly

Results 844 comments of Mat Kelly

@ibnesayeed Any ideas on the heuristic we use for which mementos are displayed? Should we also give the user the option of an extended interface to see a comprehensive list?...

@ibnesayeed _Any ideas on the heuristic we use for which mementos are displayed?_ was not asking about content type but rather, if we have 100 mementos, which are displayed, even...

@ibnesayeed I have an eventual use case where I anticipate using remote indexes, so would rather keep it in.

My use case consists of our eventual functionality of being able to change the index at runtime without relaunching. Being able to toggle between a few sets of remote and...

I am fine with the idea of decoupling while retaining the functionality through external calls.

Somewhat relevant: https://github.com/ipfs/benchmarks.

On further inspection of `getURIsAndDatetimesInCDXJ()`, the function initially calls `getIndexFileContents()` and _puts the CDXJ lines into memory_, namely a Python list, and only then begins to iteratively process the lines.

I'm still getting a handle on implementing async/await in Py3, particularly on how to do batch queueing and returning a value once the line is consumed. The current logic expects...

Something like the following might work, adapted from the current code (& thx to @N0taN3rd): ```py import asyncio import aiofiles import json def unsurt(surt): try: index = surt.index(')/') parts =...

@ibnesayeed The function in question _requires_ parsing every line in-series. This GitHub issue revolves around making this function more efficient. It does not relate to making fetches to IPFS more...