Fernando Via Canel
Fernando Via Canel
The reason I particularly like #280 is precisely because it effectively adds an extra feature that vanilla pattern matching does not have in other languages. The example that I know...
The interesting underlying topic is that there are many possible implementations of a certain algebra for a certain type, which is sometimes taken into account by calling a second possible...
We tested this in docker with Alpine linux. `echo` and `cowsay` print the unicode characters just fine, so the issue seems to be coming from `pokemonsay`. Great project btw, love...
`sed` sounds like a beautiful solution to me. No need for more if it works. :shipit:
Hi! I’m not entirely sure what the question is. If bitmapLayers are base64 jpgs or something like that then you can simply decode them and save then in a new...
Hi! Me and @pirelenito are trying to add this to [Sagui](https://github.com/saguijs/sagui) - you can see it in [PR 247](https://github.com/saguijs/sagui/pull/247) - and we are having the same issue (for every webpack...
I feel like the answer to this is not going to come from React Dream, but rather from [lada](https://github.com/batata-frita/lada)
Probably we need to move all this extra helpers to a separate package.
Wow. This is fantastic. I'll take a look as soon as possible.
For example, using this would look like: ```js const Header = props => {children} const Title = ({title}) => {title} export default compose( withChildren(({title}) => ({title})(Title) )(Header) const Subtitle =...