view blank.html @ 5:085c8022e2a2

update
author oc
date Fri, 28 Nov 2014 12:34:29 +0900
parents 366d910bad07
children 4a2d7b815cb8
line wrap: on
line source

<!DOCTYPE html>
<html>
  <head>
    <meta charset='utf-8'>
    <title>Seminar</title>

    <!-- 
      Notes on CSS media types used:

      1) projection -> slideshow mode (display one slide at-a-time; hide all others)
      2) screen     -> outline mode (display all slides-at-once on screen) 
      3) print      -> print (and print preview)

      Note: toggle between projection/screen (that is, slideshow/outline) mode using t-key

      Questions, comments?
      - send them along to the mailinglist/forum online @ http://groups.google.com/group/webslideshow    
    -->

    <!-- style sheet links -->
    <link rel="stylesheet/less" href="themes/blank/projection.css.less"  media="screen,projection">
    <link rel="stylesheet/less" href="themes/blank/screen.css.less"      media="screen">
    <link rel="stylesheet/less" href="themes/blank/print.css.less"       media="print">

    <link rel="stylesheet/less" href="blank.css.less"    media="screen,projection">

    <!-- Notes about less css support
      - all less stylesheets (*.css.less) need to get listed/loaded first (before the less.js script)
      - find more info about less.js online @ http://lesscss.org

      ***** NOTE:
      less.js browser script currently won’t work if you’re using Google Chrome
      and the path to your page starts with "file:///" due to a known Chrome issue.
      (In the developer/js console you will see:
      XMLHttpRequest cannot load file:///../s6/shared/projection.css.less.
      Cross origin requests are only supported for HTTP.)
    -->

    <!-- add js libs (less, jquery) -->
    <script src="js/less-1.1.4.min.js"></script>
    <script src="js/jquery-1.7.min.js"></script>

    <!-- S6 JS -->
    <script src="js/jquery.slideshow.js"></script>
    <script src="js/jquery.slideshow.counter.js"></script>
    <script src="js/jquery.slideshow.controls.js"></script>
    <script src="js/jquery.slideshow.footer.js"></script>
    <script src="js/jquery.slideshow.autoplay.js"></script>
    <script>
$(document).ready( function() {
  Slideshow.init();

  // Example 2: Start Off in Outline Mode
  // Slideshow.init( { mode: 'outline' } );

  // Example 3: Use Custom Transition
  // Slideshow.transition = transitionScrollUp;
  // Slideshow.init();

  // Example 4: Start Off in Autoplay Mode with Custom Transition
  // Slideshow.transition = transitionScrollUp;
  // Slideshow.init( { mode: 'autoplay' } );
} );
    </script>

    <!-- Better Browser Banner for Microsoft Internet Explorer (IE) -->
    <!--[if IE]>
      <script src="js/jquery.microsoft.js"></script>
      <![endif]-->

  </head>
  <body>

    <div class="layout">
      <div id="header"></div>
      <div id="footer">
        <div align="right">
          <img src="images/concurrency.png" width="200">
        </div>
      </div>
    </div>

    <div class="presentation">

      <!-- add slides here; example -->

      <div class='slide cover'>
        <table width="90%" height="90%" border="0" align="center">
          <tr>
            <td><div align="center">
                <h1><font color="#808db5">TreeVNC</font></h1>
              </div></td>
          </tr>
          <tr>
            <td><div align="left">
                Miwa Oshiro
                <script>
var date = new Date();
var year = date.getFullYear();
var month = date.getMonth();
var day = date.getDate();

var monthList = new Array("January","February","March","April","May","June",
    "July","August","September","October","November","December");

document.write(monthList[month]+" "+day+", "+year);

                </script>
                <hr style="color:#ffcc00;background-color:#ffcc00;text-align:left;border:none;width:300%;height:0.2em;">
              </div></td>
          </tr>
        </table>
      </div>

      <div class='slide'>
        <h2>自己紹介</h2>
        <p>琉球大学工学部情報工学科の大城美和です。</p>
        <p>現在、河野研に所属しており、TreeVNCの開発をしております。</p>
        <p><img src="images/javaKuche/icon.png" width="100" height="100">
        TwitterID : morobororo</p>
      </div>

      <div class='slide'>
        <h2>VNCとは</h2>
        <p>VNCとは、<br>
        <h3>コンピュータの画面を遠隔操作できるソフトウェア</h3>のことです。</p>
        <br>
        <p>このVNCを改良し、普段の授業やゼミの質を高めていきます。</p>

      </div>

      <div class='slide'>
        <h2>授業中に起こる問題</h2>
        <ul>
          <li>教室は広いのにプロジェクタの数が1つしかない。</li>
          <li>目が悪くてプロジェクタで映された先生の画面が見えない。</li>
          <li>先生がおもむろにプログラミングを始めるけどついていけない。</li>
        </ul>
      </div>

      <div class='slide'>
        <h2>ゼミ中に起こる問題</h2>
        <ul>
          <li>発表者が代わる度に、ケーブルの抜き差ししなければならない。</li>
          <li>システム環境設定を開いて解像度の変更しなければならない。</li>
          <li>画面の解像度の違いで綺麗に画面が映らない。</li>
        </ul>
      </div>

      <div class='slide'>
        <h2>画面共有システムTreeVNCを使えば</h2>
        <ul>
          <li>手元のPCに先生の画面が映される!</li>
            <li>教室の端っこに座っていても付いていける!</li>
            <li>ボタン1つで画面の切り替えが可能!</li>
            <li>そのままの解像度で共有されるので設定不必要!</li>
        </ul>
        <br>
        <p> 以上のような嬉しい効果が得られます。</p>
      </div>

      <div class='slide'>
        <h2>従来のVNCとの違い</h2>
        <div class="treevnc">
             <p class="image"><img src="images/javaKuche/VNCandTreeVNC.png" width="500" height="200"></p>
        </div>
        <p>バイナリツリー状にクライアントが接続される。
        各nodeに最大2台分のクライアントしか接続されない。</p>
        <p>配信する画面データをコピーする回数が減り、rootにかかる負荷が分散される。
        これによって遅延や処理落ち等を解消しています。</p>
      </div>

      <div class='slide'>
        <h2>TreeVCNのこれから</h2>
        <h4><li>外部からも接続出来るようにしたい</li></h4>
        沖縄から、東大の授業に参加できる。
        <h4><li>音声共有</li></h4>
        遠隔で授業に参加するとなると、音声も必要となる。
        <h4><li>複数画面の共有</li></h4>
        書記の人の画面も共有することによって、まとめがしやすくなる。
      </div>

      <div class='slide'>
        <h2>AliceVNC</h2>
        分散ネットフレームワークAliceを用いた実装も行われています。
        <h3>AliceVNCを使用するメリット</h3>
        <ul>
          <li>ネットワークトポロジの構成をしてくれる</li>
          <ul>
            <li>VNCを直接いじることなく、Tree状に構成することができる。</li>
          </ul>
          <li>TreeVNCで必要とされるコネクションを管理してくれる</li>
          <ul>
            <li>TreeVNCで必要とされるコネクション</li>
          <ul>
            <li>再接続処理・node間の接続等</li>
          </ul>
          </ul>
        </ul>
        </ul>
      </div>

      <div class='slide'>
        <h2>終わり</h2>
        <p>ご清聴ありがとうございました!</p>
      </div>




    </div> <!-- presentation -->
  </body>
</html>