Check Sha256Sum on Windows 11 PowerShell
certutil -hashfile "C:\Users\phane\OneDrive\Desktop\neon-user-20240412-1535.iso" SHA256| open source.csv | to json | save "./dest.json" |
| const { fn } = require("./async-err-lib.cjs"); | |
| (async () => { | |
| await fn(); | |
| })(); |
Check Sha256Sum on Windows 11 PowerShell
certutil -hashfile "C:\Users\phane\OneDrive\Desktop\neon-user-20240412-1535.iso" SHA256| { | |
| // ... | |
| "exports": { | |
| ".": { | |
| "import": "./dist/main.mjs", | |
| "require": "./dist/main.cjs" | |
| }, | |
| "./style.css": { | |
| "import": "./dist/style.css", | |
| "require": "./dist/style.css" |
| #!/usr/bin/env bash | |
| set -eu | |
| DIRNAME="$(realpath "$(dirname -- "${BASH_SOURCE[0]}")")" | |
| PROJECT_ROOT="$(realpath "${DIRNAME}/..")" |
| /* | |
| * Deprecated: Use import.meta.dirname instead. | |
| * https://nodejs.org/api/esm.html#importmetadirname | |
| */ | |
| import { fileURLToPath } from "node:url"; | |
| const __filename = fileURLToPath(import.meta.url); | |
| const __dirname = fileURLToPath(new URL(".", import.meta.url)); |
sudo pkcon refresh
sudo pkcon update
# libappindicator3-1 is for Dropbox: https://help.dropbox.com/installs/dropbox-desktop-app-for-linux#Required-software-libraries
# uvccapture and guvcview are required for online meeting software such as Zoom
sudo apt install --ignore-missing \
curl wget \| docker run --rm -it -p 4000:80 -v /path/to/siteroot:/var/www/html php:apache-buster |
MySQL:
CREATE DATABASE dbname CHARACTER SET utf8mb4 COLLATE utf8mb4_bin;
CREATE USER 'username'@'localhost' IDENTIFIED BY 'password';
GRANT ALL PRIVILEGES ON dbname.* to username@localhost;