Categories
Mac Monitors Tech

Cheaper high resolution external ISP Monitor for Mac (retina like)

For a long time that I wanted to have a “retina” screen on my desktop but as I work from multiple locations (and needed to buy more than one monitor) I wanted a solution that was not expensive and where I could plug and play from a Macbook or Mac Mini.

I knew I needed to go 4K or 5K to get the crisp text and high resolution images but the cheaper monitors use TN or VA panels and those suck in terms of color accuracy, viewing angles and general brightness. So, I knew I had to go with ISP (or OLED but currently OLED monitors are rare and very expensive).

After multiple searches I decided that the LG 27UK850-W (ISP 27 inches 4K) monitor would be a good solution. It had good color accuracy (with some configuration), little distortion from different angles and USB-C that allowed for single cable setup with a MacBook (charge+image+passthrough for USB hub).

Still, this was not cheap and when I finally decided to buy a second monitor for another location, I went with the LG 27UL550-W (ISP 27 inches 4K). The panel is vey similar. The 550 loses some peak brightness, it also loses USB-C + the USB hub and it has “uglier” bezels but I don’t notice any difference in image quality from one to the other and it cost me almost 3 times less (in a promo).

I think that the LG 27UL550-W is a great value for money if you want a 4K display for productivity work.

Categories
Mac Tech

MacOS password prompt for Keychain access twice

I did a migration of Keychain items between Macs and MacOS was prompting me to type the password twice to authorise access.

To avoid this Apple suggest changing the password of the Keychain “login” (the problematic) and setting it back to the same password. This did fix it for me but the option to change password was greyed out on Keychain Access.

greyed out option to change Keychain password

So, I had to create a new Keychain (no matter the name this will be temporary), then setting this new keychain as the default and now I was able to change the password on the “login” keychain.

Then, I just set the “login” keychain back as the default and deleted the temporary one (references+files option on delete).

Categories
Mac Tech

Migrate Apple Keychain to a new Mac

I needed to migrate some passwords from Apple Keychain to a new Mac. In particular iTerm2 password manager, Coda/Transmit + Cyberduck passwords.

After doing a replace to ~/Library/Keychains/login.keychain-db with the old login.keychain-db file that destroyed my Apple ID. I found the solution on https://library.panic.com/general/keychain-migration/

What I ended up doing was copying the old login.keychain-db to ~/Library/Keychains/ but with a different name, eg: login2.keychain-db

Then entering the app Keychain Access and under File->Add Keychain selecting the copied file, eg: login2.keychain-db

Then I had all my old Keychain on my new Mac but I wanted to clean up.

So, I changed the password from my old Keychain by selecting it on the sidebar going to Edit->Change Password for Keychain “login2” (not sure if going to Edit is necessary but I have crossed something online that said it was). Then type the old password and leave the new password fields blank, press CMD and click to save. Mac will complain the passwords should not be blank but after insisting it worked.

Why I am removing the password, because to copy an item from the old Keychain to the new it is necessary to type the password one time for each item and I had many.

After I selected the passwords and made copy from the old Keychain and paste on the new. Still, necessary to confirm but clicking ok and leaving the password blank was easier.

Finally, I deleted the old (login2) by right-clicking (cmd+click) on the sidebar. I choose the ‘references + files’ option.

I did run into an issues where MacOS was prompting me twice for passwords to authorise access but I was able to solve it by doing this.

Categories
Mac

Random connectivity problems with Apple Magic Mouse

I had random connectivity problems with Magic Mouse. The problem was present both with the old Magic Mouse and the new Magic Mouse 2.

After trying all sorts of solutions that I found online, nothing worked but I found several mentions of interference with WIFI 2.4GHz. It didn’t make much sense in my head since Magic Mouse uses Bluetooth but in fact changing to a network using WIFI 5GHz solved the problem.

To check the WIFI details on MacOS press alt/option while you click the WIFI icon on the Menu Bar.

Categories
Docker

Debugging docker-compose without image rebuild

In the docker-compose.yml add to volumes: the file you want to change

volumes:
- ./filetodebug:/internal/full/path/filetodebug

Create a copy of filetodebug in the same directory as the docker-compose.yml and do the changes there.

Then to test, just

docker-compose down
docker-compose up -d