Water required error message in Cities: Skylines
When we try to create an outside ship connection and the waterway is not deep enough, we get the Water required error message. To be able to create the outside ship connection, temporarily raise the sea level. It will flood your map, but after creating…
Tunnels and canals are buried in the Cities: Skylines editor
Cities: Skylines only fully renders the unlocked tiles. Locked (not yet purchased) tiles and all tiles in the editor are not fully rendered to save processor power. When you create a tunnel entrance or a canal, it is buried under earth. Subscribe to the…
Cronometer cannot connect to Strava
Cronometer is an app to record food you eat and get a report on the consumed calories and nutrients. It can automatically retrieve exercise information from Strava to calculate the burned calories. For some reason recently we cannot connect to Strava…
Create a Next.js React web site
Next.js is a framework based on React to build a “full stack” dynamic web application with routing and data handling capability. React provides the page components on top of HTML and JavaScript, Next.js routes between pages, and displays and…
Create a React web site
The React framework adds components on top of HTML and JavaScript to create dynamic one-page web applications. It does not have routing and data handling capabilities, to create a full stack web application use Next.js or Remix. Configure the development…
Using GitHub Copilot on the workstation
GitHub Copilot is a ChatGPT based AI pair programmer extension for Visual Studio Code, Visual Studio, JetBrains IDE, and Neovim. It is most effective in Python, JavaScript, TypeScript, Ruby, Go, C# and C++. Installation GitHub Copilot has personal and…
Kerbal Space Program 2 configuration
Settings file The game settings file is located at C:\Users\YOUR_USER_NAME\AppData\LocalLow\Intercept Games\Kerbal Space Program 2\Global\Settings.json Mods Mods make using KSP 2 a better experience. Modders can create functionality faster than the…
The clicking area of the object in Phaser does not cover the entire image
When Phaser constructs the input area of an object where the user’s click will trigger the action, it tries to read the dimensions of the image. It usually works, but in some cases the area does not cover the entire image. To display the input area…
Error: EACCES: permission denied, open …
When Node.js libraries cannot open files on the local disk, the file does not exist at the specified location, or the file or folder permission are not correct. To check the permission of the file see Get the octal file permission number of a file or…
Get the octal file permission number of a file or directory
The chmod command sets the file permission to an octal number. To see the current value On macOS On GNU Linux