Skip to content

Instantly share code, notes, and snippets.

View kudosqujo's full-sized avatar

qujo kudosqujo

View GitHub Profile
@sephraim
sephraim / rspec_diff.sh
Created October 3, 2019 19:43
[RSpec diff] Run RSpec on changed files only #rspec
git diff --name-only --diff-filter=d upstream/develop | grep '_spec.rb$' | xargs parallel_rspec -n 3
@sephraim
sephraim / outlook_folder_id.applescript
Created October 28, 2019 17:10
[Get folder ID in Microsoft Outlook for Mac]
-- 1.) Select folder in Outlook app
-- 2.) Open Script Editor
-- 3.) Paste the following into the editor and press play
tell application "Microsoft Outlook"
get selected folder
end tell