If your user account cannot access certain folders or files, you can recursively set the owner.
Category Archives: Not for home page
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 database, React components, and images to make the pages look consistent. As …
Continue reading “Creating a mono repo for multiple applications”
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 rights: In a Windows PowerShell window with Admin rights: In …
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 a PowerShell terminal and execute IMPORTANT: Close and re-open all terminals and Visual Studio …
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 repository on a higher level, answer NO to the Initialize a new …
Managing passwords in Windows Susbsystem for Linux (WSL)
To change the Linux password To change your Linux password, in the Linux terminal execute You will be asked for the current password and the new password. If you forgot the Linux password If you forgot your Linux password, you can reset it from Windows.
Installing the Windows Subsystem for Linux (WSL)
WSL enables Windows computers to concurrently run Windows and Linux at the same time. Modern software development and deployment usually depends on Linux tools and commands. To be able to run a Linux container on a Windows workstation, we need the availability of the Linux Kernel. To install Windows Subsystem for Linux (WSL) To use …
Continue reading “Installing the Windows Subsystem for Linux (WSL)”
Microsoft Azure Pipelines
Azure pipelines support the CI/CD (Continuous Integration, Continuous Deployment), the fully automated Continuous Delivery process. Agents, either hosted by Microsoft, or self-hosted on the client’s infrastructure, execute the yaml scripts. Steps The smallest unit of work in the Azure Pipeline. Each step is one action in a job. A Step can be a Script or …
DevOps Workflow
DevOps is the combination of two areas of information technology: Development and Operations. DevOps engineers work very closely with software developers and operation engineers to fully automate the creation and configuration of the cloud infrastructure and the build, testing and deployment of the applications. The best DevOps engineers come from software development and have a …