自由學習的風

幽夢影 張潮 少年讀書,如隙中窺月;中年讀書,如庭中望月;老年讀書,如臺上玩月。皆以閱歷之淺深,為所得之淺深耳。

避免引用外部 JS framework 或 css library 被 Chrome 阻擋

2016年3月13日 星期日

格式:
<meta http-equiv="Content-Security-Policy" content="default-src *; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' 'unsafe-eval' {URL} ">

如果引用 maps.googleapis.com,那就用下列的 TAG 來通知 Chrome不要阻擋
<meta http-equiv="Content-Security-Policy" content="default-src *; style-src 'self' 'unsafe-inline' ; script-src 'self' 'unsafe-inline' https://maps.googleapis.com ">


網站參考:
Content Security Policy

OData 開放資料

2016年3月2日 星期三

指定單位(代碼):
https://odata.ntpc.edu.tw/api/schools/[學校代碼]
ex:
https://odata.ntpc.edu.tw/api/schools/014610

篩選:
https://odata.ntpc.edu.tw/api/schools/?$filter=indexof(Address,'中山路') ge 0&$orderby=Alias 
https://odata.ntpc.edu.tw/api/schools/?$filter=indexof(Alias,'樹林') ge 0&$orderby=Alias 
https://odata.ntpc.edu.tw/api/schools/?$filter=indexof(District,'板橋') ge 0

回傳型態:

  • XML:預設
  • JSON:
https://odata.ntpc.edu.tw/api/schools/014613?$format=JSON
使用者:
https://odata.ntpc.edu.tw/api/users
帳號登出:

https://odata.ntpc.edu.tw/api/users/logout.aspx
影片:
 https://odata.ntpc.edu.tw/api/videos

取消 composer 出現 xdebug enbale 的訊息

今天執行 composer 時會多出一段訊息:
You are running composer with xdebug enabled. This has a major impact on runtime performance. See https://getcomposer.org/xdebug
雖然還是正常執行,但是看出來有點怪,可以執行下列指令後把此段訊息取消
sudo php5dismod -s cli xdebug