About the earlier mention of chrome writing a lot of SSD
At present, it seems that the Adblock Plus plug-in causes Chrome to continuously write to the SSD. After deleting this plug-in, the writing volume has returned to normal.
At present, it seems that the Adblock Plus plug-in causes Chrome to continuously write to the SSD. After deleting this plug-in, the writing volume has returned to normal.
Issue I have been using Chrome for more than ten years, but recently, some disgusting operations forced me to give up using it. I donβt usually turn off my computer, and I keep it on 24*365 all year round. Since November last year, the amount of hard disk writes on my Mac has inexplicably increased. By now, the amount of writes has reached 20T. I didnβt notice the reason before,...
When upgrading to 14.4 (or 14.4.1), the installation process will loop restart, causing the installation to fail. Solution: Disable WiFi and Bluetooth drivers, and re-enable them after the upgrade is complete. Modify the config.plist of OC, change Misc Security SecureBootModel to Disabled Reinstall.
Now pages on this blog are built with Hugo and deployed to Vercel.
A script to query all unregistered domains. Blow is a demo to query all 3 letter .me domain. You can modify it to your needs. 1#!/bin/bash 2DOMAIN=me # domain suffix 3LENGTH=3 # length of domain 4TIMEOUT="gtimeout 5" # timeout command, can be gtimeout or timeout or empty 5MATCH_STRING="Domain not found" # unregisterd string 6CHARS=(a b c d e f g h i j k l m n o p q r s t u v w x y z) 7# CHARS=(a b c d e f g h i j k l m n o p q r s t u v w x y z 0 1 2 3 4 5 6 7 8 9) 8# CHARS=(0 1 2 3 4 5 6 7 8 9) 9 10function find() { 11 if [[ $($TIMEOUT whois $1 | grep -i "$MATCH_STRING") ]]; then 12 echo $1 "available" 13 echo $1 >>$DOMAIN....