tomisacat

Results 11 comments of tomisacat

Use AVAssetExportSession is a more simple way, you just have to adjust `videoComposition` settings

You could set the target's optimization level to `Fastest, Smallest[-Os]` to simulate production environment and try to reproduce this problem. Mark breakpoints if needed.

@kobayashi-alec A simple workaround is to write a micro service to transport the payload from AppCenter to Slack without any modification.

Thanks @Mobterest ! I do implement just like your example but instead of catching `IsarUniqueViolationError `, I got `IsarError: Unique index violated.` The reproducible steps are: * use `@Index(unique: true)`...

Modify ACarouselViewModel: ```Swift private func dragEnded(_ value: DragGesture.Value) { .... let dragThreshold: CGFloat = itemWidth / 3 .... } ``` change `3` to a bigger value to make dragThreshold smaller.

➕1 ```sh $ pod plugins installed Installed CocoaPods Plugins: - cocoapods-browser : 0.1.5 - cocoapods-deintegrate : 1.0.4 - cocoapods-disable-podfile-validations : 0.1.1 - cocoapods-generate : 2.0.1 - cocoapods-imy-bin : 0.3.1.3 (pre_install...

If you're open to use [Ollama](https://github.com/ollama/ollama), you may check my GitHub Action as an alternative: [ai_code_review](https://github.com/tomisacat/ai_code_review)

Hi masong, I noticed that the commit message: " *InputHelper will support UIScrollView/UITableView And Autolayout. ". It's really a big surprise to support Autolayout! And can I ask to know...