Ingy döt Net
Ingy döt Net
@sigmavirus24 and @ingydotnet are taking over maintenance of libyaml from @xitology. The first step is to migrate the Mercurial repos on BitBucket to Git repos on GitHub. We hope this...
The YAML project has many places where a code of conduct should be put into place. @eemeli suggested we use https://www.contributor-covenant.org/ for this purpose. This issue is to discuss this,...
Anchors should be emitted in ascending order.
Maybe related to #499 ``` docker run --rm -it yamlio/yaml-editor bash -c 'printf "," | /yaml/bin/cpp-yamlcpp-event' ``` shows that a YAML stream containing just a comma causes yaml-cpp to loop....
I just realized that: ``` is-macos() [[ $OSTYPE == darwin* ]] ``` Is a valid Bash (3.2+) function definition. A cleaner alternative to: ``` is-macos() ( [[ $OSTYPE == darwin*...
First off `dejson` is a bad name for this. How about `yamlfmt`, `yfmt`,, `tidy` or something? JSON has nothing to do with this. So here are some changes to the...
From https://clojurians.slack.com/archives/CAJN79WNT/p1696690011308229 Ingy döt Net: Not sure where to ask about this but I started using zprint for the yamlscript compiler to nicely format clojure code. When I run lein...
From PR #626 (new impl). In GHA, run local docker build if kanaka/... image not available.
I'm working on a YAML syntax Lisp called [YAMLScript](https://github.com/yaml/yamlscript) that will work in many languages. I realized I really needed to learn how to implement a Lisp. I found this...