Yi Ding

Results 46 comments of Yi Ding

After merging 2 pending PRs, it looks like all features are working as expected. For smaller numeric types (`short`, `int`, etc.), I `for`ed the entire range. For larger samples I...

I have used the library for a similar project. I don't have the exact code with me anymore but for your particular scenario, there are 2 ways to solve this:...

`LayoutManager`s already have a `reverseLayout` field/property to populate the `RecyclerView` from bottom. Is this what you're trying to achieve? You can sort your data and add items to the adapter...

Maybe use a template? I have one globally available on my machine for Swift Packages: ```yaml targetTemplates: SwiftPackage: type: framework platform: - iOS - macOS - tvOS - watchOS platformSuffix:...

`IPHONEOS_DEPLOYMENT_TARGET` is controlled by the `deploymentTarget` dictionary in XcodeGen spec. It can also be modified by other tools that interact with Xcode Project/Workspace, like CocoaPods. The reason for the warning...

AFAIK XcodeGen generates `xcodeproj`s but not `xcworkspace`s. Xcode Workspace referencing different projects is as simple as: ```xml ``` So you might as well just write this XML yourself (or check...

By "used for a Command Line Tool project", did you mean (1) to use XcodeGen to generate Xcode project and targets for a Command Line Tool (application), or (2) to...

For the first one, it’s weird if the build was indeed a Linux build. It should recognize Linux paths and do its thing. The second “bug” though… I wouldn’t really...

If you download again, Aria 2 should resume previous download as long as (1) the link, although different this time, points to the same file on the server, and (2)...

`CDBuilder` writes ISO-9660 filesystem which is fundamentally different than UDF. Blu-ray requires almost at least UDF revision 2.50 to be playable. There doesn't seem to be an UDF Writer implementation...