Skip to content

Instantly share code, notes, and snippets.

@epatr
epatr / Rakefile
Created May 27, 2016 16:58
Cloud9 Rakefile to run Jekyll
task :watch do
system('jekyll serve --host $IP --port $PORT --baseurl ''')
end
@epatr
epatr / chrome.lnk
Created October 27, 2015 16:35
Target parameters to get Chrome to open an "app" window in Windows
"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --profile-directory="Default" --app=http://
@epatr
epatr / popup.js
Created October 27, 2015 16:32
Bookmarklet to pop up websites in window without browser toolbars
javascript:window.open('http://','windowName','width=960,height=720,scrollbars=yes,status=no,titlebar=no,toolbar=no');void(0);