Joe Clack
Joe Clack
Any advance on this?
Any update on this? Open to contributions? It seems like what's missing are interfaces for `PersistentOrderedMap` and `PersistentOrderedSet`, rather than exposing the implementation classes.
you know, that's quite the idea. 😅🤣
On further inspection, since the Vanilla Minecraft `OpenWebLink` method is being called, I suspect this is actually a Minecraft bug. It might be helpful to open the ['unsafe link' screen](https://nekoyue.github.io/ForgeJavaDocs-NG/javadoc/1.12.2/net/minecraft/client/gui/GuiConfirmOpenLink.html)...
> Their terms specifically say you need permission to include them. Regardless of whether or not we think they'll send a take-down, we _should_ obtain permission before continuing to have...
Hey, I'm thinking of taking a look at this - You mentioned you'd prefer JSON; am I OK to implement using a JSON for C library such as - [JSMN](https://github.com/zserge/jsmn)...
This has been resolved by - Buuz135/DarkModeEverywhere#39 for 1.18.2 - Buuz135/DarkModeEverywhere#43 for 1.19.2 - Buuz135/DarkModeEverywhere#40 for 1.19.4 - Buuz135/DarkModeEverywhere#41 for 1.20.1
Can you show me a minimal reproducible example of an Express server that provides a `GET` endpoint, such that an `OPTIONS` request to that endpoint will yield a response with...
When I use the `cors()` middleware with minimal options, according to 'Simple Usage' on this repo's readme: ```bash $ node -e 'require("express")().use(require("cors")()).get("/foo",(req,res)=>res.send("Hello")).listen(3000)' & [3] 2226 $ curl -i -XOPTIONS http://localhost:3000/foo...
On a separate note; how would you suggest to register a 'catch-all' middleware such that it doesn't interfere with the built-in `options` request handling? For example: ```bash $ node -e...