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…
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…
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…