If you have created an Azure Resource Group, and want to change the name, unfortunately you cannot rename it. To change the name create a new resource group and move all resources from the old group to the new one. Create a new resource group Move the resources from the old resource group to the …
Category Archives: Not for home page
Deploy a web applcaition in Azure Container Apps (ACA)
To deploy an application to Azure Container Apps
Manage GitHub Copilot budget
The GitHub Copilot budget allows us to make sure we get the necessary premium assistance with a predictable price. AI agent usage is charged by the complexity of the request and response, so the charges are very unpredictable The $10 GitHub Copilot Pro subscription includes the free tier usage, that is may not enough if …
Creating Tailwind theme collections
Tailwind is a rapid web development tool to style user interfaces using English like expressions. It has advantages and disadvantages. Advantages Instead of complex CSS, use English like style class names to control all aspects of the web interface Disadvantages When we use CSS, we create classes to style similar elements, like submitButton, searchField. Tailwind …
Using React Router (Remix) with Material Tailwind components
Material UI is a great Google React UI component library. It looks great, provides consistent look for web applications, but it has two disadvantages: Material Tailwind is an opensource library recreating the consistent look of Material UI, but allowing Tailwind themes to control the look. To set a React Router (Remix) web application to use …
Continue reading “Using React Router (Remix) with Material Tailwind components”
React web application first page load is very slow
The React web application’s first page can load very slowly in development mode when SSR (Server Side Rendering) is enabled. There can be many causes, but there is one that can be eliminated easily. If the application uses Google’s Material UI library the loading of the more than 9000 icons can take a long time. …
Continue reading “React web application first page load is very slow”
Disable the Caps Lock key in Windows 11
To disable the Caps Lock key in Windows 11 you can edit the registry. DISCLAIMER: THIS CAN ALTER HOW YOUR KEYBOARD WORKS, DO IT AT YOUR OWN RISK!!!! For the original full instructions see Short of physically removing the caps-lock key from the keyboard, is there a way to disable CAPS LOCK? The details are …
Using GitHub Copilot Coding Agent
Copilot Coding Agent can work entirely online without you knowing anything about software development. To use it The agent will create a new branch and based on your description it will make code modifications. Once the agent completed the task, it will request a review Preparing the GitHub Copilot Coding Agent environment To make sure …
Working with Bitbucket
Install Atlassian SourceTree Install Atlassian SourceTree, the free Bitbucket UI from https://www.sourcetreeapp.com/ Configure Visual Studio Code Git extension The Git extension is a part of Visual Studio Code. If there is no Git executable installed on the system, set the portable Git executable installed by SourceTree. Open the C:\Users\YOUR_USER_NAME\AppData\Roaming\Code\User\settings.json and set Add Git to the …
Working with mono repos
Once the mono repo is configured, we can install dependencies and build applications from the top level using the filter. Install all dependencies Remove duplicate dependencies No -r option is necessary To remove the duplicates of a specific dependency To list all references of a dependency Typecheck all packages and applications Build all apps and …