Category : Kiến thức lập trình

I’m facing an issue with my Continuous Deployment (CD) in Azure DevOps. In my CD pipeline YAML, I’m using multiple environments: one for non-production environment and the other for production environment. While the non-production environment works fine, when I try to trigger the production environment, which has certain approvals set up for the service connection and Azure DevOps environment, I’m encountering the following ..

Read more

func appleLogin(){ let nonce = String().randomNonceString() currentNonce = nonce let appleIDProvider = ASAuthorizationAppleIDProvider() let request = appleIDProvider.createRequest() request.requestedScopes = [.fullName, .email] request.nonce = String().sha256(nonce) let authorizationController = ASAuthorizationController(authorizationRequests: [request]) authorizationController.delegate = self authorizationController.presentationContextProvider = self authorizationController.performRequests() } func authorizationController(controller: ASAuthorizationController, didCompleteWithAuthorization authorization: ASAuthorization) { signupViewModel.appleLogin(authorization: authorization, currentNonce: currentNonce) { self.loginDidSucceed { UIApplication.shared.windows.first?.isUserInteractionEnabled = true self.signupViewModel.searchUID() ..

Read more

I’ve created a matrix in Power BI similar to the one below. The entries are a calculated field. I can sort the rows by the “Total” column and the “Name” column by clicking on the arrows that appear in the “Name” cell and the “Total” cell. However, there are no arrows for the columns “2021”, “2022”, and “2023”. Is there any way to sort by the columns “2021”, “2022”, and “..

Read more