milahu
milahu
> A simple workaround which solves the issue for me is to set the channel in volumeicon to PCM yes, this works at first sight. the problem is, when i...
> Maybe this is related to rate limiting maybe ask github to extend their API? so the "fork overview" includes the fork status (ahead, behind, same) maybe use [v4 API](https://developer.github.com/v4/)...
> Even with v4 and authentication you can get ~500 forks per hour due to limitations. in v4 we get 100 forks per query including the fields * commits count...
using v3 API we can reduce the number of forks [and follow-up queries] by comparing `fork.created_at` and `fork.pushed_at` when `pushed_at < created_at` then the fork is "empty" and can be...
no progress. the github v4 graphql api is not ideal for this scenario cos .... the fields ahead/behind are not served in the repo metadata, and must be calculated from...
graphQL can also get fork commits, see [here](https://github.com/techgaun/active-forks/pull/30#issuecomment-568799375) so we can get ahead/behind status of forks with just one query and even more fancy stuff like plotting a commit graph...
> Was there a more specific issue you were having with passing in html? in my case, i need character-exact html translations with google's free API so i ended up...
> It looks like cargo-web is trying to use Emscripten's fastcomp backend yepp https://github.com/koute/cargo-web/blob/2ddd9bbb567b8d4893e923cba8ad03806d383d80/src/emscripten.rs#L14 ``` $ emsdk list --old | grep 1.38.19 sdk-fastcomp-tag-1.38.19-64bit emscripten-1.38.19 ``` > recent versions of Rust...
found it: `cargo web build --use-system-emscripten` ``` $ cargo web start --help | grep system --use-system-emscripten Won't try to download Emscripten; will always use the system one $ cargo web...
> I hope I will have time to eventually make them disappear from #154: > These errors are normal (somehow...) and unavoidable (we could hide them but it may cause...