Maxim Syabro
Maxim Syabro
I think it'll be much useful instead of annoying JSON-like %a{'href':'http://example.com'}
``` const immutable = require('object-path-immutable') const x = {} console.log(immutable.set(x,'arr.5', 'hello')) ``` returns ```{ arr: [ , 'hello' ] }``` Which leads to different bugs, for example `x.arr.map` will iterate...
@fwilkerson it would be great if you add to readme which browsers are supported
I would love to use it as VST in ableton
I've added `BASIC_AUTH_USER` and `BASIC_AUTH_PASS` but when I go to `http://localhost:8000` it doesn't ask for credentials - just show the directory listing. My docker-compose ``` proxy: image: pottava/s3-proxy restart: always...
I have config ``` TORTOISE_ORM = { "connections": {"default": DATABASE_URI}, "apps": { "thirdparty": {'models': ['aerich.models']}, "zendr": { "models": [ "subscriptions.models", "users.models", "userbots.models", ], "default_connection": "default", }, }, } ``` When...
I guess it based on 'Jeremy peterS' but It doesn't make any sense for the code.
@ronnix you did a great job But as I can see there are 46 PRs and you don't merge them for a long time. Maybe it's time to add someone...
I think it'll be useful https://wheel.readthedocs.org/en/latest/#usage
### Clear and concise description of the problem Currently api type is unknown ```ts declare global { interface Window { electron: ElectronAPI api: unknown } } ``` And I have...