Andrew Bradley
Andrew Bradley
Thanks, I'm not sure how it happened, I think I was manually triggering the hashtag reindex a lot while I was experimenting, so maybe I got the indexer into a...
I am seeing the same issue when doing this: ``` node -e 'require("@swc/wasm"); console.log("done");' ``` Seems to be about a 5 or 6 second delay between seeing "done" and process...
Tiled actually does _both_ what @JustusPan _and_ what @nyalloc are describing. You can *either* set the class of something, and it will have the fields defined for that class (@JustusPan),...
Some python libraries use tricks so that imports load on-demand, completely seamless from the consumer perspective. So if you never access a heavyweight component, it never imports.
This is something a user could maintain separately from stevencohn. Make your own git repo with a nightly Github Action that checks for new releases of OneMore. Supporting `winget` is...
I'm guessing this extra escaping / unescaping is the culprit: https://github.com/deepnight/ldtk/blob/f645d2efc625cec4ab4080556bb19e7ac2a1f4f1/src/electron.renderer/data/inst/FieldInstance.hx#L216-L234 I don't think that logic should be necessary to correctly handle newlines. The DOM API's `` `.value` will return...
I am hitting the same issue, but with Migaku, which has similar functionality to Yomitan: it shows a popup dictionary. The problem is that asbplayer custom CSS applies to the...
AFAIK `pwsh` is never installed by default. At least, I haven't heard anything to the contrary. At the very least, installing the latest `pwsh` is as easy as installing `just`...
Can `path_sep` be added as a built-in variable or function? So I can do: ``` export PATH := "./app/node_modules/.bin" + path_sep() + "./node_modules/.bin" + path_sep() + env_var('PATH') ```
I was never sure what differentiated a function from a constant, but now I understand: `os()` is a function because it's different across different platforms, even if the returned value...