HackerTrans
TopNewTrendsCommentsPastAskShowJobs

norrius

no profile record

comments

norrius
·5 tahun yang lalu·discuss
I suspect this is more about giving that almost-boiling water more points where it can break tension and start forming bubbles. So it doesn't make the water reach 100° faster but makes it more visible.
norrius
·5 tahun yang lalu·discuss
> Whenever an input accepts YAML you can actually pass in JSON there and it’ll be valid

...unless your parser strictly implements YAML 1.1, in which case you should be careful to add whitespace around commas (and a few other minor things). This is a valid JSON that some YAML parsers will have problems with:

    {"foo":"bar","\/":10e1}
The very first result Google gives me for "yaml parser" is https://yaml-online-parser.appspot.com, which breaks on the backslash-forward slash sequence.