Tips How to remove known ssh host? There are multiple option to remove a known ssh host from the known_hosts file. 1. Use the ssh-keygen command This is the easiest and safest method to remove the known ssh host form known_hosts file. Run the following command by replacing the <hostname_or_ip> with...
iOS How to get a unique device identifier in iOS devices? As you might be aware, Apple puts lots of restrictions on unique identifiers because of privacy concerns. But in this article, we will look at some of the available options which can use to uniquely identify Apple (iOS, tvOS, and macOS) devices. 1. Store unique device identifier in KeyChain We...
Apple TV Setup Apple TV for Charles Proxy (HTTP Proxy) Charles Proxy enables the user to view HTTP, HTTPS, and HTTP/2 and enabled TCP port traffic accessed from, to, or via the local computer. This guide will help to proxy HTTP traffic from your Apple TV to Charles Proxy....
Downloads Download and Install Code Blocks C and C++ IDE on macOS Code Blocks is a free and cross platform IDE for C, C++ and Fortran. Code Blocks. You can install Code Blocks in any version of macOS like macOS 10.15 (aka macOS Catalina) or macOS 11.0 (aka macOS Big Sur). Due to lack of Mac developers, Code Blocks version...
Tips Xcode 11.5 crash on launch on macOS 11 Big Sur This is a known issues. Xcode versions prior to Xcode 11.5 crash on launch on macOS 11. Curretly there is one workaround for this. You've to run the following command in the Terminal app to avoid crashes when starting Xcode: defaults write com.apple.dt.Xcode DVTDisableMainThreadChecker...
Xcode How to use Simulator in full-screen mode with Xcode? Being able to run Xcode and iOS simulator together in full screen mode is probably my favorite feature of Xcode 9. You can just execute the following command in the terminal to enable this feature: defaults write com.apple.iphonesimulator AllowFullscreenMode -bool YES...
Xcode How to Track total 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...
Xcode What's new in Xcode 10? [Updated for 10.1, 10.2 and 10.3] Xcode is the complete developer toolset used to create apps for Apple TV, Apple Watch, iPad, iPhone, and Mac. The Xcode development environment bundles the Instruments analysis tool, Simulator, and the OS frameworks in the form of tvOS SDKs, watchOS SDKs, iOS SDKs, and macOS SDK. * Jump to "What&...
AppStore How to make your new apps available for pre-order on the App Store on all Apple Platforms Apple has announced that all developers can now offer their applications for pre-order via the App Store. Before releasing your app on the App Store for the first time, you can choose to offer it as a pre-order. Customers can see your product page and order your app before it&...
Apple Apple macOS and iOS XNU kernel source code is now available on GitHub About XNU Kernel XNU kernel is part of the Darwin operating system for use in OS X and iOS operating systems. XNU is an acronym for XNU is Not Unix. XNU is a hybrid kernel combining the Mach kernel developed at Carnegie Mellon University with components from FreeBSD and C+...