Install the DevOps development tools on Windows

Chocolatey If you want to host Chocolatey packages internally install Chocolatey. See Install Chocolatey Store your username in an environment variable We will use it in the .kitchen.yml file of the Chef SDK. Virtual Box Download Virtual Box from https://www.virtualbox.org/wiki/Downloads and follow the instructions to install it. At the time of writing, this was the section where the …

Install software development tools on Windows

Text Editor Notepad ++ Install a good text editor. If you do not have a favorite, I recommend Notepad ++ Configure Notepad ++ Tab settings Visual Studio Code Configure Visual Studio Code Git For Git installation and configuration see Install Git on Windows JSON To automatically pretty print JSON responses in Chrome Make To install Make …

xcrun: error: invalid active developer path on macOS

Issue After a major macOS upgrade (currently to Ventura) the command line tools, including git, in the terminal windows (Terminal, iTerm) stop working. We get the error message xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools), missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun Cause The macOS terminals use the Xcode Command Line Tools to execute commands on the Mac. …

There is a double quote at the end of the value read from the .env file

Developers frequently use the .env file to store configuration values on the workstation. If the values contain sensitive data add the line to the .gitignore file to avoid committing the file into source control. If the value contains spaces, enclose it in double quotes Symptom Your application reads a double quote at the end of …

KSP2 Modding with SpaceWarp

Install SpaceWarp To install SpaceWarp you need the following tools installed on your computer Get SpaceWarp from GitHub Install the Python dependencies Build SpaceWarp Add references to the missing assemblies Rebuild the solution Using SpaceWarp You can also download SpaceWarp from https://spacedock.info/mod/3257/Space%20Warp Maybe needed to configure Visual Studio to work with Unity See https://learn.microsoft.com/en-us/visualstudio/gamedev/unity/get-started/getting-started-with-visual-studio-tools-for-unity?pivots=windows for …

Error: Route.post() requires a callback function but got a [object Undefined]

If you use the NodeJS Express server, you have just created a new route with the code like this and created a new function to handle the request, like and get the error message: …/node_modules/express/lib/router/route.js:211throw new Error(msg);^ Error: Route.post() requires a callback function but got a [object Undefined] make sure you export the new function …

Rover Construction in Kerbal Space Program

To construct a rover we need a base to attach the wheels, seats, and the power source. Structural plates We can start with structural plates, but we need to apply some tricks to attach them to each other. Stability assistance Even if the rover performs fine on Kerbin, the low gravity on the Mun will …

Installing ngrok

“ngrok is a simplified API-first ingress-as-a-service that adds connectivity,security, and observability to your apps with no code changes” Create a free ngrok account Sign up for a free ngrok account at https://ngrok.com/ Install ngrok Download the ngrok application from https://dashboard.ngrok.com/get-started/setup to the Downloads directory On macOS Create the ngrok folder in your user’s opt directorymkdir …