Convert HEIC images to JPEG on Mac

Convert HEIC images to JPEG on Mac

for f in *.HEIC do sips -s format jpeg "${f}" -Z 3000 --out "${f%.*}.jpg" done
read more
Install JDK on macOS 10.7+

Install JDK on macOS 10.7+

Requirements: Homebrew 1. Install your favorite JDK version brew tap adoptopenjdk/openjdk brew install --cask adoptopenjdk8 brew install --cask adoptopenjdk9 brew install --cask adoptopenjdk10 brew install --cask adoptopenjdk11 brew install --cask adoptopenjdk...
read more
Docker for Mac: Limit memory allocation

Docker for Mac: Limit memory allocation

The Docker for mac GUI does not allow to configure less than 1GiB as allocated memory. In some cases you might want to configre a lower value, especially when you are limited to available RAM. You can set any value...
read more
Fix ^ and < swapped keys in macOS

Fix ^ and < swapped keys in macOS

1) Delete /Library/Preferences/com.apple.keyboardtype.plist 2) Reboot 3) For MacOS Monterey or newer, you must then open Settings -> Keyboard -> “Change Keyboard Type” and then identify your keyboard
read more
MacOS Terminal colored output

MacOS Terminal colored output

Add to your .bash_profile: export CLICOLOR=1
read more