wiki:jazz/08-09-22

2008-09-22

  • [閱讀] Cluster Computing in the Classroom: Topics, Guidelines, and Experiences
    • [感想] 教學方法也可以發表論文
    • [感想] 從這篇文章可以知道 Cluster Computing 的知識分類(Ontology)非常廣泛
      • GraphViz image
    • [感想] Cluster Computing 的知識領域很廣,來聽課的人目的也不盡相同,需要知道的知識背景也就應該不同
      • GraphViz image
    • [聯想] 如果 Grid Computing 是指 "A Virtual Cluster of Multiple Physical Clusters" 的話,那麼 Grid Computing 的背景就需要包含 "Cluster Computing";如果 Cloud Computing 是建構在 Grid Infrastructure 之上,那麼 Cloud Computing 的知識背景就需要涵蓋 Grid Computing。那或許結合 Cluster Computing 與 Grid Computing 的教學範疇就可以再整理一篇 Paper 了 *_*
      • GraphViz image
  • Google Map 讀取 KML 檔案
  • 學習 Google Map 自訂背景圖層
  • 學習 Google Map 自訂按鈕
  • 實驗在 Trac Wiki 中加入 Google Map 語法
    • 原本想用 #!html 的 wiki processor 來顯示,不過看樣子只會留下 <div> 而過濾掉 <script> 語法。
      <div id="map" style="width: 320px; height: 240px"></div>
      <script src="http://maps.google.com/maps?file=api&amp;v=2&amp;key=ABQIAAAAREq2HXjZzIdAyVORbKBYMhTGA1AmqT3f4EHIxhq9FLpYC-sN5RSNOiRjrKXraxSIlkXZKb9VzUKDWQ" type="text/javascript"></script>
      <script type="text/javascript">
        if (GBrowserIsCompatible()) {
          var map = new GMap2(document.getElementById("map"));
          map.setCenter(new GLatLng(23.8,121), 7);
          map.setMapType(G_SATELLITE_MAP);
        }
      </script>
      
Last modified 16 years ago Last modified on Sep 22, 2008, 11:45:53 PM