Dean McDonnell
Dean McDonnell
Error handling needs a rethink, my thoughts here, - err is not always respected, many types of errors instead cause timeouts - Lots of options that do sort of the...
For placeable component areas, it would be nice to have the reverse marked with the same solder mask marks above. This would make it easier for first time users to...
@gfwilliams I'll add my overall feedback about the hardware here (I'm sure there's a nice earner in this as a kit with some challenges for the purchaser). Overall I'm super...
The pins have an individual mask per pin, it would be nice if the mask instead was grouped by logical area so it is easier to make out which parts...
I found the built in led area's a bit too small for soldering. It looks like the site of each led probably needs to be moved back to account for...
@rjrodger So here is something stupidly nice. It turns out you can cURL or used postman on **any** node in the mesh and get back a valid response. This means...
@rjrodger wanted to get your opinion on this. (The context is NodeZoo) As you know, if we scale github / travis / npm we are going to get multiple calls...
Via https://github.com/senecajs/seneca/issues/495 ``` js //server.js var seneca = require('seneca')() .use(require('./math'),{logfile:'./math.log'}) seneca.listen(); //math.js module.exports = math; function math(options) { this.add('role:math,cmd:sum', sum); function sum(msg, respond) { var out = { answer: msg.left...