Alexandre Moreno
Alexandre Moreno
Hi, I am trying to bootstrap a wakaama client with DTLS. I can run the example client with DTLS-PSK support, and successfully write server and security objects in JSON. The...
We need to catch up with the current API: https://developers.line.biz/en/reference/messaging-api/ Roadmap of new features: - [ ] [Managing audience](https://developers.line.biz/en/reference/messaging-api/#manage-audience-group) - [ ] [Insights](https://developers.line.biz/en/reference/messaging-api/#get-insight) - [ ] [OAuth v2.1](https://developers.line.biz/en/reference/messaging-api/#channel-access-token) - [...
Here's an [article](https://www.tweag.io/blog/2021-01-22-nickel-contracts/) on programming with contracts in Nickel, or as they call them, *glorified assertions*.
Jsonnet (the spec) defines the language as dynamically typed. An extension that seems natural to incorporate into Jsonnet is gradual typing with structural subtyping à la TypeScript. Gradual typing enables...
Jsonnet programs cannot always be self-contained, consider e.g. when the generated config needs to have secrets in it. In this case, you do not want to commit your secrets alongside...
Proposed here: https://github.com/google/go-jsonnet/pull/584
Add a `-J / --jpath ` option in the cmdline executable to specify additional library search directories, right-most wins. The additional paths are tried if it fails to load a...
Jsonnet doesn't have *yet* a language server implementation: https://microsoft.github.io/language-server-protocol/implementors/servers/ Haskell library for LSP: https://github.com/haskell/lsp
```std.trace(str, rest)``` outputs the given string `str` to stderr and returns `rest` as the result. Example: ```jsonnet local conditionalReturn(cond, in1, in2) = if (cond) then std.trace('cond is true returning '...