Skip to content

Instantly share code, notes, and snippets.

View vtambourine's full-sized avatar
🦉

Benjamin T vtambourine

🦉
View GitHub Profile
@vtambourine
vtambourine / close-google-search-tabs.as
Last active July 15, 2016 14:39
Close all Google Search tabs in all Chrome windows
set googleTabs to {}
tell application "Google Chrome"
repeat with theWindow in every window
repeat with theTab in every tab of theWindow
tell theTab
if title contains "- Google Search" then
set googleTabs to googleTabs & {theTab}
end if
end tell
@staltz
staltz / introrx.md
Last active May 26, 2024 06:18
The introduction to Reactive Programming you've been missing