Skip to content

Instantly share code, notes, and snippets.

Avatar

Uno unobatbayar

  • Japan
  • 04:43 (UTC +09:00)
View GitHub Profile
@unobatbayar
unobatbayar / stopcorespeechd.sh
Last active May 23, 2023 03:04
Stop corespeechd. This process runs even when dictation, voice commands, siri, etc are disabled. It seems you have to clean install your OS and never agree to terms of services.
View stopcorespeechd.sh
#!/bin/bash
while true
do
killall corespeechd
echo "running"
sleep .3
done
@unobatbayar
unobatbayar / encrypt.sh
Last active March 22, 2022 01:47
Encrypt files on Mac
View encrypt.sh
# Replace the output and file name
# Assuming you are in the same directory of the file to encrypt
zip -er OUTPUTNAME.zip FILENAME.txt
# You will be prompted to enter password for decryption