See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
| sudo ln -sf /usr/share/zoneinfo/UTC /etc/localtime |
| /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HiServices.framework/Versions/A/Resources/cursors |
| /* open up chrome dev tools (Menu > More tools > Developer tools) | |
| * go to network tab, refresh the page, wait for images to load (on some sites you may have to scroll down to the images for them to start loading) | |
| * right click/ctrl click on any entry in the network log, select Copy > Copy All as HAR | |
| * open up JS console and enter: var har = [paste] | |
| * (pasting could take a while if there's a lot of requests) | |
| * paste the following JS code into the console | |
| * copy the output, paste into a text file | |
| * open up a terminal in same directory as text file, then: wget -i [that file] | |
| */ |
| @echo off | |
| echo *************************************************************** | |
| echo *************************************************************** | |
| echo *** This Script will stop Windows 10 Spying you...YEYYYY!!! *** | |
| echo *************************************************************** | |
| echo *** We will Disable Data Logging Services *** | |
| echo *** We will Configure Windows Explorer *** | |
| echo *** We will Uninstall OneDrive *** | |
| echo *** We will edit Hosts to stop sending Data to Microsoft *** | |
| echo *************************************************************** |
| // -------------------------------------------------------------------------------------------------------------------- | |
| // <copyright file="ContentExtensions.cs" company="Colours B.V."> | |
| // © Colours B.V. 2015 | |
| // </copyright> | |
| // <summary> | |
| // The content extensions. | |
| // </summary> | |
| // -------------------------------------------------------------------------------------------------------------------- | |
| namespace Project.Web.Core.Extensions |
The package that linked you here is now pure ESM. It cannot be require()'d from CommonJS.
This means you have the following choices:
import foo from 'foo' instead of const foo = require('foo') to import the package. You also need to put "type": "module" in your package.json and more. Follow the below guide.await import(…) from CommonJS instead of require(…).