How to show total directory size of directories in current directory:
$ du --max-depth=1 -h ./
47M ./foo
2.0M ./bar
6.6G ./hoge
4.0K ./fuga| dropbox start | |
| while [[ $(dropbox status) != "Up to date" ]]; do | |
| sudo echo $(dropbox status) | |
| sleep 120 | |
| done && sudo shutdown now |
| /** | |
| * Assert if objects are equal. This function also considers `not` | |
| * @return true if obj1 and obj2 are equal, otherwise false | |
| */ | |
| function _objEquals(obj1, obj2) { | |
| const keys1 = obj1.getOwnPropertyNames().sort(sortByCharCode), | |
| keys2 = obj2.getOwnPropertyNames().sort(sortByCharCode), | |
| sortByCharCode = function(key1, key2) { | |
| if (key1 < key2) { | |
| return -1; |
How to show total directory size of directories in current directory:
$ du --max-depth=1 -h ./
47M ./foo
2.0M ./bar
6.6G ./hoge
4.0K ./fugaMySQL:
CREATE DATABASE dbname CHARACTER SET utf8mb4 COLLATE utf8mb4_bin;
CREATE USER 'username'@'localhost' IDENTIFIED BY 'password';
GRANT ALL PRIVILEGES ON dbname.* to username@localhost;| { | |
| // ... | |
| "exports": { | |
| ".": { | |
| "import": "./dist/main.mjs", | |
| "require": "./dist/main.cjs" | |
| }, | |
| "./style.css": { | |
| "import": "./dist/style.css", | |
| "require": "./dist/style.css" |
| docker run --rm -it -p 4000:80 -v /path/to/siteroot:/var/www/html php:apache-buster |
Check Sha256Sum on Windows 11 PowerShell
certutil -hashfile "C:\Users\phane\OneDrive\Desktop\neon-user-20240412-1535.iso" SHA256| const { fn } = require("./async-err-lib.cjs"); | |
| (async () => { | |
| await fn(); | |
| })(); |
| #!/usr/bin/env bash | |
| set -eu | |
| DIRNAME="$(realpath "$(dirname -- "${BASH_SOURCE[0]}")")" | |
| PROJECT_ROOT="$(realpath "${DIRNAME}/..")" |
| docker rm --force $(docker ps --all --quiet); docker rmi --force $(docker images --all --quiet); docker volume rm $(docker volume ls --quiet) |