Albert Bori
Albert Bori
When I push our website to the live server, or when the app pool restarts, I get the following error once. If the server restarts, and then comes up again,...
**Description** When I run the `codeowners-validator` executable, the following error is emitted: > [1] 83061 segmentation fault codeowners-validator Environment: - Terminal App - macOS Ventura 13.4.1 - Intel Chipset **Expected...
Subtracted the `scrollView.contentInset.top` value from the `viewHeight`, so that when this view is presented with a navigation bar, it doesn't calculate incorrect vertical margins.
When installing via Cocoapods: ``` source 'https://github.com/CocoaPods/Specs.git' platform :ios, '8.0' use_frameworks! pod 'GHMarkdownParser' ``` I get the following compile time errors: > /Users/me/dev/myapp-ios/Pods/GHMarkdownParser/discount/mkdio.h:6:14: Typedef redefinition with different types ('void' vs...
The following test causes infinite recursion: ```swift enum MockError: Error, AutomaticallyEquatable { case foo } XCTAssertEqual(MockError.foo, MockError.foo) ``` The above code is flawed because it is already equatable by the...