Encountered exception: The request identified this synchronization job…

During Azure AD user on-demand provisioning you may encounter the error message: Encountered exception: The request identified this synchronization job: …. The request also identified this synchronization rule: . However, the job does not include the rule. To fix this issue click the Retry button at the bottom of the page.

This object does not have required entitlement for provisioning

Microsoft Azure Active Directory services provides authentication to your application. User provisioning may fails with this message: Result Skipped Description The User ‘…’ will be skipped due to the following reasons: 1) This object does not have required entitlement for provisioning. If you did not expect the object to be skipped, update provisioning scope to …

How to add your COVID-19 vaccination record to Apple Wallet

California maintains a state-wide database of COVID-19 vaccinations. Apple Wallet supports the digital vaccination records since iOS version 15.1 To add your COVID-19 digital vaccination record to your Apple Wallet On your phone or computer navigate to https://myvaccinerecord.cdph.ca.gov/ Enter your first and last name, date of birth, and the phone number or email address associated …

Integrate Anaconda into Pyenv

If you use Pyenv to install multiple Python versions side-by-side and installed Anaconda to create virtual environments for each of your projects, install pyenv-virtualenv to integrate them. Anaconda without the pyenv-virtualenv integration overwrites the PATH, and places itself to the front before pyenv would be able to handle the Python command calls. pyenv-virtualenv seamlessly combines …

Install multiple Python versions with Pyenv

Pyenv is a Python version manager. It is recommended, because it does not depend on Python, (written in Bash) and using it we can install and utilize multiple Python versions without affecting the Python version used by MacOS. The Pyenv source code is at https://github.com/pyenv/pyenv Install Pyenv We will use Homebrew to install Pyenv Install …

Use virtual environments with Anaconda

Anaconda (conda) can create a python bubble for you with no preinstalled packages. You can create a Python virtual environment for each of your projects to isolate them and only install the required packages. When we distribute our code, we should specify the list of referenced Python packages including their versions in the requirements.txt file. …

ERROR HMAC did not pass!!

The DocuSign Connect interface can send REST API requests to your HTTP listener using HMAC ( hash-based message authentication code ) security. This guarantees the integrity of the contents of the message: You generate a secret key in the DocuSign web UI, During the webhook call DocuSign generates the SHA-256 hash of the raw body …

Error: invalid SQS queue name

When you create anAWS FIFO SQS queue with Terraform, you may get the error message: Error: invalid queue name The name of an AWS FIFO SQS queue has to end with .fifo ( my-queue.fifo ) The name of any AWS SQS queue cannot be longer than 80 characters, and can only contain letters, numbers, dashes …

Kovászos Bagett és Batard

Szabadfi Szabolcs (Szabi) csoda finom bagett és batard készítését tanítja kovásszal. Hozzávalók Az előtésztához 2 dl langyos víz 50 g kovász 40 g BL 55-ös finomliszt 160 g BL 80-as kenyérliszt A dagasztáshoz: 2.1 dl langyos víz 50 g kovász 240 g BL 55-ös finomliszt 240 g BL 80-as kenyérliszt 1 teáskanál barna cukor 14 …

How to copy an image from Docker Hub to your Docker Registry

Some images on Docker Hub require the acknowledgement of the terms and conditions. This prevents CI/CD pipelines and other automated build systems to pull the image with the error message: error building image: GET https://index.docker.io/v2/store/…   : UNAUTHORIZED: authentication required; [map[Action:pull Class: Name:store/…  Type:repository]] To solve the problem, we can manually pull the image to our workstation, …