ilmoi
ilmoi
This is an amazing project, exactly what I needed for whenever I'm stuck on a headless machine and need to do some surfing. Is there a way to download files?...
After running my cleaning script: ``` Qs = ['default', 'failed'] for q in Qs: try: rq = Queue(q, connection=redis_conn) rq.empty() ``` `rq.count` is showing 0 both for `failed` and for...
I've tried running `honggfuzz` with both the original make that comes with OSX (3.81) and with one installed via homebrew (4.3) - in both cases I get this error: ```...
Currently if I spawn multiple actors: ``` let _daddr = DownloadActor::start_default().await.unwrap(); let _daddr2 = DownloadActor::start_default().await.unwrap(); ``` and then publish a job: ``` Broker::from_registry().await.unwrap().publish(msg) ``` the effect I get is that...
I'm using Drizzle inside of Vue (no vue-plugin, just pure Drizzle). Following the docs on [contract interaction](https://www.trufflesuite.com/docs/drizzle/getting-started/contract-interaction) I'm doing the following: ``` const stackId = await state .drizzle .drizzleInstance .contracts['ItemManager']...
Running this command: ``` poetry run pytest -vv tests/integration/test_async_http_client.py::test_get_signatures_for_address ``` Leads to this error: ``` ============================================ test session starts ============================================= platform darwin -- Python 3.9.7, pytest-6.2.5, py-1.11.0, pluggy-1.0.0 -- /Users/ilmoi/Downloads/solana-py/.venv/bin/python...
I couldn't get it working with Vue3. Any advice? Otherwise, when might we expect an upgrade that supports Vue3?
Tried asking on [StackOverflow](https://stackoverflow.com/questions/72052342/aws-kinesis-consumer-library-kcl-confused-on-when-records-might-be-dropped) but got no answer, perhaps one of the core maintainers can comment. Basically AWS docs say that there are times where KCL can drop records if...