Feez
Feez
This may have to be a follow-up of https://github.com/sumneko/lua-language-server/issues/1411 but I have created this as a separate issue for separate feedback & tracking purposes It would be nice if we...
I have written an LuaDoc api documentation file for a library of mine, and I currently cannot abstract away the values of an enum that makes use of the `---@enum`...
If we know enough information about the type passed into `unpack`, we could infer the unpacked values as a result. For example:  We know that both `x` and `y`...
I was experimenting with using StyLua on minified Lua, and found that StyLua fails to parse this valid Lua when minified. source: ```lua local function test() goto end_thing local x...
Related: https://github.com/pytorch/examples/issues/887
https://github.com/pytorch/examples/blob/36441a83b6595524a538e342594ee6482754f374/fast_neural_style/neural_style/neural_style.py#L117 Spent 2 hours training a model for it to fail the save with error prefixed with `OSError: [Errno 22] Invalid argument` :( For now I'm just adding fail-safe but...
https://github.com/c2huc2hu/jps/blob/7b468a51ce8c418c72bace66fa203667f364e565/jps.py#L199 Wouldn't the diagonal cost have to be incrementally be added by sqrt(2) to be accurate? Thanks for the code btw, I have been trying to learn JPS from a...