Nathan Phillip Brink

Results 92 comments of Nathan Phillip Brink

Interestingly, if I don’t invoke `require('fs')` myself but let promisify-node do that for me, it works as expected: ``` ohnobinki@gibby ~/require-semver $ node -e 'require("promisify-node")("fs").writeFile("a", "b\n").then(() => console.log("done"))'; cat a...

Maybe YAML requires spaces, but does it actually require 2 spaces? https://github.com/editorconfig/editorconfig/issues/298#issuecomment-287899015 seems to state otherwise.

@mihaipopescu @whyleee References for the `end_of_line=lf` issues: * Typing `///` in C# file results in CRLF being used for the lines with the generated comment: https://github.com/dotnet/roslyn/issues/23143 (originally https://developercommunity.visualstudio.com/content/problem/144281/comment-templates-doesnt-respect-end-of-line-lf-in.html) * Creating...

That looks like one of those things which a VS addon will read from the `.editorconfig` file. It’s exemplified by https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/998420eee298ccb8fa7b0fd1550bb106d3290b0a/.editorconfig#L48 . In this case, they’re using `.editorconfig` as a...

I looked at https://github.com/editorconfig/editorconfig/wiki/EditorConfig-Properties#charset and noticed that it doesn’t mention `utf-8-bom`. But http://editorconfig.org/#supported-properties does mention is. Why is this inconsistent?

@xuhdev Thanks. Sorry for the bugspam. I assume I shouldn’t create a new issue since you went and fixed it. It’s OK to delete my comments on this issue if...

IMO, default behavior should be to throw and an `.unknownHandler` should be used to either change the behavior or print out a prettier message.

I think Bowser’s job is to just get you the audio stream so you can send it somewhere with WebRTC, e.g., a server which can handle speech recognition. iOS as...

I ended up finding a discussion of [something similar in the ML archives after the fact](https://groups.google.com/forum/#!topic/letsauth/kOc_SMY_9lI). Thanks for pointing to the spot in the source, maybe I’ll find time to...

So, I’ve started trying to write my own dummy idP since I don’t know off-hand of any example implementations. So far I have [a faked out webfinger](https://bitbucket.org/binki/ohnopub-webfinger): https://client.webfinger.net/lookup?resource=ohnobinki%40turbo.coffee . We’ll...