jaide (formerly eccentric-j)

Results 111 comments of jaide (formerly eccentric-j)

Also experiencing this issue EDIT: After rereading realized I should build from master

I haven’t looked at static’s tests yet but perhaps we should first figure out what needs to be tested? Do you envision testing the output of tasks or the internals...

Sounds like a good strategy to me. Next, how do we test these output tasks? Can we run these tasks against fixture markdown files and take snapshots of the output...

I'll definitely read through it 🙂 but I want to make sure we're on the same page about what we should test and how we should test it first. I've...

After taking a look it inspired a good deal of thoughts: This feels ok but I think using Clojure to write the dummy files is an extra maintenance step. I...

This was fixed with updating the fsm library. May have also been caused by a build up of log data that slows Hammerspoon down. That was patched upstream.

Haven't seen this since so I think it's fixed

Yes, it is possible. The trick is to transform your highland stream into a Node Readable stream which automatically implements the Symbol.asyncIterable method. ```js const stream = require("highland"); // Just...

After continually playing around I was able to get it working... I think: ```js function createBuildQueue () { let stream = _(); stream.flatMap((state) => { debug('incoming build state', state) return...

The project launched and for the most part is working as intended. However, now there's some inevitable scope creep in what this server needs to do. In which case there...