Chris AtLee

Results 18 comments of Chris AtLee

The advantage is that you get slightly improved latency on handling the first few items that are posted to the pool. On my system, I see about a 0.5ms improvement...

Here's how I'm trying to measure the impact: ```ruby require "concurrent" def gettime Process.clock_gettime(Process::CLOCK_MONOTONIC) end def measure_latency(prestart) pool = Concurrent::FixedThreadPool.new(1, prestart: prestart) times = [] start = gettime pool.post {...

Yes, I think it makes sense to be able to configure the frequency of when diagnostics are requested per client or to change it to be on save only. According...

Thank you all for the updates! If this is still occurring, it would help to know which files are getting re-uploaded each time. > (crash due to prompting which doesnt...

Can you expand more on how you would use `color_to_raw`? We do have the colour drops which expose `.red`, .etc. to get access to the individual channel values. Would introducing...

@0xtlt, and what is the benefit of having the raw colour values as CSS variables, as opposed to the full `rgb(255, 0, 255)`. How is this consumed by the rest...

I discovered this in the context of fixing a bug in a test plugin which allows you to run tests by line number. e.g. in code like this: ```ruby 1...