Tag: mac

Upgrading IronOS on MHP30 and Pinecil V2 on Mac

Both my IronOS devices were sitting at 2.22E for a while. Got some time and decided to get both of them to 2.23E. Done on a Mac M3 (Apple Silicon). Here is what worked for each one. MHP30 The MHP30 uses the same DFU drag-and-drop approach used on Miniware devices. To check the ve...

Moving window to a monitor and back on a Mac

Getting an open window from and to a monitor on mac, I have found two general options: 1. Three-finger swipe up, then move - but the window is not maximized on my Mac, it just ends up being somewhere on the given monitor, PITA 2. Hover cursor over the little green icon at the...

Programming Arduino pro mini with CH341A on Mac

I decided to write this guide, because there are a few details and nuances that I will probably forget soon and then I will have to rediscover them again. So lets get dirty! Arduino pro mini This device probably does not need too much introduction. Small, bare-bones ATmega 328P w...

Automatic remarkable backup script on mac

Automatic Remarkable2 backup on Mac This script backs up the data and its config from your Remarkable2 tablet to the repository once it is connected via USB, commits it and pushes to origin. Install Create a git repository with origin and with this script: ``bash #!/bin/bash BACK...

PHP test watcher for MacOS

I was successfully able to use my previous Laravel test watcher for a very long time, while I was on Linux. But now on Mac, it does not work, as mac does not support inotifywait. Mac does however support similar thing, called fswatch, install via Brew: ``bash brew install fswatch...

Downgrade package in brew

There are numerous guides for downgrading a Brew package but somehow, none that I tried I found to be particularly helpful, let alone working and straightforward. Thus I mixed and matched them together to build Yet another brew downgrade package guide™, that at least works for my...

Install pynvim via Homebrew

Note: This article is misleading. There is a more recent one which you should consider reading first. I decided to write down a bit of details about how I was able to install python requirements for neovim on Mac M3, because as it turns out, it is not as straightforward as doing...