❤️ HOLD YOU AROUND ME ❤️

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.

June 5, 2024

Bye Chrome

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,...

May 30, 2024

Hackintosh Sonoma 14.4 install loop issue

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.

April 3, 2024

Change Blog to Hugo and Vercel

Now pages on this blog are built with Hugo and deployed to Vercel.

April 2, 2024

Query all unregistered domains

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....

March 28, 2024