Convert HEIC Images to JPEG with macOS

The reference post can quickly help you create an Automator workflow to convert HEIC images to JPEG. Reference How to Create a Mac Quick Action to Convert HEIC to JPG

December 21, 2022 · 1 min · 30 words · Eric

Configure Java Environment on macOS Big Sur

Starting from macOS Big Sur (ver. 11.2.3), macOS doesn’t include pre-installed Java any more, the best option is to install AdoptOpenJDK . You can download the OpenJDK pkg binary and install it manually like here , or install AdoptOpenJDK via brew in your favourite terminal: 1 brew install --cask adoptopenjdk Hope it helps. Reference wolfpaulus.com: Installing Java on macOS 11 Big Sur github.com/AdoptOpenJDK: AdoptOpenJDK - HomeBrew TAP

April 7, 2021 · 1 min · 67 words · Eric

Uninstall Anaconda on macOS

Sometimes you need to re-config your local Anaconda environment, and need to uninstall Anaconda distribution completely. Automatic Uninstallation Step 1 Install the anaconda-clean package 1 conda install anaconda-clean Step 2 Clean your environment The anaconda-clean command will remove all Anaconda-related files and directories with a confirmation prompt before deleting each one. The --yes argument will help you to skip all confirmation and will remove all these files files and directories without confirmation....

October 10, 2020 · 1 min · 178 words · Eric

Mac Developer Environment Setup

example setup 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 ######### BASIC ######### # brew /usr/bin/ruby -e "$(curl -fsSL https://raw....

March 26, 2019 · 2 min · 389 words · Eric

Homebrew on macOS

Brew Install 1 /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" Housekeeping with Homebrew 1 brew update && brew upgrade && brew doctor && brew autoremove && brew cleanup Reference Install Guide: Housekeeping with Homebrew

June 4, 2017 · 1 min · 32 words · Eric