Ricardo Ander-Egg
Ricardo Ander-Egg
I see. According to [the `target_env` docs](https://doc.rust-lang.org/reference/conditional-compilation.html#target_env): > For historical reasons, this value is only defined as not the empty-string when actually needed for disambiguation. I can see why this...
I had this resource by Seth Michael Larson saved https://github.com/sethmlarson/pycon-async-sync-poster I haven't had a look at it, but it may contain useful info. On twitter, I mentioned passing an aiosqlite...
For async you have a few options. I'm currently using [encode/databases](https://github.com/encode/databases). It's been working great except for a few bugs that have been merged to master but not released yet....
That's actually an interesting way to do it. I don't know if you plan to load the queries manually or use aiosql. With aiosql you can access the ray sql...
Not yet, although this could be a good feature to have. There was recently https://github.com/litements/litequeue/pull/12 but the author closed it. I will consider it.
Once I start using [alpine.js](https://alpinejs.dev/start-here) I may be able to store everything on the client so that no changes are needed in the app code to support multiple users. I...
Ideas: Use alpine.js (I was planning to add it anyway). * Use [x-for](https://alpinejs.dev/directives/for) to populate the datalist `` elements. * Use [Alpine.store](https://alpinejs.dev/globals/alpine-store) with [Alpine.persist](https://alpinejs.dev/plugins/persist) to store the user config.
Example code: ```html ``` Then add `list="suggested-paths"` to the `` element for the SQLite paths.
The configuration will be saved in a cookie as a JSON object. Should I compress the JSON string. Some testing: ```py import gzip import base64 import json data = {...
I'm experiencing this too. Deleting the "lock" files doesn't fix it either. Installing 2.0.67 (`@stable` version), generates an empty file. If I run the installation manually (getting the `claude` binary...