Talin

Results 296 comments of Talin

So it turns out this is getting more complex than I realized. I've got the following code pattern about a dozen places in my code: job.someProperty = foo; job.update(); job.addLog({},...

Here's an alternative idea, which is a bit more radical: ``` Queue.process((job, control) => { control .update({ /* properties */ }) // set some properties .log.info('info message') // Log an...

I've decided to go in a different direction, so I'm happy to table this discussion.

Well, as you pointed out, my needs are complex. And I didn't even mention some of the other issues. For example: users are going to want to monitor the status...

I don't think we actually need to select or focus the current project row. All we need is a way to visually distinguish it from the other rows - this...

So changing it to static made the problem go away - still don't know why. I'm finding it very difficult to debug problems, such as when I pass in a...

I just discovered this thread and I'd like to weigh in on the discussion. I'm interested in the topic because my previous job involved a lot of ARIA-related work and...

I recently updated my app to the latest three.js and now I am seeing warning messages like this coming from Troika text: ``` THREE.PlaneBufferGeometry has been renamed to THREE.PlaneGeometry. ```

See also #9725.

So, before I begin, some context: I've written many game editors in my career, going all the way back to 1986. This includes editors I wrote while at Electronic Arts...