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 “Common Ground” mod to fully render any number of tiles you …

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 from the Cronometer app. To successfully connect Cronometer to Strava to get exercise information:

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 modifies the data in a database. Configure the development environment Create the Next.js web application Create …

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 environment Create the React web site skeleton Create the web site skeleton View the new …

Using GitHub Copilot

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 business subscription model. Start your free trial at https://github.com/features/copilot Ask for suggestions Select the suggestion See …

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 development team, as they only have to concentrate to their particular area. This also means, a game update can render a mod unusable until 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 add the enableDebug() function to your code.

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 directory If you get the error message related to …

Using the redis Docker container locally

To develop applications with the redis database we can use a Docker image. The documentation is at https://hub.docker.com/_/redis/ Set up the redis container to be accessed via localhost on the local computer Start the redis container Start the redis container “detached” ( -d ) in the background and expose it through localhost:6379 Check if the …