Norio Nomura

Results 27 issues of Norio Nomura

https://blog.github.com/changelog/2018-10-16-suggested-changes/ It seems to need creating Pull Request Review with comment that contains fenced code blocks with `suggestion` language identifier.

enhancement

Since `/usr/bin/which` rejects `-s` argument. Reproducing steps on Ubuntu with SwiftLint: ```terminal.sh-session $ docker run -it --rm norionomura/swiftlint:swift-4.2 bash root@5d3cc0804b2c:/# echo "echo swiftlint-test executed">/usr/bin/swiftlint-test root@5d3cc0804b2c:/# chmod +x /usr/bin/swiftlint-test root@5d3cc0804b2c:/# swiftlint...

On current implementation, information about Anchors(`&`) and Aliases(`*`) are lost while `compose()`. e.g.: ```swift import Foundation import Yams let node = try Yams.compose(yaml: """ aliases: - &steps-for-linux - checkout -...

See: https://github.com/apple/swift/pull/12779 How should `YAMLEncoder` options be? A. Rename `options` to `emitterOptions`, then add `keyEncodingStrategy` to `YAMLEncoder` B. Add `YAMLEncoder.options.keyEncodingStrategy`

enhancement

Safari 5.0.2 is not working with error. WebKit Nightly r68242 is not working with error. Chrome Extension is working. error on http://forums.dropbox.com/topic.php?id=24617&replies=84 > autopagerize.user.js:427 TypeError: Result of expression 'this.insertPoint.parentNode' [null]...

`exportAsynchronouslyWithCompletionHandler:`も`writeModifiedVideoAtPathToSavedPhotosAlbum:completionBlock:`もどちらもエラーを検出出来ないが、`writeModifiedVideoAtPathToSavedPhotosAlbum:completionBlock:`には`assetURL=nil`が渡される。 30fpsで撮影してx2.0で出力した動画は`nominalFrameRate`が60になるが`minFrameDuration`が5/600となるため、 ``` if (CMTimeCompare(outputDuration, CMTimeMake(1, 120)) < 0) { outputDuration = CMTimeMake(1, 120); ``` が真となり、`videoComposition.frameDuration`がおかしくなるのが原因か?

Host provisioning scripts are executed every time before starting the instance. - the working directory is the instance directory `{{.Dir}}` - the `runtime.GOOS` is used to determine the host OS....

enhancement

e.g. https://github.com/nst/iOS-Runtime-Headers/blob/master/Frameworks/AVFoundation.framework/AVAsset.h#L15 ``` @property(readonly) struct CGSize { float x1; float x2; } naturalSize; ``` https://github.com/nst/iOS-Runtime-Headers/blob/8.0/Frameworks/AVFoundation.framework/AVAsset.h#L15 ``` @property(readonly) struct CGSize { double x1; double x2; } naturalSize; ``` Has the generating...