Joël Charles
Joël Charles


I would want to do something like this: ```ts const myMap = new Map(...); const iterator: IterableIterator = myMap.values(); const first = R.pipe( iterator, R.first ); ``` Problem is `R.first`...
`/download` on linux could download `AppImage` file if there is one available, as it should work on any distrib.
Sometimes on windows (but probably on linux/mac also with `ps`), I'm having `wmic` process appearing in my process tree, but I would like to be able to have an option...
## Is your feature request related to a problem? Please describe. I would like to be able to retrieve the news of an app, like we have on [this page](https://store.steampowered.com/news/app/1593500?updates=true&emclan=103582791470900898&emgid=3209389059277056821)...
I have the following selectors.js file ```javascript export const isUpdateAvailable = state => state.getIn(['auto_update', 'updateAvailable']); ``` When I try to import it `import { isUpdateAvailable } from 'selectors'`, electron (in...
As far as I understand how this works, each renderer is responsible for generating its own state diff and send it to main. Now an example: Here is the main...