James Wilson
James Wilson
I haven't experienced this using runtypes via Parcel, but using Rollup I run into an issue (`(!) Circular dependencies`) because there are circular dependencies as follows: ``` lib/index.js -> lib/types/unknown.js...
One notable addition in pest 1 is that parsed input is now provided back in a tree structure rather than a flat list of tokens. I think that this is...
**Is your feature request related to a problem? Please describe.** I use/maintain a library (https://docs.rs/seamless/0.8.0/seamless/) which can be provided a stream of bytes to work with as part of a...
The below code is a rust port of the Sequential Consistency example at the bottom of https://en.cppreference.com/w/cpp/atomic/memory_order which fails to run in loom: ```rust use loom::sync::atomic::{ AtomicUsize, AtomicBool, Ordering };...
We at Parity haven't been able to dedicate enough time and attention to Substrate Archive lately, so this is a call for maintainers. If you're interested in helping to take...
I'm not suepr familiar with GitHub actions, so apologies if this is an obvious and known thing. I can set the default CWD for run commands with: ``` defaults: run:...
Weave currently can proxy requests to https endpoints, but only supports serving up content on http at the moment. Serving content on https would require either a pre existing or...
It would be nice if weave handled range requests properly when serving static content (it currently forwards such requests on when acting as an http proxy, so they are handled...
Currently, weave proxies everything, so you think you're talking to localhost:1234 but you're actually talking to foo.com. An option could be added to tell a route to send back redirect...
Weave can serve static content, but it will not list the contents of some directory currently (instead, it looks for index.html if you request a directory and serves that, or...