❤️ HOLD YOU AROUND ME ❤️

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