Wiki Syncthing .stignore Examples: Ignore Files by Extension, Folder & Pattern Type Syncthing uses .stignore files (similar to .gitignore) to exclude files and folders from synchronisation. Place the .stignore file in the root of your synced folder. 1. Basic Syntax * * - Matches any sequence of characters (except /) * ** - Matches any sequence of characters (including /) * ? - Matches any single character * ! - Inversion of...
iOS Best iOS Development Tips and Tricks - Part 3 1. Clean iOS app launch screen cache You might have noticed when you tried to change something in the launch screen on the iOS application, you still see the old launch screen. Because the system caches launch images and it's not cleared even after deleting the application. For...
iOS Best iOS Development Tips and Tricks - Part 2 1. Open Terminal for current Project using Xcode Keyboard Shortcut Do you know, you can open Terminal from Xcode at the project's path with a custom keyboard shortcut? First, Create a new script file in your project root directory with following command - #!/bin/sh open -a Terminal...
iOS Best iOS Development Tips and Tricks 1. Track build time in Xcode If you don't know the exact build time of your project, enable the following option in Xcode. defaults write com.apple.dt.Xcode ShowBuildOperationDuration -bool YES 2. Improve your Swift project build time The Xcode 9.2 release notes mentioned an experimental...