Ondrej Medek

Results 137 comments of Ondrej Medek

I agree, the `-r` should omit file specified by the `-s` flag. My scenario is ``` ajv -s 'src/models/root.json' -r 'src/models/*.json' -d 'data.json' ``` and got the error `schema with...

@vmaurin I agree, my previous comment is wrong. Please, comment also PR #190

I am not a maintainer, but I agree starting a new PR is better.

I vote for this bug since more and more devices generates FIT 2.0.

@tormet It's great you have a patch and thanks for the analysis that developer fields may cause a crash. You are generally right about dangers reading unsupported version. I think...

And sometimes such ghost process takes approx. 1/3 of CPU. I have to go to the task manager and kill it.

I would like to use log4js in Electron environment, so would like to have browser and node libs from one source (i.e. API compatible), too. Crossposted in stritti/log4js#45

You can use [slf4net](https://github.com/englishtown/slf4net). Or some projects just use their own simple logging façade which is possible to set up by some `public static IMyLog Log` property. To @enrico-padovani comment:...

I prefer normal instance initialization: ```c# var server = new HttpServer(8080); server.Route(...); server.Start(); ``` KISS: if anyone wants to have static init scattered among classes, then she just may do...

My idea is to make `MarginBetweenChildren` as `ChildMargin`. E.g. if you set `MarginBetweenChildren = 3` and have a grid 3x3, then the elements will have margins: | | | |...