Skip to content

Instantly share code, notes, and snippets.

@baseliners
baseliners / Anaconda.sublime-settings
Last active August 29, 2015 14:09
Anaconda and ST3 settings
{
"python_interpreter": "/usr/local/bin/python",
"anaconda_linting": false,
"suppress_word_completions": true,
"suppress_explicit_completions": true,
"hide_snippets_on_completion": true
}
@baseliners
baseliners / chrome_to_safari
Last active December 26, 2015 11:19
AppleScript to help migrate from Chrome to Safari -- replicates currently open Chrome windows and tabs in Safari (any existing Safari windows will not be touched)
tell application "Google Chrome"
repeat with window_var in every window
set window_url_list to {}
set window_tabs to (tabs of window_var)
repeat with curr_tab in window_tabs
copy URL of curr_tab to end of window_url_list
end repeat
tell application "Safari"