SinisterRectus

Results 22 issues of SinisterRectus

I'm opening this issue as a reminder to myself to write some sort of table or list that shows past luvit versions and their corresponding luvi/luv/luajit versions. Just as a...

Tested on Windows 10 64-bit WSL2 Ubuntu 18.04.1 LTS. ``` sinister@DESKTOP-SB6R31A:/mnt/c/Users/Sinister/Desktop/luvit$ ./luvi . -- tests/test-fs-chmod.lua 1..1 # Starting Test: fs chmod /mnt/c/Users/Sinister/Desktop/luvit/tests/libs/tap.lua:81: /mnt/c/Users/Sinister/Desktop/luvit/tests/test-fs-chmod.lua:82: assertion failed! stack traceback: [C]: in function...

tests

If I am correctly interpreting the intent of the luvi bundle and luvit's custom require, it looks like `require("bundle:name")` should directly require a module that is packed into a luvi...

bug
require

I'm having trouble with relative requires from within a thread. Maybe I don't know enough about how luvit's require sets up the cwd. This is tested on Windows. ```lua local...

require

Going through luvit with luaparse and found some unused values: [`position` in readline.lua](https://github.com/luvit/luvit/blob/master/deps/readline.lua#L95) [`href` in url.lua](https://github.com/luvit/luvit/blob/master/deps/url.lua#L68) [`i` in tls/common.lua](https://github.com/luvit/luvit/blob/master/deps/tls/common.lua#L310) Should these be used or removed?

api

This seems to be an old luv issue that may have gone overlooked until the uncaughtException handler was added with #1048. Basically, if an error occurs in a luv callback,...

bug

Commit 4eefacad005903f6768654f0fbd53da9a7535e0f introduced a form of weak caching into regular caches, where deleted objects would be moved from a strong table to a weak table. The goal here was to...

bug

Discordia 1.x used the OrderedCache class to store messages. This was a limited linked list where each message would be pushed to the front of the list and, if a...

enhancement

One of the defining features of Discordia is its inclusion of an object-oriented interface for interacting with major Discord types. "Containers" provide an interface for interacting with a single instance...

enhancement

To the best of my recollection, and as [documented](https://discordapp.com/developers/docs/topics/gateway#tracking-state), bot developers and [community library](https://discordapp.com/developers/docs/topics/community-resources#libraries) developers have been encouraged to implement a stateful connection to Discord's gateway to supplement and minimize...