Syuparn
Syuparn
When non-numeric expression is passed to second argument of `sumOver`, Praat crashes with an assertion error shown below. ```praat # sum.praat sumOver(i to 10, "foo") ``` ```powershell > praat .\sum.praat...
This PR adds a lexer for the [jq](https://stedolan.github.io/jq/) language, which can filter and transform JSON data.  I referred these pages below for lexing rules. - official manual: https://stedolan.github.io/jq/manual/ -...
Since implicit return type `void` is deprecated, `void` is added explicitly to the Torque hello world sample code. ``` Torque Error: Default void return types are deprecated. Add `: void`....
Add Gomplate backend to ELVM. [Gomplate](https://docs.gomplate.ca/) is a template renderer using Go's template language in [text/template](https://pkg.go.dev/text/template) package. ```bash make gomplate ``` All tests were passed with Gomplate v4.0.0-pre-0 (the latest...
It would be useful to have a function that filters slice elements by type `T` and converted to slice `[]T`. This helps to skip type assertion after filtering, example: ```go...
added `FilterByType` function. This can skip type assertion after filtering. Closes #339
The document says external functions used in a request block should not take arguments. https://tavern.readthedocs.io/en/latest/basics.html?highlight=external%20function#using-external-functions-for-other-things > Functions used in the `verify_response_with` block in the response block take the response as...
I tried to get a binary of this module via `go install`. Currently, installation in Readme does not work for the [latest version](https://github.com/dolthub/go-mysql-server/releases/tag/v0.12.0). https://github.com/dolthub/go-mysql-server#installation ```bash $ go version go version...
When a handler passed to `timeout.WithHandler` completed and the middleware timed out at the same time, the context writes both response bodies or panics due to concurrent writes. ### Reproduction...
**Is your feature request related to a problem? Please describe.** While vcsim can change the API version through the option `-api-version`, ESXi/vCenter version cannot be changed. ```bash # start vcsim...