Youcef Boumar (boumary)
Youcef Boumar (boumary)
after some testing, I think this error occurs when the listener detects another keyboard event while the `on_activate` function is still running. A possible work around to this is running...
@moklick wouldn't just setting a hard maximum for `pinchDelta` work well? I don't think that would break any accessibility something like this: ```ts const zoom = currentZoom * Math.pow(2, Math.min(Math.max(pinchDelta,...
Hey, I know this isn't a python project, but I know [PyMuPDF](https://github.com/pymupdf/PyMuPDF) can do this. Here is a code snippet: ```py import fitz doc = fitz.open("invoice-7-2024-06-01.pdf") for i in range(doc.page_count):...
if you export your config location like: ``` export PG_CONFIG=/Users/Shared/DBngin/postgresql/15.1/bin/pg_config ``` before installing, it should work. For example, for pg-vector, I did: ``` cd /tmp git clone --branch v0.5.1 https://github.com/pgvector/pgvector.git...
turns out the graphQL call was missing an argument, fixed it in #157
@dnhkng can you add training code to the repo? The GlaDOS voice is very on point, I'm curious how you trained/fine tuned the model and what params you used, and...
I'm running into the same issue, hangs on .connect
only problem is that there isn't really a good way to install it... huggingface doesn't support basic auth and the only auth method pip supports is basic auth. Only solution...