Kusti Skytén
Kusti Skytén
I couldn't find a repo for the Org mode parser. Could you please publish it?
EMOD has a command line option to output the schema for configuration files, but it is in a non-standard format. There is an existing [standard](https://json-schema.org/) for JSON schemas. Probably the...
I tried to generate the nix expression for [Hugo](https://github.com/gohugoio/hugo) without success. I ran ``` nix-env -p go git go2nix mkdir hugobuild cd hugobuild export GOPATH=`pwd` go get -v github.com/gohugoio/hugo cd...
At the moment COMBO is packaged like an application for demonstrating the algorithm for the paper. It would be really useful to be able to use COMBO in [BoTorch](https://www.botorch.org/). It...
It seems to me like to only reason to treat file extensions differently is to avoid having to escape double braces in files without the extension. Wouldn't it make more...
Currently, these is only one type of null in the code generator. The following code ```julia json = """ [ {"a": null, "b": 1}, {"a": null, "b": null} ] """...
Currently, `JSON3.generatetypes` only accepts a JSON string as an argument. It would be useful to accept a list of JSON samples from an API for example. I tried to look...
It would be great to automatically generate parsing code based on a JSON schema like in https://github.com/quicktype/quicktype. I made an attempt at parsing JSON schemas [here](https://gist.github.com/kskyten/6e1f58538bd8d22453dfeaec61060cf9), but wasn't quite successful...
I would like to stream data from Julia to Vega-Lite to create updating plots. Could you add a MWE (an echo server for example) for using websockets? [Here](https://gist.github.com/domoritz/8e1e4da185e1a32c7e54934732a8d3d5#file-index-html-L25-L45) is what...
I'm interested in using Mjolnir to transpile Julia to GLSL shaders. Since JSExpr implements a javascript AST I though it would be a good stepping stone to create a minimal...