Pierre-David Bélanger

Results 38 comments of Pierre-David Bélanger

@Perni1984 , I know this is far from ideal, but if you need to, at least, test this feature, you can do so with [my docker build here](https://hub.docker.com/r/pierredavidbelanger/apisprout) for [the...

Since I am tagged, I will say something. I am not sure its a good idea to include `bits/stdc++`, I was told a couple of time that this is not...

From my point of view, it is not an improvement to - break public contract (the signature changed from `alg::BubbleSort(T[], int, int)` to `std::bubble(X*, int)`) - include unknown header so...

Since I am tagged, I will say something. This is not C++, it will not compile. I do not understand this PR.

In my app (built with parcel), when `internal$1.waitDOMContentLoaded` is called, `window.document.readyState` is equals to `'interactive'`, and `window.setImmediate` is `undefined`.

Here is my smelly workaround: ``` require('onsenui/css/onsenui-core.css'); require('onsenui/css/onsen-css-components.css'); window.setImmediate = window.setTimeout; const ons = require('onsenui/js/onsenui'); ```

@mike42 About the "Send DTMF inband", I have played with it a little; have a look at my last pull request https://github.com/eofster/Telephone/pull/69 You can also checkout my master branch at...

As a lazy person, I do not want to have to maintain `appcast.xml` after each release. So, I just made [a project to solve this exact problem](https://github.com/pierredavidbelanger/githubappcaster) for myself. Then...

From what I can see, my past self just added a way to register multiple checks, one of each kind (so zero or one HTTP, zero or one TTL, etc..)....

@PGWelch I like this approche! I will try this when I face the problem.