Mercurial > hg > Members > oc > slide
view blank.html @ 8:0ca3c4d09044
update
author | oc |
---|---|
date | Tue, 09 Dec 2014 18:03:18 +0900 |
parents | 50e97c0235df |
children | 7c15f8662c72 |
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> <ul> <li>プレゼンテーションの資料が見えない、聴こえないといった問題を失くすこと</li> <li>スムーズな画面表示・画面の切り替えが行うこと</li> <li>綺麗な画質を保ちながらプレゼンテーションすること</li> <li>参加者同士が充分なコミュニケーションを取れること</li> </ul> <p>を目的としている。</p> </div> <div class='slide'> <h2>研究目的を果たすための中間目標</h2> <h3>遠距離にいる人でもゼミ・授業に参加できる</h3> <ul> <li>同一ネットワークの外からTreeVNCに接続できるように</li> <li>遠距離なので、音声の共有も必要になる</li> </ul> </div> <div class='slide'> <h2>やってきたこと</h2> <ul> <li>JavaKucheでLT</li> <li>tree-find-listenerで出たエラーの解決</li> <li>コンソール出力をファイル出力へ変更</li> <li>画面サイズ指定のユースケース図作成</li> </ul> </div> <div class='slide'> <h2>JavaKucheでのLT</h2> <ul> <li>LT用の資料の作成方法が全くわかっていなかった</li> <li>発表時には、 <strong>スクリーンに対する文字の大きさを確認する</strong> ことを忘れてはいけないという事を学びました</li> </ul> </div> <div class='slide'> <h2>tree-find-listenerで出たエラーの原因</h2> <ul> <li>Multicast通信を行う際、InetAddressに、マルチキャストアドレス224.0.0.1を利用していた</li> <li><p>IPv4のアドレスを指定して、joinGroup()していたので、IPv6アドレスに対応しきれなかったんじゃないか</p></li> <li><p>ネットワークインターフェースがMulticast通信に対応しているかどうかは、検知した段階でチェックしていた</p></li> </ul> </div> <div class='slide'> <h2>解決方法</h2> <ul> <li>joinGroupの引数として、SocketAddressを使用した(以前の引数は、InetAddress = 224.0.0.1でした)</li> <li>SocketAddressは、IPアドレス+ポート番号の組から生成される</li> <li>これでエラーは解決した</li> <li>ただ、ここで使用しているIPアドレスは224.0.0.1である</li> <li>IPv6でないのに、なぜエラーが出なくなったのかがわからない</li> </ul> </div> <div class='slide'> <h2>コンソール出力をファイル出力へ変更</h2> <p>標準出力outを、ファイル出力outへと変更しました。</p> <div class="code-frame"> <div class="highlight"> <pre><code class="avrasm">PrintStream <span class="keyword">out</span> = new PrintStream(<span class="string">"log/log.txt"</span>)<span class="comment">;</span> System<span class="preprocessor">.setOut</span>(<span class="keyword">out</span>)<span class="comment">;</span> </code></pre></div></div> <p>これで、</p> <div class="code-frame"><div class="highlight"><pre><code class="avrasm">System<span class="preprocessor">.out</span><span class="preprocessor">.println</span>(<span class="string">"hogehoge"</span>)<span class="comment">;</span> </code></pre></div></div> <p>は、log/log.txtへと書きだされる。</p> </div> </div> <!-- presentation --> </body> </html>