Create Ramdisk on MacOS

ramdisk.sh: This script creates a ramdisk with the first parameter taken as gigabytes. So runnning ./ramdisk.sh 16 will create a disk with 16 gigabytes and it will be named “ramdisk-16gb” and accessible via /Volumes/ramdisk-16gb. It will show up in finder as mounted volume. To get rid of it simply unmount it with the small icon […]

Create Ramdisk on MacOS Read More »

Sudo Timeout on MacOS

I’m using homebrew and its casks a lot to install software on my MacBook. This way I’m using a custom script comparable to a simple apt update && apt dist-upgrade on a Linux sysmtem. My update script looks like the following: Running this keeps most of my system up to date. I only have a

Sudo Timeout on MacOS Read More »

Fix blackhole-2ch on MacOS – Could not kickstart service “com.apple.audio.coreaudiod”: 1: Operation not permitted

Recently I received this error while upgrading or uninstalling blackhole-2ch via brew: Could not kickstart service “com.apple.audio.coreaudiod”: 1: Operation not permitted This was fixed by the following: Another option seems to be to fix the issue with kickstart as described here. But I didn’t try that.

Fix blackhole-2ch on MacOS – Could not kickstart service “com.apple.audio.coreaudiod”: 1: Operation not permitted Read More »

How to Replace Spring Dependency Management Gradle Plugin with a Version Catalog

Are you looking for a cleaner alternative to managing dependencies in your Spring projects? While the Spring Dependency Management Gradle Plugin offers convenience, it may sometimes lead to issues such as transitive dependency conflicts. Enter the version catalog—a more streamlined solution. Let’s dive into how you can replace the Spring Dependency Management Gradle Plugin with

How to Replace Spring Dependency Management Gradle Plugin with a Version Catalog Read More »