ffrostfall
ffrostfall
Occasionally when using Rojo, it will output invalid JSON such as the following: https://i.imgur.com/zLURlf5.png   --- This seems to only happen in watch mode. Regenerating the sourcemap manually always...
As of right now, `Computed` processor functions are not labelled in the microprofiler. Currently I believe computers use xpcall to run processors- I think this could be easily and quickly...
```lua local literal: "a" | "b" local separateCond = ... if separateCond or (literal == "a") then if literal == "b" then -- Type error, "a" cannot be compared with...
I am developing a networking library, and I want to have the same user-facing API regardless of run context for connections. I would like to be able to use intersection...
Currently, there is no way to process the stdout stream of any process spawned with `process.spawn`. My current use case is being able to spawn multiple processes and label each...
```lua local signal = {} signal.__index = signal type InternalIdentity = setmetatable () }, typeof(signal)> local function constructor(): InternalIdentity return setmetatable({}, signal) end function signal.fire(self: InternalIdentity, ...: T...): () end...
A common programming pattern is to split up logic into one-time use functions, in order to reduce indentation and increase readability. Take the following code: ```lua local ids: { [number]:...
Take the following code: ```lua local function func() -- long operation here (above the threshold for inlining) end func() func() func() func() ``` Inlining `func()` for each call here does...
As wally package types doesn't use default.project.json, I don't think this is an actually breaking error.