Mercurial > hg > Members > taiki > slides
changeset 2:7f4128b2369a
update seminar slides
author | taiki <taiki@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Tue, 04 Jun 2013 17:15:27 +0900 |
parents | d3f740120b55 |
children | fea44bb81877 |
files | io2012slides/slide_config.js seminar2013/0416.html seminar2013/0430.html seminar2013/0507.html seminar2013/0509.html seminar2013/0514.html seminar2013/0521.html seminar2013/pm_kou_config.js seminar2013/pm_kou_images/.DS_Store seminar2013/pm_kou_images/hukuoka_higasiku.png seminar2013/pm_kou_images/kumamoto_ekizyou.png seminar2013/pm_kou_images/pm2.5_nenkansuii.png seminar2013/pm_kou_images/tyoukyou_chiyoda.png seminar2013/software_system.html |
diffstat | 14 files changed, 1933 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/io2012slides/slide_config.js Tue Apr 16 18:03:33 2013 +0900 +++ b/io2012slides/slide_config.js Tue Jun 04 17:15:27 2013 +0900 @@ -1,7 +1,7 @@ var SLIDE_CONFIG = { // Slide settings settings: { - title: 'ELILO におけるメモリ管理の実験', + title: 'Codesegment と Datasegment による OS の実装', //subtitle: 'Subtitle Goes Here', useBuilds: true, // Default: true. False will turn off slide animation builds. usePrettify: true, // Default: true
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/seminar2013/0416.html Tue Jun 04 17:15:27 2013 +0900 @@ -0,0 +1,423 @@ +<!-- +Google IO 2012 HTML5 Slide Template + +Authors: Eric Bidelman <ebidel@gmail.com> + Luke Mahé <lukem@google.com> + +URL: https://code.google.com/p/io-2012-slides +--> +<!DOCTYPE html> +<html> +<head> + <title>Presentation</title> + <meta charset="utf-8"> + <meta http-equiv="X-UA-Compatible" content="chrome=1"> + <!--<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">--> + <!--<meta name="viewport" content="width=device-width, initial-scale=1.0">--> + <!--This one seems to work all the time, but really small on ipad--> + <!--<meta name="viewport" content="initial-scale=0.4">--> + <meta name="apple-mobile-web-app-capable" content="yes"> + <link rel="stylesheet" media="all" href="css/default.css"> + <link rel="stylesheet" media="only screen and (max-device-width: 480px)" href="../io2012slides/theme/css/phone.css"> + <base target="_blank"> <!-- This amazingness opens all links in a new tab. --> + <script data-main="../io2012slides/js/slides" src="../io2012slides/js/require-1.0.8.min.js"></script> +</head> +<body style="opacity: 0"> + +<slides class="layout-widescreen"> + +<!-- + <slide class="logoslide nobackground"> + <article class="flexbox vcenter"> + <span><img src="../io2012slides/images/google_developers_logo.png"></span> + </article> + </slide> +--> + + <slide class="title-slide segue nobackground"> + <aside class="gdbar"><img src="../images/concurrent.png"></aside> + <!-- The content of this hgroup is replaced programmatically through the slide_config.json. --> + <hgroup class="auto-fadein"> + <h1 data-config-title><!-- populated from slide_config.json --></h1> + <h2 data-config-subtitle><!-- populated from slide_config.json --></h2> + <p data-config-presenter><!-- populated from slide_config.json --></p> + </hgroup> + </slide> + + <slide> + <hgroup> + <h2>研究目的</h2> + </hgroup> + <article> + <ul> + <li>動作が軽く、落ちにくいカーネルを実装する</li> + <li>ブートが最速で、コンパクトなカーネルを実装する</li> + <li>Codesegment と Datasegment をカーネルに実装するにあたって、メモリ管理の役割とどう合致するのかを検証する</li> + </ul> + </article> + </slide> + + <slide> + <hgroup> + <h2>今週の作業</h2> + </hgroup> + <article> + <ul> + <li>Linux 3.7.7 を読む</li> + <li>メモリ初期化のデバッグ</li> + </ul> + </article> + </slide> + + <slide> + <hgroup> + <h2>ELILO</h2> + </hgroup> + <article> + <h3>ELILO の中でのカーネル、という方針</h3> + <p>「ELILOアプリケーションの中」だったら ExitBootServices を実行しないで書くべき</p> + <ol> + <li>1.GDT/LDT を設定</li> + <li>2.別セグメントに飛ぶ</li> + <li>3.メモリの初期化</li> + </ol> + </article> + </slide> + + <slide> + <hgroup> + <h2>エラーメッセージ</h2> + </hgroup> + <article> + <h3>cr0 の PE bit を無効にした時</h3> + <img src='images/err_message01.png'> + <h3>cr3 に値を入れた時</h3> + <img src='images/err_message02.png'> + </article> + </slide> + + <slide> + <hgroup> + <h2>これからやること</h2> + </hgroup> + <article> + <ul> + <li>引き続き Paging の設定</li> + <li>うまくいったら User/特権 mode の切り替え</li> + </ul> + </article> + </slide> + + <slide> + <hgroup> + <h2>Code Slide (with Subtitle Placeholder)</h2> + </hgroup> + <article> + <p>Press 'h' to highlight important sections of code (wrapped in <code><b></code>).</p> + <pre class="prettyprint" data-lang="javascript"> +<script type='text/javascript'> + // Say hello world until the user starts questioning + // the meaningfulness of their existence. + function helloWorld(world) { + <b>for (var i = 42; --i >= 0;) { + alert('Hello ' + String(world)); + }</b> + } +</script> +</pre> + </article> + </slide> + + <slide> + <hgroup> + <h2>Code Slide (Smaller Font)</h2> + </hgroup> + <article class="smaller"> + <pre class="prettyprint" data-lang="javascript"> +// Say hello world until the user starts questioning +// the meaningfulness of their existence. +function helloWorld(world) { + for (var i = 42; --i >= 0;) { + alert('Hello ' + String(world)); + } +} +</pre> +<pre class="prettyprint" data-lang="css"> +<style> + p { color: pink } + b { color: blue } +</style> +</pre> +<pre class="prettyprint" data-lang="html"> +<!DOCTYPE html> +<html> +<head> + <title>My Awesome Page</title> +</head> +<body> + <p>Hello world</p> +<body> +</html> +</pre> + </article> + </slide> + + <slide> + <aside class="note"> + <section> + <ul> + <li>Point I wanted to make #1</li> + <li>Point I wanted to make #2</li> + <li>Point I wanted to make #3</li> + <li>Example <a href="#">link</a> in notes.</li> + </ul> + <p><b>Remember to say this tag line!</b></p> + </section> + </aside> + <hgroup> + <h2>Slide with Speaker Notes</h2> + </hgroup> + <article> + <p>Press 'p' to toggle speaker notes.</p> + </article> + </slide> + + <slide> + <aside class="note"> + <section> + <ul> + <li>See this amazing link: <a href="http://www.google.com">link</a>.</li> + </ul> + <p><b>Remember to say this tag line!</b></p> + </section> + </aside> + <hgroup> + <h2>Presenter Mode</h2> + </hgroup> + <article> + <p>Add <code><a href="?presentme=true" target="_self">?presentme=true</a></code> to the URL to enabled presenter mode. + This setting is sticky, meaning refreshing the page will persist presenter + mode.</p> + <p>Hit <code><a href="?presentme=false" target="_self">?presentme=false</a></code> to disable presenter mode.</p> + </article> + </slide> + + <slide> + <hgroup> + <h2>Slide with Image</h2> + </hgroup> + <article> + <img src="../io2012slides/images/chart.png" class="reflect" alt="Description" title="Description"> + <footer class="source">source: place source info here</footer> + </article> + </slide> + + <slide> + <hgroup> + <h2>Slide with Image (Centered horz/vert)</h2> + </hgroup> + <article class="flexbox vcenter"> + <img src="../io2012slides/images/barchart.png" alt="Description" title="Description"> + <footer class="source">source: place source info here</footer> + </article> + </slide> + + <slide> + <hgroup> + <h2>Table Option A</h2> + <h3>Subtitle Placeholder</h3> + </hgroup> + <article> + <table> + <tr> + <th></th><th>Column 1</th><th>Column 2</th><th>Column 3</th><th>Column 4</th> + </tr> + <tr> + <td>Row 1</td><td>placeholder</td><td class="highlight">placeholder</td><td>placeholder</td><td>placeholder</td> + </tr> + <tr> + <td>Row 2</td><td>placeholder</td><td>placeholder</td><td>placeholder</td><td>placeholder</td> + </tr> + <tr> + <td>Row 3</td><td>placeholder</td><td>placeholder</td><td>placeholder</td><td>placeholder</td> + </tr> + <tr> + <td>Row 4</td><td>placeholder</td><td>placeholder</td><td>placeholder</td><td>placeholder</td> + </tr> + <tr> + <td>Row 5</td><td>placeholder</td><td>placeholder</td><td>placeholder</td><td>placeholder</td> + </tr> + </table> + </article> + </slide> + + <slide> + <hgroup> + <h2>Table Option A (Smaller Text)</h2> + <h3>Subtitle Placeholder</h3> + </hgroup> + <article class="smaller"> + <table> + <tr> + <th></th><th>Column 1</th><th>Column 2</th><th>Column 3</th><th>Column 4</th> + </tr> + <tr> + <td>Row 1</td><td>placeholder</td><td class="highlight">placeholder</td><td>placeholder</td><td>placeholder</td> + </tr> + <tr> + <td>Row 2</td><td>placeholder</td><td>placeholder</td><td>placeholder</td><td>placeholder</td> + </tr> + <tr> + <td>Row 3</td><td>placeholder</td><td>placeholder</td><td>placeholder</td><td>placeholder</td> + </tr> + <tr> + <td>Row 4</td><td>placeholder</td><td>placeholder</td><td>placeholder</td><td>placeholder</td> + </tr> + <tr> + <td>Row 5</td><td>placeholder</td><td>placeholder</td><td>placeholder</td><td>placeholder</td> + </tr> + </table> + </article> + </slide> + + <slide> + <hgroup> + <h2>Table Option B</h2> + <h3>Subtitle Placeholder</h3> + </hgroup> + <article> + <table class="rows"> + <tr> + <th>Header 1</th><td>placeholder</td><td class="highlight">placeholder</td><td>placeholder</td> + </tr> + <tr> + <th>Header 2</th><td>placeholder</td><td>placeholder</td><td>placeholder</td> + </tr> + <tr> + <th>Header 3</th><td>placeholder</td><td>placeholder</td><td>placeholder</td> + </tr> + <tr> + <th>Header 4</th><td>placeholder</td><td>placeholder</td><td>placeholder</td> + </tr> + <tr> + <th>Header 5</th><td>placeholder</td><td>placeholder</td><td>placeholder</td> + </tr> + </table> + </article> + </slide> + + <slide> + <hgroup> + <h2>Slide Styles</h2> + </hgroup> + <article class="smaller"> + <div class="columns-2"> + <ul> + <li class="red">class="red"</li> + <li class="red2">class="red2"</li> + <li class="red3">class="red3"</li> + <li class="blue">class="blue"</li> + <li class="blue2">class="blue2"</li> + <li class="blue3">class="blue3"</li> + <li class="green">class="green"</li> + <li class="green2">class="green2"</li> + </ul> + <ul> + <li class="green3">class="green3"</li> + <li class="yellow">class="yellow"</li> + <li class="yellow2">class="yellow2"</li> + <li class="yellow3">class="yellow3"</li> + <li class="gray">class="gray"</li> + <li class="gray2">class="gray2"</li> + <li class="gray3">class="gray3"</li> + <li class="gray4">class="gray4"</li> + </ul> + </div> + <div class="centered" style="margin-top:2em"> + I am centered text with a <button>Button</button> and <button disabled>Disabled</button> button. + </div> + </article> + </slide> + + <slide class="segue dark nobackground"> + <aside class="gdbar"><img src="../io2012slides/images/google_developers_icon_128.png"></aside> + <hgroup class="auto-fadein"> + <h2>Segue Slide</h2> + <h3>Subtitle Placeholder</h3> + </hgroup> + </slide> + + <slide class="fill nobackground" style="background-image: url(images/sky.jpg)"> + <hgroup> + <h2 class="white">Full Image (with Optional Header)</h2> + </hgroup> + <footer class="source white">www.flickr.com/photos/25797459@N06/5438799763/</footer> + </slide> + + <slide class="segue dark quote nobackground"> + <aside class="gdbar right bottom"><img src="../io2012slides/images/google_developers_icon_128.png"></aside> + <article class="flexbox vleft auto-fadein"> + <q> + This is an example of quote text. + </q> + <div class="author"> + Name<br> + Company + </div> + </article> + </slide> + + <slide> + <hgroup> + <h2>Slide with Iframe</h2> + </hgroup> + <article> + <iframe data-src="http://www.google.com/doodle4google/history.html"></iframe> + </article> + </slide> + + <slide> + <article> + <iframe data-src="http://www.google.com/doodle4google/history.html"></iframe> + </article> + </slide> + + <slide class="thank-you-slide segue nobackground"> + <aside class="gdbar right"><img src="../io2012slides/images/google_developers_icon_128.png"></aside> + <article class="flexbox vleft auto-fadein"> + <h2><Thank You!></h2> + <p>Important contact information goes here.</p> + </article> + <p class="auto-fadein" data-config-contact> + <!-- populated from slide_config.json --> + </p> + </slide> + + <slide class="logoslide dark nobackground"> + <article class="flexbox vcenter"> + <span><img src="../io2012slides/images/google_developers_logo_white.png"></span> + </article> + </slide> + + <slide class="backdrop"></slide> + +</slides> + +<script> +var _gaq = _gaq || []; +_gaq.push(['_setAccount', 'UA-XXXXXXXX-1']); +_gaq.push(['_trackPageview']); + +(function() { + var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; + ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; + var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); +})(); +</script> + +<!--[if IE]> + <script src="http://ajax.googleapis.com/ajax/libs/chrome-frame/1/CFInstall.min.js"></script> + <script>CFInstall.check({mode: 'overlay'});</script> +<![endif]--> +</body> +</html>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/seminar2013/0430.html Tue Jun 04 17:15:27 2013 +0900 @@ -0,0 +1,445 @@ +<!-- +Google IO 2012 HTML5 Slide Template + +Authors: Eric Bidelman <ebidel@gmail.com> + Luke Mahé <lukem@google.com> + +URL: https://code.google.com/p/io-2012-slides +--> +<!DOCTYPE html> +<html> +<head> + <title>Presentation</title> + <meta charset="utf-8"> + <meta http-equiv="X-UA-Compatible" content="chrome=1"> + <!--<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">--> + <!--<meta name="viewport" content="width=device-width, initial-scale=1.0">--> + <!--This one seems to work all the time, but really small on ipad--> + <!--<meta name="viewport" content="initial-scale=0.4">--> + <meta name="apple-mobile-web-app-capable" content="yes"> + <link rel="stylesheet" media="all" href="css/default.css"> + <link rel="stylesheet" media="only screen and (max-device-width: 480px)" href="../io2012slides/theme/css/phone.css"> + <base target="_blank"> <!-- This amazingness opens all links in a new tab. --> + <script data-main="../io2012slides/js/slides" src="../io2012slides/js/require-1.0.8.min.js"></script> +</head> +<body style="opacity: 0"> + +<slides class="layout-widescreen"> + +<!-- + <slide class="logoslide nobackground"> + <article class="flexbox vcenter"> + <span><img src="../io2012slides/images/google_developers_logo.png"></span> + </article> + </slide> +--> + + <slide class="title-slide segue nobackground"> + <aside class="gdbar"><img src="../images/concurrent.png"></aside> + <!-- The content of this hgroup is replaced programmatically through the slide_config.json. --> + <hgroup class="auto-fadein"> + <h1 data-config-title><!-- populated from slide_config.json --></h1> + <h2 data-config-subtitle><!-- populated from slide_config.json --></h2> + <p data-config-presenter><!-- populated from slide_config.json --></p> + </hgroup> + </slide> + + <slide> + <hgroup> + <h2>研究目的</h2> + </hgroup> + <article> + <ul> + <li>動作が軽く、落ちにくいカーネルを実装する</li> + <li>ブートが最速で、コンパクトなカーネルを実装する</li> + <li>Codesegment と Datasegment をカーネルに実装するにあたって、メモリ管理の役割とどう合致するのかを検証する</li> + </ul> + </article> + </slide> + + <slide> + <hgroup> + <h2>今週の作業</h2> + </hgroup> + <article> + <ul> + <li>Linux 3.8.9 を読む</li> + <li>メモリ初期化のデバッグ</li> + </ul> + </article> + </slide> + + <slide> + <hgroup> + <h2>ELILO</h2> + </hgroup> + <article> + <h3>ELILO の中でのカーネル、という方針</h3> + <p>「ELILOアプリケーションの中」だったら ExitBootServices を実行しないで書くべき</p> + <ol> + <li>1.GDT/LDT を設定</li> + <li>2.別セグメントに飛ぶ</li> + <li>3.メモリの初期化</li> + </ol> + </article> + </slide> + + <slide> + <hgroup> + <h2>エラーメッセージ</h2> + </hgroup> + <article> + <h3>cr0 の PE bit を無効にした時</h3> + <img src='images/err_message01.png'> + <h3>cr3 に値を入れた時</h3> + <img src='images/err_message02.png'> + </article> + </slide> + + <slide> + <hgroup> + <h2>PostgreSQL</h2> + </hgroup> + <article> + <h3>手順</h3> + <ol> + <li>./initdb -D $PGDATA<br> + データベースの初期化<li> + <li>./pg_ctl -D $PGDATA -l [logfile_name] start<br> + PostgreSQL の起動<li> + <li>./psql user<br> + 対話プロンプトが開く<li> + <li> + ps -ef | grep postgres<br> + PostgreSQL のプロセスを探し出す<li> + <li>gdb $DIR/bin/postgres [process number]<br> + で読む<li> + </ol> + </article> + </slide> + + <slide> + <hgroup> + <h2>これからやること</h2> + </hgroup> + <article> + <ul> + <li>引き続き Paging の設定</li> + <li>うまくいったら User/特権 mode の切り替え</li> + </ul> + </article> + </slide> + + <slide> + <hgroup> + <h2>Code Slide (with Subtitle Placeholder)</h2> + </hgroup> + <article> + <p>Press 'h' to highlight important sections of code (wrapped in <code><b></code>).</p> + <pre class="prettyprint" data-lang="javascript"> +<script type='text/javascript'> + // Say hello world until the user starts questioning + // the meaningfulness of their existence. + function helloWorld(world) { + <b>for (var i = 42; --i >= 0;) { + alert('Hello ' + String(world)); + }</b> + } +</script> +</pre> + </article> + </slide> + + <slide> + <hgroup> + <h2>Code Slide (Smaller Font)</h2> + </hgroup> + <article class="smaller"> + <pre class="prettyprint" data-lang="javascript"> +// Say hello world until the user starts questioning +// the meaningfulness of their existence. +function helloWorld(world) { + for (var i = 42; --i >= 0;) { + alert('Hello ' + String(world)); + } +} +</pre> +<pre class="prettyprint" data-lang="css"> +<style> + p { color: pink } + b { color: blue } +</style> +</pre> +<pre class="prettyprint" data-lang="html"> +<!DOCTYPE html> +<html> +<head> + <title>My Awesome Page</title> +</head> +<body> + <p>Hello world</p> +<body> +</html> +</pre> + </article> + </slide> + + <slide> + <aside class="note"> + <section> + <ul> + <li>Point I wanted to make #1</li> + <li>Point I wanted to make #2</li> + <li>Point I wanted to make #3</li> + <li>Example <a href="#">link</a> in notes.</li> + </ul> + <p><b>Remember to say this tag line!</b></p> + </section> + </aside> + <hgroup> + <h2>Slide with Speaker Notes</h2> + </hgroup> + <article> + <p>Press 'p' to toggle speaker notes.</p> + </article> + </slide> + + <slide> + <aside class="note"> + <section> + <ul> + <li>See this amazing link: <a href="http://www.google.com">link</a>.</li> + </ul> + <p><b>Remember to say this tag line!</b></p> + </section> + </aside> + <hgroup> + <h2>Presenter Mode</h2> + </hgroup> + <article> + <p>Add <code><a href="?presentme=true" target="_self">?presentme=true</a></code> to the URL to enabled presenter mode. + This setting is sticky, meaning refreshing the page will persist presenter + mode.</p> + <p>Hit <code><a href="?presentme=false" target="_self">?presentme=false</a></code> to disable presenter mode.</p> + </article> + </slide> + + <slide> + <hgroup> + <h2>Slide with Image</h2> + </hgroup> + <article> + <img src="../io2012slides/images/chart.png" class="reflect" alt="Description" title="Description"> + <footer class="source">source: place source info here</footer> + </article> + </slide> + + <slide> + <hgroup> + <h2>Slide with Image (Centered horz/vert)</h2> + </hgroup> + <article class="flexbox vcenter"> + <img src="../io2012slides/images/barchart.png" alt="Description" title="Description"> + <footer class="source">source: place source info here</footer> + </article> + </slide> + + <slide> + <hgroup> + <h2>Table Option A</h2> + <h3>Subtitle Placeholder</h3> + </hgroup> + <article> + <table> + <tr> + <th></th><th>Column 1</th><th>Column 2</th><th>Column 3</th><th>Column 4</th> + </tr> + <tr> + <td>Row 1</td><td>placeholder</td><td class="highlight">placeholder</td><td>placeholder</td><td>placeholder</td> + </tr> + <tr> + <td>Row 2</td><td>placeholder</td><td>placeholder</td><td>placeholder</td><td>placeholder</td> + </tr> + <tr> + <td>Row 3</td><td>placeholder</td><td>placeholder</td><td>placeholder</td><td>placeholder</td> + </tr> + <tr> + <td>Row 4</td><td>placeholder</td><td>placeholder</td><td>placeholder</td><td>placeholder</td> + </tr> + <tr> + <td>Row 5</td><td>placeholder</td><td>placeholder</td><td>placeholder</td><td>placeholder</td> + </tr> + </table> + </article> + </slide> + + <slide> + <hgroup> + <h2>Table Option A (Smaller Text)</h2> + <h3>Subtitle Placeholder</h3> + </hgroup> + <article class="smaller"> + <table> + <tr> + <th></th><th>Column 1</th><th>Column 2</th><th>Column 3</th><th>Column 4</th> + </tr> + <tr> + <td>Row 1</td><td>placeholder</td><td class="highlight">placeholder</td><td>placeholder</td><td>placeholder</td> + </tr> + <tr> + <td>Row 2</td><td>placeholder</td><td>placeholder</td><td>placeholder</td><td>placeholder</td> + </tr> + <tr> + <td>Row 3</td><td>placeholder</td><td>placeholder</td><td>placeholder</td><td>placeholder</td> + </tr> + <tr> + <td>Row 4</td><td>placeholder</td><td>placeholder</td><td>placeholder</td><td>placeholder</td> + </tr> + <tr> + <td>Row 5</td><td>placeholder</td><td>placeholder</td><td>placeholder</td><td>placeholder</td> + </tr> + </table> + </article> + </slide> + + <slide> + <hgroup> + <h2>Table Option B</h2> + <h3>Subtitle Placeholder</h3> + </hgroup> + <article> + <table class="rows"> + <tr> + <th>Header 1</th><td>placeholder</td><td class="highlight">placeholder</td><td>placeholder</td> + </tr> + <tr> + <th>Header 2</th><td>placeholder</td><td>placeholder</td><td>placeholder</td> + </tr> + <tr> + <th>Header 3</th><td>placeholder</td><td>placeholder</td><td>placeholder</td> + </tr> + <tr> + <th>Header 4</th><td>placeholder</td><td>placeholder</td><td>placeholder</td> + </tr> + <tr> + <th>Header 5</th><td>placeholder</td><td>placeholder</td><td>placeholder</td> + </tr> + </table> + </article> + </slide> + + <slide> + <hgroup> + <h2>Slide Styles</h2> + </hgroup> + <article class="smaller"> + <div class="columns-2"> + <ul> + <li class="red">class="red"</li> + <li class="red2">class="red2"</li> + <li class="red3">class="red3"</li> + <li class="blue">class="blue"</li> + <li class="blue2">class="blue2"</li> + <li class="blue3">class="blue3"</li> + <li class="green">class="green"</li> + <li class="green2">class="green2"</li> + </ul> + <ul> + <li class="green3">class="green3"</li> + <li class="yellow">class="yellow"</li> + <li class="yellow2">class="yellow2"</li> + <li class="yellow3">class="yellow3"</li> + <li class="gray">class="gray"</li> + <li class="gray2">class="gray2"</li> + <li class="gray3">class="gray3"</li> + <li class="gray4">class="gray4"</li> + </ul> + </div> + <div class="centered" style="margin-top:2em"> + I am centered text with a <button>Button</button> and <button disabled>Disabled</button> button. + </div> + </article> + </slide> + + <slide class="segue dark nobackground"> + <aside class="gdbar"><img src="../io2012slides/images/google_developers_icon_128.png"></aside> + <hgroup class="auto-fadein"> + <h2>Segue Slide</h2> + <h3>Subtitle Placeholder</h3> + </hgroup> + </slide> + + <slide class="fill nobackground" style="background-image: url(images/sky.jpg)"> + <hgroup> + <h2 class="white">Full Image (with Optional Header)</h2> + </hgroup> + <footer class="source white">www.flickr.com/photos/25797459@N06/5438799763/</footer> + </slide> + + <slide class="segue dark quote nobackground"> + <aside class="gdbar right bottom"><img src="../io2012slides/images/google_developers_icon_128.png"></aside> + <article class="flexbox vleft auto-fadein"> + <q> + This is an example of quote text. + </q> + <div class="author"> + Name<br> + Company + </div> + </article> + </slide> + + <slide> + <hgroup> + <h2>Slide with Iframe</h2> + </hgroup> + <article> + <iframe data-src="http://www.google.com/doodle4google/history.html"></iframe> + </article> + </slide> + + <slide> + <article> + <iframe data-src="http://www.google.com/doodle4google/history.html"></iframe> + </article> + </slide> + + <slide class="thank-you-slide segue nobackground"> + <aside class="gdbar right"><img src="../io2012slides/images/google_developers_icon_128.png"></aside> + <article class="flexbox vleft auto-fadein"> + <h2><Thank You!></h2> + <p>Important contact information goes here.</p> + </article> + <p class="auto-fadein" data-config-contact> + <!-- populated from slide_config.json --> + </p> + </slide> + + <slide class="logoslide dark nobackground"> + <article class="flexbox vcenter"> + <span><img src="../io2012slides/images/google_developers_logo_white.png"></span> + </article> + </slide> + + <slide class="backdrop"></slide> + +</slides> + +<script> +var _gaq = _gaq || []; +_gaq.push(['_setAccount', 'UA-XXXXXXXX-1']); +_gaq.push(['_trackPageview']); + +(function() { + var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; + ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; + var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); +})(); +</script> + +<!--[if IE]> + <script src="http://ajax.googleapis.com/ajax/libs/chrome-frame/1/CFInstall.min.js"></script> + <script>CFInstall.check({mode: 'overlay'});</script> +<![endif]--> +</body> +</html>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/seminar2013/0507.html Tue Jun 04 17:15:27 2013 +0900 @@ -0,0 +1,461 @@ +<!-- +Google IO 2012 HTML5 Slide Template + +Authors: Eric Bidelman <ebidel@gmail.com> + Luke Mahé <lukem@google.com> + +URL: https://code.google.com/p/io-2012-slides +--> +<!DOCTYPE html> +<html> +<head> + <title>Presentation</title> + <meta charset="utf-8"> + <meta http-equiv="X-UA-Compatible" content="chrome=1"> + <!--<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">--> + <!--<meta name="viewport" content="width=device-width, initial-scale=1.0">--> + <!--This one seems to work all the time, but really small on ipad--> + <!--<meta name="viewport" content="initial-scale=0.4">--> + <meta name="apple-mobile-web-app-capable" content="yes"> + <link rel="stylesheet" media="all" href="css/default.css"> + <link rel="stylesheet" media="only screen and (max-device-width: 480px)" href="../io2012slides/theme/css/phone.css"> + <base target="_blank"> <!-- This amazingness opens all links in a new tab. --> + <script data-main="../io2012slides/js/slides" src="../io2012slides/js/require-1.0.8.min.js"></script> +</head> +<body style="opacity: 0"> + +<slides class="layout-widescreen"> + +<!-- + <slide class="logoslide nobackground"> + <article class="flexbox vcenter"> + <span><img src="../io2012slides/images/google_developers_logo.png"></span> + </article> + </slide> +--> + + <slide class="title-slide segue nobackground"> + <aside class="gdbar"><img src="../images/concurrent.png"></aside> + <!-- The content of this hgroup is replaced programmatically through the slide_config.json. --> + <hgroup class="auto-fadein"> + <h1 data-config-title><!-- populated from slide_config.json --></h1> + <h2 data-config-subtitle><!-- populated from slide_config.json --></h2> + <p data-config-presenter><!-- populated from slide_config.json --></p> + </hgroup> + </slide> + + <slide> + <hgroup> + <h2>研究目的</h2> + </hgroup> + <article> + <ul> + <li>動作が軽く、落ちにくいカーネルを実装する</li> + <li>ブートが最速で、コンパクトなカーネルを実装する</li> + <li>Codesegment と Datasegment をカーネルに実装するにあたって、メモリ管理の役割とどう合致するのかを検証する</li> + </ul> + </article> + </slide> + + <slide> + <hgroup> + <h2>今週の作業</h2> + </hgroup> + <article> + <ul> + <li>Linux 3.8.9 を読む</li> + <li>メモリ初期化のデバッグ</li> + </ul> + </article> + </slide> + + <slide> + <hgroup> + <h2>ELILO</h2> + </hgroup> + <article> + <h3>ELILO の中でのカーネル、という方針</h3> + <p>「ELILOアプリケーションの中」だったら ExitBootServices を実行しないで書くべき</p> + <ol> + <li>GDT/LDT を設定</li> + <li>別セグメントに飛ぶ</li> + <li>メモリの初期化</li> + <li>Call Gate と TSS</li> + <li>CPL (current privilege level)</li> + <li>64 bit mode(32bit と互換性なし)/compatibility mode</li> + </ol> + </article> + </slide> + + <slide> + <hgroup> + <h2>エラーメッセージ</h2> + </hgroup> + <article> + <h3>cr0 の PE bit を無効にした時</h3> + <img src='images/err_message01.png'> + <h3>cr3 に値を入れた時</h3> + <img src='images/err_message02.png'> + </article> + </slide> + + <slide> + <hgroup> + <h2>Fedora Linux</h2> + </hgroup> + <article> + <ul> + <li>Linux kernel 3.8.9</li> + <li>EFI 経由の GRUB2 で動いている</li> + <li>gdb で追いながら追っている途中</li> + </ul> + </article> + </slide> + + <slide> + <hgroup> + <h2>PostgreSQL</h2> + </hgroup> + <article> + <h3>手順</h3> + <ol> + <li>./initdb -D $PGDATA<br> + データベースの初期化<li> + <li>./pg_ctl -D $PGDATA -l [logfile_name] start<br> + PostgreSQL の起動<li> + <li>./psql user<br> + 対話プロンプトが開く<li> + <li> + ps -ef | grep postgres<br> + PostgreSQL のプロセスを探し出す<li> + <li>gdb $DIR/bin/postgres [process number]<br> + で読む<li> + </ol> + </article> + </slide> + + <slide> + <hgroup> + <h2>これからやること</h2> + </hgroup> + <article> + <ul> + <li>引き続き Paging の設定</li> + <li>うまくいったら User/特権 mode の切り替え</li> + </ul> + </article> + </slide> + + <slide> + <hgroup> + <h2>Code Slide (with Subtitle Placeholder)</h2> + </hgroup> + <article> + <p>Press 'h' to highlight important sections of code (wrapped in <code><b></code>).</p> + <pre class="prettyprint" data-lang="javascript"> +<script type='text/javascript'> + // Say hello world until the user starts questioning + // the meaningfulness of their existence. + function helloWorld(world) { + <b>for (var i = 42; --i >= 0;) { + alert('Hello ' + String(world)); + }</b> + } +</script> +</pre> + </article> + </slide> + + <slide> + <hgroup> + <h2>Code Slide (Smaller Font)</h2> + </hgroup> + <article class="smaller"> + <pre class="prettyprint" data-lang="javascript"> +// Say hello world until the user starts questioning +// the meaningfulness of their existence. +function helloWorld(world) { + for (var i = 42; --i >= 0;) { + alert('Hello ' + String(world)); + } +} +</pre> +<pre class="prettyprint" data-lang="css"> +<style> + p { color: pink } + b { color: blue } +</style> +</pre> +<pre class="prettyprint" data-lang="html"> +<!DOCTYPE html> +<html> +<head> + <title>My Awesome Page</title> +</head> +<body> + <p>Hello world</p> +<body> +</html> +</pre> + </article> + </slide> + + <slide> + <aside class="note"> + <section> + <ul> + <li>Point I wanted to make #1</li> + <li>Point I wanted to make #2</li> + <li>Point I wanted to make #3</li> + <li>Example <a href="#">link</a> in notes.</li> + </ul> + <p><b>Remember to say this tag line!</b></p> + </section> + </aside> + <hgroup> + <h2>Slide with Speaker Notes</h2> + </hgroup> + <article> + <p>Press 'p' to toggle speaker notes.</p> + </article> + </slide> + + <slide> + <aside class="note"> + <section> + <ul> + <li>See this amazing link: <a href="http://www.google.com">link</a>.</li> + </ul> + <p><b>Remember to say this tag line!</b></p> + </section> + </aside> + <hgroup> + <h2>Presenter Mode</h2> + </hgroup> + <article> + <p>Add <code><a href="?presentme=true" target="_self">?presentme=true</a></code> to the URL to enabled presenter mode. + This setting is sticky, meaning refreshing the page will persist presenter + mode.</p> + <p>Hit <code><a href="?presentme=false" target="_self">?presentme=false</a></code> to disable presenter mode.</p> + </article> + </slide> + + <slide> + <hgroup> + <h2>Slide with Image</h2> + </hgroup> + <article> + <img src="../io2012slides/images/chart.png" class="reflect" alt="Description" title="Description"> + <footer class="source">source: place source info here</footer> + </article> + </slide> + + <slide> + <hgroup> + <h2>Slide with Image (Centered horz/vert)</h2> + </hgroup> + <article class="flexbox vcenter"> + <img src="../io2012slides/images/barchart.png" alt="Description" title="Description"> + <footer class="source">source: place source info here</footer> + </article> + </slide> + + <slide> + <hgroup> + <h2>Table Option A</h2> + <h3>Subtitle Placeholder</h3> + </hgroup> + <article> + <table> + <tr> + <th></th><th>Column 1</th><th>Column 2</th><th>Column 3</th><th>Column 4</th> + </tr> + <tr> + <td>Row 1</td><td>placeholder</td><td class="highlight">placeholder</td><td>placeholder</td><td>placeholder</td> + </tr> + <tr> + <td>Row 2</td><td>placeholder</td><td>placeholder</td><td>placeholder</td><td>placeholder</td> + </tr> + <tr> + <td>Row 3</td><td>placeholder</td><td>placeholder</td><td>placeholder</td><td>placeholder</td> + </tr> + <tr> + <td>Row 4</td><td>placeholder</td><td>placeholder</td><td>placeholder</td><td>placeholder</td> + </tr> + <tr> + <td>Row 5</td><td>placeholder</td><td>placeholder</td><td>placeholder</td><td>placeholder</td> + </tr> + </table> + </article> + </slide> + + <slide> + <hgroup> + <h2>Table Option A (Smaller Text)</h2> + <h3>Subtitle Placeholder</h3> + </hgroup> + <article class="smaller"> + <table> + <tr> + <th></th><th>Column 1</th><th>Column 2</th><th>Column 3</th><th>Column 4</th> + </tr> + <tr> + <td>Row 1</td><td>placeholder</td><td class="highlight">placeholder</td><td>placeholder</td><td>placeholder</td> + </tr> + <tr> + <td>Row 2</td><td>placeholder</td><td>placeholder</td><td>placeholder</td><td>placeholder</td> + </tr> + <tr> + <td>Row 3</td><td>placeholder</td><td>placeholder</td><td>placeholder</td><td>placeholder</td> + </tr> + <tr> + <td>Row 4</td><td>placeholder</td><td>placeholder</td><td>placeholder</td><td>placeholder</td> + </tr> + <tr> + <td>Row 5</td><td>placeholder</td><td>placeholder</td><td>placeholder</td><td>placeholder</td> + </tr> + </table> + </article> + </slide> + + <slide> + <hgroup> + <h2>Table Option B</h2> + <h3>Subtitle Placeholder</h3> + </hgroup> + <article> + <table class="rows"> + <tr> + <th>Header 1</th><td>placeholder</td><td class="highlight">placeholder</td><td>placeholder</td> + </tr> + <tr> + <th>Header 2</th><td>placeholder</td><td>placeholder</td><td>placeholder</td> + </tr> + <tr> + <th>Header 3</th><td>placeholder</td><td>placeholder</td><td>placeholder</td> + </tr> + <tr> + <th>Header 4</th><td>placeholder</td><td>placeholder</td><td>placeholder</td> + </tr> + <tr> + <th>Header 5</th><td>placeholder</td><td>placeholder</td><td>placeholder</td> + </tr> + </table> + </article> + </slide> + + <slide> + <hgroup> + <h2>Slide Styles</h2> + </hgroup> + <article class="smaller"> + <div class="columns-2"> + <ul> + <li class="red">class="red"</li> + <li class="red2">class="red2"</li> + <li class="red3">class="red3"</li> + <li class="blue">class="blue"</li> + <li class="blue2">class="blue2"</li> + <li class="blue3">class="blue3"</li> + <li class="green">class="green"</li> + <li class="green2">class="green2"</li> + </ul> + <ul> + <li class="green3">class="green3"</li> + <li class="yellow">class="yellow"</li> + <li class="yellow2">class="yellow2"</li> + <li class="yellow3">class="yellow3"</li> + <li class="gray">class="gray"</li> + <li class="gray2">class="gray2"</li> + <li class="gray3">class="gray3"</li> + <li class="gray4">class="gray4"</li> + </ul> + </div> + <div class="centered" style="margin-top:2em"> + I am centered text with a <button>Button</button> and <button disabled>Disabled</button> button. + </div> + </article> + </slide> + + <slide class="segue dark nobackground"> + <aside class="gdbar"><img src="../io2012slides/images/google_developers_icon_128.png"></aside> + <hgroup class="auto-fadein"> + <h2>Segue Slide</h2> + <h3>Subtitle Placeholder</h3> + </hgroup> + </slide> + + <slide class="fill nobackground" style="background-image: url(images/sky.jpg)"> + <hgroup> + <h2 class="white">Full Image (with Optional Header)</h2> + </hgroup> + <footer class="source white">www.flickr.com/photos/25797459@N06/5438799763/</footer> + </slide> + + <slide class="segue dark quote nobackground"> + <aside class="gdbar right bottom"><img src="../io2012slides/images/google_developers_icon_128.png"></aside> + <article class="flexbox vleft auto-fadein"> + <q> + This is an example of quote text. + </q> + <div class="author"> + Name<br> + Company + </div> + </article> + </slide> + + <slide> + <hgroup> + <h2>Slide with Iframe</h2> + </hgroup> + <article> + <iframe data-src="http://www.google.com/doodle4google/history.html"></iframe> + </article> + </slide> + + <slide> + <article> + <iframe data-src="http://www.google.com/doodle4google/history.html"></iframe> + </article> + </slide> + + <slide class="thank-you-slide segue nobackground"> + <aside class="gdbar right"><img src="../io2012slides/images/google_developers_icon_128.png"></aside> + <article class="flexbox vleft auto-fadein"> + <h2><Thank You!></h2> + <p>Important contact information goes here.</p> + </article> + <p class="auto-fadein" data-config-contact> + <!-- populated from slide_config.json --> + </p> + </slide> + + <slide class="logoslide dark nobackground"> + <article class="flexbox vcenter"> + <span><img src="../io2012slides/images/google_developers_logo_white.png"></span> + </article> + </slide> + + <slide class="backdrop"></slide> + +</slides> + +<script> +var _gaq = _gaq || []; +_gaq.push(['_setAccount', 'UA-XXXXXXXX-1']); +_gaq.push(['_trackPageview']); + +(function() { + var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; + ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; + var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); +})(); +</script> + +<!--[if IE]> + <script src="http://ajax.googleapis.com/ajax/libs/chrome-frame/1/CFInstall.min.js"></script> + <script>CFInstall.check({mode: 'overlay'});</script> +<![endif]--> +</body> +</html>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/seminar2013/0509.html Tue Jun 04 17:15:27 2013 +0900 @@ -0,0 +1,166 @@ +<!-- +Google IO 2012 HTML5 Slide Template + +Authors: Eric Bidelman <ebidel@gmail.com> + Luke Mahé <lukem@google.com> + +URL: https://code.google.com/p/io-2012-slides +--> +<!DOCTYPE html> +<html> +<head> + <title>Presentation</title> + <meta charset="utf-8"> + <meta http-equiv="X-UA-Compatible" content="chrome=1"> + <!--<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">--> + <!--<meta name="viewport" content="width=device-width, initial-scale=1.0">--> + <!--This one seems to work all the time, but really small on ipad--> + <!--<meta name="viewport" content="initial-scale=0.4">--> + <meta name="apple-mobile-web-app-capable" content="yes"> + <link rel="stylesheet" media="all" href="css/default.css"> + <link rel="stylesheet" media="only screen and (max-device-width: 480px)" href="../io2012slides/theme/css/phone.css"> + <base target="_blank"> <!-- This amazingness opens all links in a new tab. --> + <script data-main="../io2012slides/js/slides" src="../io2012slides/js/require-1.0.8.min.js"></script> +</head> +<body style="opacity: 0"> + +<slides class="layout-widescreen"> + +<!-- + <slide class="logoslide nobackground"> + <article class="flexbox vcenter"> + <span><img src="../io2012slides/images/google_developers_logo.png"></span> + </article> + </slide> +--> + + <slide class="title-slide segue nobackground"> + <aside class="gdbar"><img src="../images/concurrent.png"></aside> + <!-- The content of this hgroup is replaced programmatically through the slide_config.json. --> + <hgroup class="auto-fadein"> + <h1 data-config-title><!-- populated from slide_config.json --></h1> + <h2 data-config-subtitle><!-- populated from slide_config.json --></h2> + <p data-config-presenter><!-- populated from slide_config.json --></p> + </hgroup> + </slide> + + <slide> + <hgroup> + <h2>研究目的</h2> + </hgroup> + <article> + <ul> + <li>ブートが高速で、コンパクトなカーネルを実装する。</li> + <li>Codesegment と Datasegment をカーネルに実装するにあたって、メモリ管理の役割とどう合致するのかを検証する。</li> + <li>上記を確認したら CbC を用いて、動作が軽く落ちにくいカーネルを実装する。</li> + </ul> + </article> + </slide> + + <slide> + <hgroup> + <h2>今週の作業</h2> + </hgroup> + <article> + <ul> + <li>Linux 3.8.9 を読む</li> + <li>メモリ初期化のデバッグ</li> + </ul> + </article> + </slide> + + <slide> + <hgroup> + <h2>ELILO</h2> + </hgroup> + <article> + <h3>ELILO の中でのカーネル、という方針</h3> + <p>「ELILOアプリケーションの中」だったら ExitBootServices を実行しないで書くべき</p> + <ol> + <li>GDT/LDT を設定</li> + <li>別セグメントに飛ぶ</li> + <li>メモリの初期化</li> + <li>Call Gate と TSS</li> + <li>CPL (current privilege level) を調べる</li> + <li>64 bit mode(32bit と互換性なし)/compatibility mode</li> + <li>UEFI のマニュアルには<br> + Paging mode is enabled and any memory space defined by the UEFI memory map is identity mapped (virtual address equals physical address).</li> + </ol> + </article> + </slide> + + <slide> + <hgroup> + <h2>エラーメッセージ</h2> + </hgroup> + <article> + <h3>cr0 の PE bit を無効にした時</h3> + <img src='images/err_message01.png'> + <h3>cr3 に値を入れた時</h3> + <img src='images/err_message02.png'> + </article> + </slide> + + <slide> + <hgroup> + <h2>Fedora Linux</h2> + </hgroup> + <article> + <ul> + <li>Linux kernel 3.8.9</li> + <li>gdb で追いながら追っている途中</li> + </ul> + </article> + </slide> + + <slide> + <hgroup> + <h2>PostgreSQL</h2> + </hgroup> + <article> + <h3>手順</h3> + <ol> + <li>./initdb -D $PGDATA<br> + データベースの初期化<li> + <li>./pg_ctl -D $PGDATA -l [logfile_name] start<br> + PostgreSQL の起動<li> + <li>./psql user<br> + 対話プロンプトが開く<li> + <li> + ps -ef | grep postgres<br> + PostgreSQL のプロセスを探し出す<li> + <li>gdb $DIR/bin/postgres [process number]<br> + で読む<li> + </ol> + </article> + </slide> + + + <slide class="logoslide dark nobackground"> + <article class="flexbox vcenter"> + <span><img src="../io2012slides/images/google_developers_logo_white.png"></span> + </article> + </slide> + + <slide class="backdrop"></slide> + +</slides> + +<script> +var _gaq = _gaq || []; +_gaq.push(['_setAccount', 'UA-XXXXXXXX-1']); +_gaq.push(['_trackPageview']); + +(function() { + var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; + ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; + var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); +})(); +</script> + +<!--[if IE]> + <script src="http://ajax.googleapis.com/ajax/libs/chrome-frame/1/CFInstall.min.js"></script> + <script>CFInstall.check({mode: 'overlay'});</script> +<![endif]--> +</body> +</html>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/seminar2013/0514.html Tue Jun 04 17:15:27 2013 +0900 @@ -0,0 +1,142 @@ +<!-- +Google IO 2012 HTML5 Slide Template + +Authors: Eric Bidelman <ebidel@gmail.com> + Luke Mahé <lukem@google.com> + +URL: https://code.google.com/p/io-2012-slides +--> +<!DOCTYPE html> +<html> +<head> + <title>Presentation</title> + <meta charset="utf-8"> + <meta http-equiv="X-UA-Compatible" content="chrome=1"> + <!--<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">--> + <!--<meta name="viewport" content="width=device-width, initial-scale=1.0">--> + <!--This one seems to work all the time, but really small on ipad--> + <!--<meta name="viewport" content="initial-scale=0.4">--> + <meta name="apple-mobile-web-app-capable" content="yes"> + <link rel="stylesheet" media="all" href="css/default.css"> + <link rel="stylesheet" media="only screen and (max-device-width: 480px)" href="../io2012slides/theme/css/phone.css"> + <base target="_blank"> <!-- This amazingness opens all links in a new tab. --> + <script data-main="../io2012slides/js/slides" src="../io2012slides/js/require-1.0.8.min.js"></script> +</head> +<body style="opacity: 0"> + +<slides class="layout-widescreen"> + +<!-- + <slide class="logoslide nobackground"> + <article class="flexbox vcenter"> + <span><img src="../io2012slides/images/google_developers_logo.png"></span> + </article> + </slide> +--> + + <slide class="title-slide segue nobackground"> + <aside class="gdbar"><img src="../images/concurrent.png"></aside> + <!-- The content of this hgroup is replaced programmatically through the slide_config.json. --> + <hgroup class="auto-fadein"> + <h1 data-config-title><!-- populated from slide_config.json --></h1> + <h2 data-config-subtitle><!-- populated from slide_config.json --></h2> + <p data-config-presenter><!-- populated from slide_config.json --></p> + </hgroup> + </slide> + + <slide> + <hgroup> + <h2>研究目的</h2> + </hgroup> + <article> + <ul> + <li>ブートが高速で、コンパクトなカーネルを実装する。</li> + <li>Codesegment と Datasegment をカーネルに実装するにあたって、メモリ管理の役割とどう合致するのかを検証する。</li> + <li>上記を確認したら CbC を用いて、動作が軽く落ちにくいカーネルを実装する。</li> + <li>モデル検証に対応し、エラー予測を可能にする</li> + <li>カーネルパニックをなくす</li> + <li>Mach-O を EFI でロードし、64bit でロードできるようにする</li> + </ul> + </article> + </slide> + + <slide> + <hgroup> + <h2>今週の作業</h2> + </hgroup> + <article> + <ul> + <li>Qemu を使えるかどうかの調査</li> + </ul> + </article> + </slide> + + <slide> + <hgroup> + <h2>Qemu [Q]</h2> + </hgroup> + <article> + <ul> + <li>OS X での Qemu は Q として書かれる</li> + <li>Qemu で EFI を使うツール OVMF のインストール</li> + </ul> + </article> + </slide> + + <slide> + <hgroup> + <h2>ELILO で Mach-O</h2> + </hgroup> + <article> + <ul> + <li>ELILO は x86-64 ように bzImaze と plain loader を持っている</li> + <li>Mach-O 用ローダを追加</li> + <li>一度使用するローダを登録して、使用するか決める</li> + <li>登録したローダを使う</li> + <li>Makefile を書き換えて Mach-O ローダを使えるように<li> + </ul> + </article> + </slide> + + <slide> + <hgroup> + <h2>これからすること</h2> + </hgroup> + <article> + <ul> + <li>Linux 3.8.9 を読む</li> + <li>メモリ初期化</li> + </ul> + </article> + </slide> + + + + <slide class="logoslide dark nobackground"> + <article class="flexbox vcenter"> + <span><img src="../io2012slides/images/google_developers_logo_white.png"></span> + </article> + </slide> + + <slide class="backdrop"></slide> + +</slides> + +<script> +var _gaq = _gaq || []; +_gaq.push(['_setAccount', 'UA-XXXXXXXX-1']); +_gaq.push(['_trackPageview']); + +(function() { + var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; + ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; + var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); +})(); +</script> + +<!--[if IE]> + <script src="http://ajax.googleapis.com/ajax/libs/chrome-frame/1/CFInstall.min.js"></script> + <script>CFInstall.check({mode: 'overlay'});</script> +<![endif]--> +</body> +</html>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/seminar2013/0521.html Tue Jun 04 17:15:27 2013 +0900 @@ -0,0 +1,156 @@ +<!-- +Google IO 2012 HTML5 Slide Template + +Authors: Eric Bidelman <ebidel@gmail.com> + Luke Mahé <lukem@google.com> + +URL: https://code.google.com/p/io-2012-slides +--> +<!DOCTYPE html> +<html> +<head> + <title>Presentation</title> + <meta charset="utf-8"> + <meta http-equiv="X-UA-Compatible" content="chrome=1"> + <!--<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">--> + <!--<meta name="viewport" content="width=device-width, initial-scale=1.0">--> + <!--This one seems to work all the time, but really small on ipad--> + <!--<meta name="viewport" content="initial-scale=0.4">--> + <meta name="apple-mobile-web-app-capable" content="yes"> + <link rel="stylesheet" media="all" href="css/default.css"> + <link rel="stylesheet" media="only screen and (max-device-width: 480px)" href="../io2012slides/theme/css/phone.css"> + <base target="_blank"> <!-- This amazingness opens all links in a new tab. --> + <script data-main="../io2012slides/js/slides" src="../io2012slides/js/require-1.0.8.min.js"></script> +</head> +<body style="opacity: 0"> + +<slides class="layout-widescreen"> + +<!-- + <slide class="logoslide nobackground"> + <article class="flexbox vcenter"> + <span><img src="../io2012slides/images/google_developers_logo.png"></span> + </article> + </slide> +--> + + <slide class="title-slide segue nobackground"> + <aside class="gdbar"><img src="../images/concurrent.png"></aside> + <!-- The content of this hgroup is replaced programmatically through the slide_config.json. --> + <hgroup class="auto-fadein"> + <h1 data-config-title><!-- populated from slide_config.json --></h1> + <h2 data-config-subtitle><!-- populated from slide_config.json --></h2> + <p data-config-presenter><!-- populated from slide_config.json --></p> + </hgroup> + </slide> + + <slide> + <hgroup> + <h2>研究目的</h2> + </hgroup> + <article> + <ul> + <li>ブートが高速で、コンパクトなカーネルを実装する。</li> + <li>Codesegment と Datasegment をカーネルに実装するにあたって、メモリ管理の役割とどう合致するのかを検証する。</li> + <li>上記を確認したら CbC を用いて、動作が軽く落ちにくいカーネルを実装する。</li> + <li>モデル検証に対応し、エラー予測を可能にする</li> + <li>カーネルパニックをなくす</li> + <li>Mach-O を ELILO でロードし、64bit で動作可能にする</li> + </ul> + </article> + </slide> + + <slide> + <hgroup> + <h2>ELILO のレジスタの状態</h2> + </hgroup> + <article> + <h4>CR0</h4> + <ul> + <li>PGbit ON : ページングが enable されている</li> + <li>PEbit ON : Protect mode (32 bit mode) が enable</li> + </ul> + <h4>CR4</h4> + <ul> + <li>PAEbit ON : ページングが 32bit 以上を使用</li> + <li>PSEbit ON : 32bit ページングでの 4Mbyte page を enable</li> + </ul> + <h4>CR3</h4> + <ul> + <li>Page directory base にアドレス</li> + </ul> + <h4>CS</h4> + <ul> + <li>GDT のセグメントの番号</li> + <li>requested privirege level は最大(全権限をもつ)</li> + </ul> + </article> + </slide> + + <slide> + <hgroup> + <h2>ELILO のレジスタの状態[2]</h2> + </hgroup> + <article> + <h3>現在の状態</h3> + <ul> + <li>GDT は動いている</li> + <li>long mode(compatibility mode/64bit mode)</li> + <li>EFI の仕様でレジスタへの書き込みを許してないのではないか</li> + <li>4M byte のページテーブル</li> + <li>ページングは enable だが、EFI のマニュアルには physical address = virtual address とある</li> + </ul> + </article> + </slide> + + + <slide> + <hgroup> + <h2>ELILO で Mach-O するためにするべきこと</h2> + </hgroup> + <article> + <ul> + <li>ELILO は x86-64 ように bzImaze と plain loader を持っている</li> + <li>Mach-O 用ローダを追加</li> + <li>一度使用するローダを登録して、使用するか決める</li> + <li>登録したローダを使う</li> + </ul> + </article> + </slide> + + <slide> + <hgroup> + </hgroup> + <article> + </article> + </slide> + + + <slide class="logoslide dark nobackground"> + <article class="flexbox vcenter"> + <span><img src="../io2012slides/images/google_developers_logo_white.png"></span> + </article> + </slide> + + <slide class="backdrop"></slide> + +</slides> + +<script> +var _gaq = _gaq || []; +_gaq.push(['_setAccount', 'UA-XXXXXXXX-1']); +_gaq.push(['_trackPageview']); + +(function() { + var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; + ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; + var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); +})(); +</script> + +<!--[if IE]> + <script src="http://ajax.googleapis.com/ajax/libs/chrome-frame/1/CFInstall.min.js"></script> + <script>CFInstall.check({mode: 'overlay'});</script> +<![endif]--> +</body> +</html>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/seminar2013/pm_kou_config.js Tue Jun 04 17:15:27 2013 +0900 @@ -0,0 +1,36 @@ +var SLIDE_CONFIG = { + // Slide settings + settings: { + title: 'ELILO におけるメモリ管理の実験', + //subtitle: 'Subtitle Goes Here', + useBuilds: true, // Default: true. False will turn off slide animation builds. + usePrettify: true, // Default: true + enableSlideAreas: true, // Default: true. False turns off the click areas on either slide of the slides. + enableTouch: true, // Default: true. If touch support should enabled. Note: the device must support touch. + //analytics: 'UA-XXXXXXXX-1', // TODO: Using this breaks GA for some reason (probably requirejs). Update your tracking code in template.html instead. + favIcon: 'images/google_developers_logo_tiny.png', + fonts: [ + 'Open Sans:regular,semibold,italic,italicsemibold', + 'Source Code Pro' + ], + //theme: ['mytheme'], // Add your own custom themes or styles in /theme/css. Leave off the .css extension. + }, + + // Author information + presenters: [{ + name: 'Taiki Taira', +// company: 'Job Title, Google', + gplus: '', + twitter: '', + www: '', + github: '' + }/*, { + name: 'Second Name', + company: 'Job Title, Google', + gplus: 'http://plus.google.com/1234567890', + twitter: '@yourhandle', + www: 'http://www.you.com', + github: 'http://github.com/you' + }*/] +}; +
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/seminar2013/software_system.html Tue Jun 04 17:15:27 2013 +0900 @@ -0,0 +1,103 @@ +<!-- +Google IO 2012 HTML5 Slide Template + +Authors: Eric Bidelman <ebidel@gmail.com> + Luke Mahé <lukem@google.com> + +URL: https://code.google.com/p/io-2012-slides +--> +<!DOCTYPE html> +<html> +<head> + <title>Presentation</title> + <meta charset="utf-8"> + <meta http-equiv="X-UA-Compatible" content="chrome=1"> + <!--<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">--> + <!--<meta name="viewport" content="width=device-width, initial-scale=1.0">--> + <!--This one seems to work all the time, but really small on ipad--> + <!--<meta name="viewport" content="initial-scale=0.4">--> + <meta name="apple-mobile-web-app-capable" content="yes"> + <link rel="stylesheet" media="all" href="css/default.css"> + <link rel="stylesheet" media="only screen and (max-device-width: 480px)" href="../io2012slides/theme/css/phone.css"> + <base target="_blank"> <!-- This amazingness opens all links in a new tab. --> + <script data-main="../io2012slides/js/slides" src="../io2012slides/js/require-1.0.8.min.js"></script> +</head> +<body style="opacity: 0"> + +<slides class="layout-widescreen"> + +<!-- + <slide class="logoslide nobackground"> + <article class="flexbox vcenter"> + <span><img src="../io2012slides/images/google_developers_logo.png"></span> + </article> + </slide> +--> + + <slide class="title-slide segue nobackground"> + <aside class="gdbar"><img src="../images/concurrent.png"></aside> + <!-- The content of this hgroup is replaced programmatically through the slide_config.json. --> + <hgroup class="auto-fadein"> + <h1 data-config-title><!-- populated from slide_config.json --></h1> + <h2 data-config-subtitle><!-- populated from slide_config.json --></h2> + <p data-config-presenter><!-- populated from slide_config.json --></p> + </hgroup> + </slide> + + <slide> + <hgroup> + <h2>PostgreSQL</h2> + </hgroup> + <article> + <ul> + <li>./configure --enable-debug</li> + <li>src/Makefile.global に -O0 -g 追加</li> + <li>make</li> + </ul> + </article> + </slide> + + <slide> + <hgroup> + <h2>PostgreSQL</h2> + </hgroup> + <article> + <h3>起動順序</h3> + <ul> + <li>./initdb -D $PGDATA</li> + <li>./pg_ctl -D $PGDATA -l logfile start</li> + <li>./create database</li> + <li>./psql database</li> + </ul> + </article> + </slide> + + + <slide class="logoslide dark nobackground"> + <article class="flexbox vcenter"> + <span><img src="../io2012slides/images/google_developers_logo_white.png"></span> + </article> + </slide> + + <slide class="backdrop"></slide> + +</slides> + +<script> +var _gaq = _gaq || []; +_gaq.push(['_setAccount', 'UA-XXXXXXXX-1']); +_gaq.push(['_trackPageview']); + +(function() { + var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; + ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; + var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); +})(); +</script> + +<!--[if IE]> + <script src="http://ajax.googleapis.com/ajax/libs/chrome-frame/1/CFInstall.min.js"></script> + <script>CFInstall.check({mode: 'overlay'});</script> +<![endif]--> +</body> +</html>