Kng
Kng
If you make another server location in nginx config and put `server_name subdomain.domain.tld;` you can make it only listen to that subdomain. I use this to proxy to a local...
Neos' gta-toolkit fork does have a RDR version https://github.com/carmineos/gta-toolkit/tree/master/RageLib.RDR2 so maybe. I have no clue if it's working or not and have nothing to test it with. I won't do...
That's a good idea and I might get around to it.
Wouldn't "table/object marshaling loses metatable" or something similar make more sense as a title?
Hi it'd be to have some files to reproduce the issue with. In the meantime you could try other formats (e.x. put `{"Format":32}` in a patchOut.png.json), you can find the...
It's worth to mention that 32 is A8B8G8R8 which takes 32bits per pixel, which is like 4x whatever I put as default (dxt5?). Storing everything as A8B8G8R8 is a good...
Hey! I haven't read everything in this thread but I think going with a DSL approach instead of a OO approach could be good. Being inspired [getopt() but smaller](https://dotat.at/@/2024-11-06-getopt.html) and...
In Nix (the language) the [syntax is `./path.typ` or `/path.typ`](https://nix.dev/manual/nix/2.28/language/syntax#path-literal) and it's both convenient and intuitive. It's the most ergonomic path handling I've ever used in a programming language. From...
I'd like to add that this a problem for Wayland as well and there's no xsession equivalent. Seems like login managers only check `/usr/share/wayland-sessions` by default and supporting per user...
> How would paths with spaces be handled? Using escape sequences for spaces (e.g. `/path\ to\ file.typ`) feels uglier than a regular string literal `"/path to file.typ"`. At least to...