Joël Charles

Results 32 issues of Joël Charles

![image](https://cloud.githubusercontent.com/assets/1098371/18836421/48b6bb1a-8400-11e6-98a5-d309683bf58c.png)

enhancement
libquassel

![image](https://cloud.githubusercontent.com/assets/1098371/13245007/5284f5f8-da0a-11e5-8697-6c52c4bf4630.png)

enhancement

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`...

feature request
help wanted

`/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...

help wanted
good first issue

## 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)...

enhancement

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...