Power BI Data Transformation QuizQUESTION 1 Which of these operations adds rows to an existing table? Ⓐ Group By. Ⓑ Pivoting. Ⓒ Merging queries. Ⓓ Appending queries. . QUESTION 2 When would you use a tool from the Transform tab over the Add Column tab? Ⓐ When you want to overwrite...Sep 14, 2024·4 min read·61
Laravel 10 REST API with Passport Authentication[1] Create Laravel Project Laravel v10.23.0 PHP v8.2 Project name=lara10passport [2] Add package laravel/passport. composer require laravel/passport [3] Migrate database. php artisan migrate Output example: [4] Install laravel/passport. php artisa...Sep 15, 2023·4 min read·20
Creating Local KeyCloak Test Server[1] Clone the Git Repository Prepare a base directory. cd ~ mkdir dockerkeycloaktest cd dockerkeycloaktest Git Clone. git clone https://github.com/mohamadrazzimy/localkeycloaktest.git The codes in the github repo https://github.com/mohamadrazzimy/l...Sep 12, 2023·2 min read·41
Testing The KeyCloak OpenID Connect— User Authentication and User Verification process Photo by Michal Dolnik on Unsplash This post continues from the previous post on KeyCloak Setup. Keycloak OpenID is an open-source Identity and Access Management (IAM) system that provides Single S...Sep 12, 2023·3 min read·94
Laravel 8 REST API with Passport Authentication[1] Create a project. Example: Laravel version=8 Project name=lara8passport [2] Add package laravel/passport. composer require laravel/passport Output example: The package laravel/passport is added to the composer.json file. [3] Migrate databas...Sep 12, 2023·5 min read·72
KeyCloak Docker VersionThe following steps are from the official guide: [1] Run docker command in PowerShell Window docker run -p 8080:8080 -e KEYCLOAK_ADMIN=admin -e KEYCLOAK_ADMIN_PASSWORD=admin quay.io/keycloak/keycloak:22.0.1 start-dev Output: Docker Desktop: [1.1] ...Sep 11, 2023·2 min read·30
Creating KeyCloak ClientIn the left panel, click Clients. In the main panel, click Create client button. Enter: Client type: OpenID Connect Client ID: myclient Click Next button. Confirm Standard Flow is selected. Click Next button. Enter Login settings: Valid redir...Sep 11, 2023·1 min read·28