"From now on my mind is the material with which I have to work, as the carpenter has his timbers, the shoemaker his hides; my business is to make the right use of my impressions." —Epictetus
A user found their existing, long-held Gmail account (e.g., example@gmail.com) inexplicably and seemingly inextricably linked to an unwanted Google Workspace account (e.g., user@example.com), the MX records for which had never even been set up.
Google support forums contain misleading and confusing advice. A Gold Product Expert claims that:
"A Google Workspace account is a free standing account that uses a business domain name for its email address. It has to be created independently from any gmail.com account."
"If you used your gmail account to sign up for a Google workspace Individual Account and if you cancel it then you will lose your gmail account as the gmail account will be permanent link to Google workspace Individual Account"
Cancel all your subscriptions and subscription data.
"With either cancellation option, you lose access to premium Google Workspace services, your Admin console, and any billing records right away. You still have access to some Google Workspace services, such as Gmail, Google Calendar, and Google Meet, as well as other Google services, such as YouTube, Google Photos, and Google Ads, through your personal Gmail address. Personal data associated with these services is retained."
A number of users (1, 2, 3, 4, 5, 6) report success with cancelling the Google Workspace subscription: Google Admin → ☰ menu → Billing → Subscriptions → click your subscription → More → Cancel Subscription.
The aforementioned user contacted Google Support for guidance. Rather than directing them to cancel the subscription, support walked them through a more circuitous route:
Create a new user (admin@example.com) and assign it the super admin role.
Remove the super admin role from the original account (user@example.com), then delete that user.
When prompted during deletion, transfer data to admin@example.com.
Data migration (~100 GB) took about 45 minutes; upon completion, a popup window entitled "YOUR TASKS" displayed "Removed example@gmail.com."
Signing in to example@gmail.com showed a message which read in part: "Your account has been removed from an organization: Your admin has converted your managed Google Account to a consumer account."
Email, contacts, and photos were intact in example@gmail.com. Google Drive files were not - they'd been transferred to admin@example.com; Google Takeout on that account was used to recover them.
Google Support should have instructed the user to back up via Google Takeout before beginning the migration, and perhaps should have skipped it entirely in favor of simply cancelling the Workspace subscription.
Enable Develop menu: Settings… → Advanced → check "Show features for web developers"
Press Cmd+Opt+I
Click "Elements" → right-click <html> tag → click "Capture Screenshot"
The feature is present as of Safari 11.1.2 in OS X 10.11.6 (missing in Safari 10.1.2/OS X 10.10.5): Preferences… → Advanced → enable "Show Develop menu in menu bar".
The world's dust
Swept aside
No care for the future—
In my hermitage I have all I need:
The wind in the pines.
Two scrolls (1, 2) attributed to Rengetsu have the original as:
世のちりを
よそにはらひて
ゆく末の
ちよをしめたる
やとの枩風
In modern Japanese:
世の塵を
余所に払いて
行く末の
千代を占めたる
宿の松風
The elided line, ゆく末のちよをしめたる (literally "go end <possessive particle> thousand ages <direct object marker> secure <classical past/perfect ending>"), resists idiomatic translation. It conveys the sense of securing prosperity or continuity for "a thousand ages"/forever.
Presenting from a laptop often means craning your neck to check what the audience sees. The following workflow creates a controlled presenter setup: selected apps launch maximized on the projector, the projector view is mirrored back to the MacBook with click-through support, and notes remain isolated on the laptop display.
1. Set the projector as an extended display
System Settings → Displays → select the projector/external display → Use as: Extended display
-- Auto-move and maximize QuickTime Player and Preview windows
-- on the first external display.
hs.window.animationDuration = 0
local wf = hs.window.filter.new({
"QuickTime Player",
"Preview",
})
local function externalScreen()
local primary = hs.screen.primaryScreen()
for _, screen in ipairs(hs.screen.allScreens()) do
if screen:id() ~= primary:id() then
return screen
end
end
-- Fallback if no external display is connected.
return primary
end
local function moveAndMaximizeWindow(win)
if not win then return end
local winID = win:id()
if not winID then return end
local function apply()
local currentWin = hs.window.get(winID)
if not currentWin or not currentWin:isStandard() then
return
end
local targetScreen = externalScreen()
if targetScreen and currentWin:screen():id() ~= targetScreen:id() then
currentWin:moveToScreen(targetScreen, false, true, 0)
end
currentWin:maximize()
end
-- First pass after the window is created.
hs.timer.doAfter(0.25, apply)
-- Second pass catches apps that restore/resize shortly after opening.
hs.timer.doAfter(0.75, apply)
end
-- Only handle newly-created windows.
-- This avoids fighting manual resizing during the presentation.
wf:subscribe(hs.window.filter.windowCreated, moveAndMaximizeWindow)
-- Handle existing matching windows when Hammerspoon loads/reloads.
hs.timer.doAfter(0.5, function()
for _, win in ipairs(wf:getWindows()) do
moveAndMaximizeWindow(win)
end
end)
hs.alert.show("Auto-move/maximize QuickTime/Preview loaded")
Add or remove managed apps using their exact names in the Hammerspoon window filter.
3. Install and start Side Mirror
Install Side Mirror, select the projector/external display from drop down menu at top right, then click Start.
4. Presenting
Opening QuickTime Player or Preview-associated files will display them in full screen on the projector. Use Side Mirror on your MacBook to see and control the projected content. Clicking through moves focus and your cursor to the external display; recover via Opt+Shift+Return.
If you have multiple external displays, replace:
local function externalScreen()
local primary = hs.screen.primaryScreen()
for _, screen in ipairs(hs.screen.allScreens()) do
if screen:id() ~= primary:id() then
return screen
end
end
return primary
end
with:
local function externalScreen()
return hs.screen.find("BenQ") or hs.screen.primaryScreen()
end
Replace "BenQ" with a substring matching your projector's display name. You can list connected display names in the Hammerspoon console with:
Screen Guard (listed as free with no IAP, but the demo video briefly displays "Note: some features in this video require payment to unlock" near the end, 8.8MB): "Instantly hide apps you choose"
Many posts suggest restarting in Safe Mode and simply deleting CapabilityAccessManager.db-wal; however, that unfortunate approach reportedly breaks WiFi, screen capture, Settings, and more.
u/Ancient-Reply2879 and Pony appear to have independently arrived at the correct method: delete the folder (C:\ProgramData\Microsoft\Windows\CapabilityAccessManager\) rather than the file (C:\ProgramData\Microsoft\Windows\CapabilityAccessManager\ CapabilityAccessManager.db-wal).
Refactored a PowerShell script shared by Anonymous (2024) and jsmorley (2025) to delete the directory rather than the contents:
Almost-perfect solution, with one limitation: catch-all matching works for sender or message content, not both simultaneously. Feedback filed with Apple via Feedback Assistant.
Shortcuts → Automation
New Automation → Message
Leave Sender as Any Sender to match all senders or leave Message Contains as Choose to match any text message content - at least one field must have a value to enable Next (Message Contains sadly does not support regex; a single space suffices, though messages containing no spaces will be missed)
Change Run After Confirmation to Run Immediately → Next
Create New Shortcut → Send Message → Message → e.g., "I am out of the office"
Tap and hold Recipients → Shortcut Input
Tap checkmark icon at top right to save
Handles both iMessage and SMS, runs immediately without interaction, and executes even with the screen off.
Wuqiong Zhao's pdfcrop Web App is sublimely fit to purpose. Tried wrangling a Tauri-based portable Windows app out of it with Claude 4.6 Opus, Gemini 3.1 Pro, and GPT 5.4 over several hours with little to show for it.
Dear friend and AI whisperer Josh adroitly conjured up a wonderful solution using Copilot & GPT-5.4-high in a twinkling, even fixing crop-box handle resizing along the way:
Successfully tested the following build steps in Windows 11 24H2 ARM64, macOS 26.4.1 Tahoe, and Ubuntu Linux 22.04: