-
The array concat operation can be simply implemented as follows:
```
concat :: (IsStream t, MonadIO m, Storable a) => t m (Array a) -> t m a
concat = S.concatMap A.read
```
However, `concatMa…
-
If a command has an example, $0 will be replaced with just the binary name.
This means, that you have to include the command name and it's parent commands in the examples.
This breaks the composa…
-
Taking inspiration from @seratch's library, https://github.com/seratch/slack-web-api-client/tree/main/src/block-kit, should study the following to see what kinds of improvements on the Block Kit side …
-
### What would you like to be added
Add a flag (e.g. `--json`) to make the CLI print its output in JSON format.
### Why this is needed
Supporting JSON output provides for easier composability…
-
Column definitions were put into JS land, because Ember and Handlebars lacked some important features regarding flexibility and composability. But the landscape is slowly shifting towards a shiny new …
-
Hello all,
I wanted to start a discussion about a few repository tooling and automation ideas. Primarily helping and improving development experience.
Here are some ideas that I think are worth pur…
-
I have the following DU which is composed of other DUs or/and Records.
```
type BiometricRules =
| Age of Comparator * AgeMeasure
| Glycemia of Comparator * BiometricMeasure
…
-
The following deprecation is thrown on a new Ember 2.18.0 Version. It seems some package needs to be updated.
DEPRECATION: An addon is trying to access project.nodeModulesPath. This is not a relia…
-
Hi,
I need to do a remote streaming call inside a local streaming process. It's a `concatMap` basically ... I wanted to use the servant streaming API for this but I need to handle the connection …
-
Say I have a hook of handlers with 1 argument returning 1 argument.
If would like to run the successive handlers of the result of the previous one.
Looking at the code of `run-hook` it does not seem…