James Hughes
James Hughes
I'm also seeing this on `xcode-install (2.4.4)`, trying to install 10 beta 6.
The issue is with the regex here: https://github.com/KrauseFx/xcode-install/blob/master/lib/xcode/install.rb#L97 ``` matched = progress_content.match(/^\s*(\d+)/) ``` `progress_content` is something like ``` "######################################################################## 100.0%" ``` The regex does not match that because of the...
+1 Seems kind of critical to staying relevant in the mobile-first world.
@anthonator I'd urge you to actually a look at this pull request. It seems like you saw "OAuth 2" and imagined something else. This pull request is fundamentally about adding...
I ran into this the other day with a snippet like this: ``` let numConcurrentRequests = 1000 DispatchQueue.concurrentPerform(iterations: numConcurrentRequests) { index in queuedRequestRetrier.should(retry: requests[index], with: MockRequestError.anError) { (shouldRetry, _) in...
> This sounds to me like a problem between the chair and the keyboard. Very much so. I'm just trying to code around the problems I _can_ solve. +1 for...
I opened a [PR](https://github.com/heartcombo/simple_form/pull/1830) for this. It's not a breaking change, but it's definitely a change to the default behavior since the generated [default wrapper](https://github.com/heartcombo/simple_form/blob/main/lib/generators/simple_form/templates/config/initializers/simple_form.rb#L26) is using the `html5` component.
It would probably build if you can find, download, and install the 10.6 SDK. Sorry, I can't be much help here. I've rolled other solutions using openCV's VideoWriter and also...
Hey Joe, I'm afraid I've been stymied trying to put together some sample code for this one. I don't have the 10.6 SDK on my current machine. I'll see if...
Apologies for the slow response, I'm out of town. I'm not exactly sure what's going on here, but I suspect it's a threading issue. finishMovie() is probably asynchronous - especially...