Stefan
Stefan
**OS** Linux Alpine **Package Version** 1.3.22 **Reason** This **only** occurs on Linux Alpine because one of your dependencies (that have pre-compiled binaries) are not compatible with the musl alpine libc....
**Description** Currently, the system uses HTTP requests to localserver on a port to update the DataModel which can lag on larger datamodels. It would be really nice and helpful if...
**Expected behavior** The bot to automatically reconnect to gateway. **Actual behavior** The bot did not reconnect, and spitted out an error. **Steps to reproduce** Leave the bot on for an...
**Introduction** I was trying to convert the `ec25519.lua` file to support Lua5.3 via the bit32 library. When trying the example script, I unfortunately get the following error `bad argument #2...
This behaviour is intentional but an option to disable `to_string` being included within the `FromStr` implementation would be nice. ## Example code In the following code, each url maps to...
Duplicate of #733
**Is your feature request related to a problem? Please describe.** When viewing your flashcards, it can look ugly within your notes - especially when it comes to Anki clozes. **Describe...
Duplicate of #731
#93 I haven't made the test cases yet and I'm not able to at the moment, but I might be able in the future - or you could?
# Reference code ```lua local Class = {} Class.__index = Class do function Class.new() local self = setmetatable({}, Class) self.Variable = true return self end function Class:Test() print(self.Variable) end end...