ABBR | Full | Usage | Link |
---|---|---|---|
TSG | Troubleshooting Guide | Documentation | |
LLT | Long Lived Token | Authentication & Authorisation | |
CA | Conditional Access | Authentication & Authorisation | |
CAE | Continuous Access Evaluation | Authentication & Authorisation | Microsoft Dev Doc |
NFR | Non Functional Requirements | Software Engineering | https://www.scaledagileframework.com/nonfunctional-requirements/ |
SSM | Smart Session Mgmt | Authentication & Authorisation |
Considering you are working on a bugfix that needs to be merged into a release branch
- Make sure your branch is merged into develop
- Keep the SHA for the above merge handy
- Make sure you have latest target release branch pull in your local system
ZCH seem to be the default shell for MacOs BigSur Terminals Which means that the old bash commands to beautify the terminal prompts are outdated. Here is a fresh new prompt for ZSH Terminal
Steps
touch ~/.zshrc
- copy and paste from line 10 of this file
- save the .zshrc file
- run
source ~/.zshrc
There are times, when working with larger teams at larger organizations, when you do not have complete control over the Apple Developer Account. And there is some process to get access to basic provisining instruments.
In such cases what usually happens is that you do not have privilages to modify Provisioning Profiles and Production Certificates.
You can, however, generate your certificate and submit it to the admin, they should add your certificate to all development provisioning profile.
At times, when provisioning Gods are angry and you don't have visibilty, you will want to be able to
- Download Development Provisioning profiles
- Inspect them
- See if your development certificate is added to it.
import UIKit
/// Protocol
protocol ClassOnlyprotocol: AnyObject {
var identifier: String {get}
var link: String {get }
}
protocol NormalProtocol{
This process requires you to create 2 git repositories.
-
pod-specs
repo 1.1 This repo holds the specs for all the private pods. 1.2 You only have to create this once per organization (assuming your private pods are limited to an organization) -
Library repo 2.1 This repo contains the code of the component/library that you need to reuse and import in other projects using
pod install
An initializer in
String
classString(5, radix: 2)
creates a string which is a binary representation of 5 as :101
But it will not give a padded version (for obvious and good reasons) like00000101
or00000000 00000101
which may be desirable in some cases