- Open Automator
- Create a new document
- Select Quick Action
- Set “Service receives selected” to
files or foldersinany application - Add a
Run Shell Scriptaction- your default shell should already be selected, otherwise use
/bin/zshfor macOS 10.15 (”Catalina”) or later - older versions of macOS use
/bin/bash
- your default shell should already be selected, otherwise use
- if you're using something else, you probably know what to do 😉
Getting local Portfile repository for MacPorts running is difficult, if not annoying. The documentation doesn't provide much help or, worse, is even outdated. Hopefully, the following steps will help avoiding the problem I had.
-
Download and run the MacPorts installer
-
Unlike specified in the documentation, the installer did not add
/opt/local/binto myPATHenvironmental variable. However, since I don't use the default macOS shell, the problem might actually be on my end.
Common aliases for the scoop package manager
# Install app
scoop alias add i 'scoop install $args[0]' 'Install app'
scoop alias add add 'scoop install $args[0]' 'Install app'
# Uninstall app
scoop alias add rm 'scoop uninstall $args[0]' 'Uninstall an app'
scoop alias add remove 'scoop uninstall $args[0]' 'Uninstall an app'- Install fish via Brew
- Optionally install Oh My Fish!
- Add fish to known shells
- Set default shell to fish
brew install fish
curl -L https://get.oh-my.fish | fishWhen trying to reinstall Nix using the official installer, you might run into the following error (the UID might vary)
---- oh no! --------------------------------------------------------------------
It seems the build group nixbld already exists, but
with the UID 30000. This script can't really handle
that right now, so I'm going to give up.
You can export NIX_BUILD_GROUP_ID=30000 and re-run.
Note
If you followed this guide before, you might want to scroll all the way down to the TL;DR version of this guide
Somehow, I managed to ”brick“ my Mac mini (2018, Intel) when I wiped its data before selling it online. From then on I could no longer:
- boot the normal Recovery Mode
- re-install macOS using an USB stick
- use the online Recovery Mode, since it always ended up in a error
-1008F
These steps should have been mentioned in the prerequisites of the Laravel Installation Guide, since I'm surely not the only person trying to get Laravel running on macOS.
Install Mcrypt using Homebrew and PECL (comes with PHP)
# PHP 7.3If you're like me, you want to install the Playdate SDK using a package manager. Below are some options for you.
Info Did I miss anything? Please comment below!