2015年6月16日 星期二

如何自動下載gmail夾檔到google drive

http://www.labnol.org/internet/send-gmail-to-google-drive/21236/

2015年6月11日 星期四

windows 8 64-bit 更新後,檔案管理員在focus到pdf檔時就當掉

請服用

http://superuser.com/questions/882258/windows-explorer-stops-showing-pdfs-in-the-preview-pane

關閉檔案預覽功能

2015年6月7日 星期日

JS workflow on heroku

http://www.sitepoint.com/deploying-camel-js-blog-heroku/

https://scotch.io/tutorials/how-to-deploy-a-node-js-app-to-heroku

In sum:

Run once:

  1. git clone https://github.com/AAA/BBB.git & cd BBB(if required)
    1. if start from scratch, run "git init"
  2. heroku login 
  3. heroku create
  4. heroku ps:scale web=1 (optional?)
Run as you change code / debug:
  1. git add .
  2. git commit -m "MMM"
  3. git push heroku master 
  4. heroku open (for viewing the results remotely)
  5. foreman start (for starting local server with .env settings; don't run node directly)
Restart server:

heroku restart


Visual Studio Code... definitely a must learn this summer

http://www.caseyliss.com/2015/5/1/visual-studio-code

https://code.visualstudio.com//