Error [ERR_PACKAGE_PATH_NOT_EXPORTED]: Package subpath ‘./format/index.js’ is not defined by “exports” in …

The date-fns and date-fns-tz Node.js packages are being updated, and version 3 has some bugs. When you try to use them in TypeScript you get the error message Currently, the only solution is the restrict the version to 2. In package.json add the lines In the terminal run Check the effect of the new settings …

Kerbal Space Program 2 For Science! notes

KSP 2 version 0.2.0.0, “For Science!” opens an entirely new type of game play. Now we can complete missions, do science experiments, collect Science Points and unlock new parts in the Research and Development Center. Recommended mods The Science Arkive mod lists all available experiments by celestial body, so check it before you launch. It …

ERROR: Could not install packages due to an OSError: [Errno 2] No such file or directory: ‘…/certifi

During the building of a Docker container for a Python application we may get the following error message ERROR: Could not install packages due to an OSError: [Errno 2] No such file or directory: ‘/private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_477u68wvzm/croot/certifi_1671487773341/work/certifi This is caused by an out of date path in the requirements file for “certifi”. To fix the issue

Scanning with Canon Maxify GX4020 all-in-one inkjet printer

To scan with the Canon Maxify GX4020 all-in-one inkjet printer Install the IJ Scan Utility Scanning with the IJ Scan Utility Start the IJ Scan Utility The IJ Scan Utility is located in the Canon Utilities folder of the Start Menu To use the preview function Troubleshooting You are trying to scan an image exceeding …

How to return multiple values from a TypeScript function

TypeScript (and JavaScript) functions can only return one value, but that value can be an object. To return multiple values from a function, we can return those in an object. There are two ways of returning an object from a TypeScript function: Create an object in the function, set the property values and return it …