Skip to content

Instantly share code, notes, and snippets.

@squidarth
squidarth / blokus_problem.md
Last active July 8, 2018 20:07
Description of the "Blockus" Problem

The Problem

Blokus is a fun game that involves placing different size/shape/color pieces on a board.

The pieces look like this:

img_9384

img_2166

@squidarth
squidarth / unmute_applescript
Last active February 20, 2025 03:07
Script for opening window and unmuting Google Meet
-- Zoom Version
on run
tell application "zoom.us"
activate
tell application "System Events" to tell process "zoom.us" to keystroke "a" using {shift down, command down} -- Mute/Unmute command in Zoom
end tell
end run
-- Google Meet Version