Maksym Prokopov personal blog
Idea is a something worth sharing

Install Ruby 3.1.4 on macOS

29.08.2023

In case ruby can’t find OpenSSL 3 headers, use this way.

brew install ruby-install
ruby-install ruby 3.1.4 -- --with-openssl-dir=$(brew --prefix openssl)

Applescript instantly open Zoom link from the iCal calendar

02.02.2020

This is really my little timesaver because you know, a lot of meetings happen when you work remotely.

Works best with Alfred 4 using mapped hotkey.

tell application "Calendar"
	tell calendar "maksym.prokopov@trilogy.com"
		set itemLocation to location of first event where its start date  (current date) + 10 * minutes and end date  (current date)
		if itemLocation contains "zoom.us" then tell application "Finder" to open location itemLocation
	end tell
end tell