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,…
Using GitHub Copilot Coding Agent in the GitHub web UI
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…
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…
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…
Set the owner of directories and files recursively
If your user account cannot access certain folders or files, you can recursively set the owner.
Creating a mono repo for multiple applications
If you are planning to develop multiple applications working together, using the same technology, it is advantageous to place all of them in the same Git repository. This way you can use relative paths to refer to shared functions to access the same…
Download a Figma Make to your local computer and run it locally as an application
Figma make can generate web applications with AI assistance. To download and run the generated web application on your local computer
Finding unidentified processes in WSL
If an unidentified process is generating a web site Try to load it in an incognito / Private windowOpen http://localhost:PORT/... in a brand new private window. curl test In a Windows or in WSL: Who owns the port In a Windows PowerShell window with Admin…
Install pnpm
pnpm is a Node Package Manager and Node Version Manager to install and manage multiple Node.js version and a central repository of node modules First uninstall nvm Node.js On Windows Uninstall Node.js in Settings/ Apps / Installed Apps Install pnpm Open…
Creating a new React Router application
Prerequisites Install the development tools Visual Studio Code pnpm See Install pnpm Create the new application To create a new React Router web application create a directory for the project and open a terminal and execute If you want to create the Git…