Chris Trinh
Chris Trinh
@xaiki: yup no worries about the time it'll take. I got other PRs bug/suggestions to make :)
In my PR (https://github.com/popcorn-official/popcorn-desktop/pull/474) I was able to fork a process and start up webtorrent there. I think instead of https://github.com/butterproject/butter-desktop/blob/master/src/app/lib/streamer.js#L285 resolving a url, the message passed back to the...
I was able to make a branch that did the following: 1. Fork a process to run a Webtorrent Client. 2. Message broker class that did the message passing between...
FYI: In android you probably want to leave this: ``` let hoveringIndex = this.order[this.state.hovering] || this.state.hovering; ``` or the drag item's Row will collapse to a height of 0.01 causing...
@nihgwu: i haven't validated it for iOS hence the lack of the PR. Just wanted to inform everyone about this. Not sure if everyone would like a Platform guard here....
Has this been merged?
@johnnyshields I'm a bit confused, how does one use `--fork` and have the process in the foreground with `--pools`? The forking code checks for `worker_count > 1` https://github.com/collectiveidea/delayed_job/blob/dfa5561b0f220f0eb08104aee0aec876047ffa86/lib/delayed/launcher/forking.rb#L13 before it...
@johnnyshields I ended up going a different way. I changed the binstub by appending `loop {}` to keep the main process running in the foreground and added some Signal traps...