Marko Bregant

Results 3 issues of Marko Bregant

I think we should also add list of parking spaces in the nearby and if they are payable or not.

I am testing `json-schema-to-typescript` and I see that in some cases it produces `interface` and in other cases `type`. What is the rule here, when does it make which? Is...

question
in discussion

May I ask what does this part of code do: https://github.com/sofroniewn/electron-johnny-five-examples/blob/master/2-switch/app/index.js#L5-L15 ``` var Readable = require('stream').Readable var util = require('util') util.inherits(MyStream, Readable) function MyStream(opt) { Readable.call(this, opt) } MyStream.prototype._read =...