Erica Marigold

Results 149 comments of Erica Marigold

We do actually have a pure-luau CSV parser of sorts as a lune script. See [.lune/csv_printer.luau](https://github.com/lune-org/lune/blob/main/.lune/csv_printer.luau). Ideally this sort of thing is intended to be done as a library, I...

I still personally think this kind of thing should be implemented in the language itself, or if performance is really imperative, using FFI.

> The latest release was 3 yrs ago GitHub releases are not longer used, but the mod is regularly updated on Modrinth and Curseforge.

I'm not able to reproduce on Linux - how did you install Lune? Was it via `rokit`?

I've seen such behavior on older versions of Rokit, might in fact be fixed on the latest version. This issue can be closed if someone can confirm that this cannot...

Native would be ideal, but Tauri should be the route of least effort. Since Mullvad's core is in Rust, it should be really easy to call the existing APIs from...

Hex encoding and decoding can already be done in Luau, unless I am misunderstanding you. ```luau -- Encode local encoded = string.format("%x", int) -- Decode local decoded = tonumber(encoded, 16)...

You should specify that you want support for hex and base64 encoding for serializing data. The current issue is a bit vague and comes off as general support for them.

Size is possible to add, but I don't see why we would want to add MD5 hashes. The filesystem itself returns no data for hashing, so we'd need to calculate...

Lua length operators are weird. Encoding null in JSON with `nil` values in Lua is a pretty weird problem to solve, considering Lua has a set of obscure rules of...