comparison seminar2013/0409.html @ 1:d3f740120b55

add new files
author taiki <taiki@cr.ie.u-ryukyu.ac.jp>
date Tue, 16 Apr 2013 18:03:33 +0900
parents
children
comparison
equal deleted inserted replaced
0:dd1c78c6398f 1:d3f740120b55
1 <!--
2 Google IO 2012 HTML5 Slide Template
3
4 Authors: Eric Bidelman <ebidel@gmail.com>
5 Luke Mahé <lukem@google.com>
6
7 URL: https://code.google.com/p/io-2012-slides
8 -->
9 <!DOCTYPE html>
10 <html>
11 <head>
12 <title>Presentation</title>
13 <meta charset="utf-8">
14 <meta http-equiv="X-UA-Compatible" content="chrome=1">
15 <!--<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">-->
16 <!--<meta name="viewport" content="width=device-width, initial-scale=1.0">-->
17 <!--This one seems to work all the time, but really small on ipad-->
18 <!--<meta name="viewport" content="initial-scale=0.4">-->
19 <meta name="apple-mobile-web-app-capable" content="yes">
20 <link rel="stylesheet" media="all" href="css/default.css">
21 <link rel="stylesheet" media="only screen and (max-device-width: 480px)" href="../io2012slides/theme/css/phone.css">
22 <base target="_blank"> <!-- This amazingness opens all links in a new tab. -->
23 <script data-main="../io2012slides/js/slides" src="../io2012slides/js/require-1.0.8.min.js"></script>
24 </head>
25 <body style="opacity: 0">
26
27 <slides class="layout-widescreen">
28
29 <!--
30 <slide class="logoslide nobackground">
31 <article class="flexbox vcenter">
32 <span><img src="../io2012slides/images/google_developers_logo.png"></span>
33 </article>
34 </slide>
35 -->
36
37 <slide class="title-slide segue nobackground">
38 <aside class="gdbar"><img src="../images/concurrent.png"></aside>
39 <!-- The content of this hgroup is replaced programmatically through the slide_config.json. -->
40 <hgroup class="auto-fadein">
41 <h1 data-config-title><!-- populated from slide_config.json --></h1>
42 <h2 data-config-subtitle><!-- populated from slide_config.json --></h2>
43 <p data-config-presenter><!-- populated from slide_config.json --></p>
44 </hgroup>
45 </slide>
46
47 <slide>
48 <hgroup>
49 <h2>研究目的</h2>
50 </hgroup>
51 <article>
52 <ul>
53 <li>動作が軽く、落ちにくいカーネルを実装する</li>
54 <li>ブートが最速で、コンパクトなカーネルを実装する</li>
55 <li>Codesegment と Datasegment をカーネルに実装するにあたって、メモリ管理の役割とどう合致するのかを検証する</li>
56 </ul>
57 </article>
58 </slide>
59
60 <slide>
61 <hgroup>
62 <h2>今週の作業</h2>
63 </hgroup>
64 <article>
65 <ul>
66 <li>Linux 3.7.7 を読む</li>
67 <li>メモリ初期化のデバッグ</li>
68 <li>Fedora 18 で環境構築</li>
69 </ul>
70 </article>
71 </slide>
72
73 <slide>
74 <hgroup>
75 <h2>ELILO</h2>
76 </hgroup>
77 <article>
78 <h3>ELILO の中でのカーネル、という方針</h3>
79 <p>
80 1.ExitBootServices<br>
81 2.GDT/LDT を設定<br>
82 3.別セグメントに飛ぶ<br>
83 4.メモリの初期化
84 </p>
85 </article>
86 </slide>
87
88 <slide>
89 <hgroup>
90 <h2>エラーメッセージ</h2>
91 </hgroup>
92 <article>
93 <img src='images/err_message01.png'>
94 <img src='images/err_message02.png'>
95 </article>
96 </slide>
97
98 <slide>
99 <hgroup>
100 <h2>これからやること</h2>
101 </hgroup>
102 <ul>
103 <li>引き続き Paging の設定</li>
104 <li>うまくいったら User/特権 mode の切り替え</li>
105 </ul>
106 <article>
107 </article>
108 </slide>
109
110 <slide>
111 <hgroup>
112 <h2>Code Slide (with Subtitle Placeholder)</h2>
113 </hgroup>
114 <article>
115 <p>Press 'h' to highlight important sections of code (wrapped in <code>&lt;b&gt;</code>).</p>
116 <pre class="prettyprint" data-lang="javascript">
117 &lt;script type='text/javascript'&gt;
118 // Say hello world until the user starts questioning
119 // the meaningfulness of their existence.
120 function helloWorld(world) {
121 <b>for (var i = 42; --i &gt;= 0;) {
122 alert('Hello ' + String(world));
123 }</b>
124 }
125 &lt;/script&gt;
126 </pre>
127 </article>
128 </slide>
129
130 <slide>
131 <hgroup>
132 <h2>Code Slide (Smaller Font)</h2>
133 </hgroup>
134 <article class="smaller">
135 <pre class="prettyprint" data-lang="javascript">
136 // Say hello world until the user starts questioning
137 // the meaningfulness of their existence.
138 function helloWorld(world) {
139 for (var i = 42; --i &gt;= 0;) {
140 alert('Hello ' + String(world));
141 }
142 }
143 </pre>
144 <pre class="prettyprint" data-lang="css">
145 &lt;style&gt;
146 p { color: pink }
147 b { color: blue }
148 &lt;/style&gt;
149 </pre>
150 <pre class="prettyprint" data-lang="html">
151 &lt;!DOCTYPE html>
152 &lt;html>
153 &lt;head>
154 &lt;title>My Awesome Page&lt;/title>
155 &lt;/head>
156 &lt;body>
157 &lt;p&gt;Hello world&lt;/p&gt;
158 &lt;body>
159 &lt;/html>
160 </pre>
161 </article>
162 </slide>
163
164 <slide>
165 <aside class="note">
166 <section>
167 <ul>
168 <li>Point I wanted to make #1</li>
169 <li>Point I wanted to make #2</li>
170 <li>Point I wanted to make #3</li>
171 <li>Example <a href="#">link</a> in notes.</li>
172 </ul>
173 <p><b>Remember to say this tag line!</b></p>
174 </section>
175 </aside>
176 <hgroup>
177 <h2>Slide with Speaker Notes</h2>
178 </hgroup>
179 <article>
180 <p>Press 'p' to toggle speaker notes.</p>
181 </article>
182 </slide>
183
184 <slide>
185 <aside class="note">
186 <section>
187 <ul>
188 <li>See this amazing link: <a href="http://www.google.com">link</a>.</li>
189 </ul>
190 <p><b>Remember to say this tag line!</b></p>
191 </section>
192 </aside>
193 <hgroup>
194 <h2>Presenter Mode</h2>
195 </hgroup>
196 <article>
197 <p>Add <code><a href="?presentme=true" target="_self">?presentme=true</a></code> to the URL to enabled presenter mode.
198 This setting is sticky, meaning refreshing the page will persist presenter
199 mode.</p>
200 <p>Hit <code><a href="?presentme=false" target="_self">?presentme=false</a></code> to disable presenter mode.</p>
201 </article>
202 </slide>
203
204 <slide>
205 <hgroup>
206 <h2>Slide with Image</h2>
207 </hgroup>
208 <article>
209 <img src="../io2012slides/images/chart.png" class="reflect" alt="Description" title="Description">
210 <footer class="source">source: place source info here</footer>
211 </article>
212 </slide>
213
214 <slide>
215 <hgroup>
216 <h2>Slide with Image (Centered horz/vert)</h2>
217 </hgroup>
218 <article class="flexbox vcenter">
219 <img src="../io2012slides/images/barchart.png" alt="Description" title="Description">
220 <footer class="source">source: place source info here</footer>
221 </article>
222 </slide>
223
224 <slide>
225 <hgroup>
226 <h2>Table Option A</h2>
227 <h3>Subtitle Placeholder</h3>
228 </hgroup>
229 <article>
230 <table>
231 <tr>
232 <th></th><th>Column 1</th><th>Column 2</th><th>Column 3</th><th>Column 4</th>
233 </tr>
234 <tr>
235 <td>Row 1</td><td>placeholder</td><td class="highlight">placeholder</td><td>placeholder</td><td>placeholder</td>
236 </tr>
237 <tr>
238 <td>Row 2</td><td>placeholder</td><td>placeholder</td><td>placeholder</td><td>placeholder</td>
239 </tr>
240 <tr>
241 <td>Row 3</td><td>placeholder</td><td>placeholder</td><td>placeholder</td><td>placeholder</td>
242 </tr>
243 <tr>
244 <td>Row 4</td><td>placeholder</td><td>placeholder</td><td>placeholder</td><td>placeholder</td>
245 </tr>
246 <tr>
247 <td>Row 5</td><td>placeholder</td><td>placeholder</td><td>placeholder</td><td>placeholder</td>
248 </tr>
249 </table>
250 </article>
251 </slide>
252
253 <slide>
254 <hgroup>
255 <h2>Table Option A (Smaller Text)</h2>
256 <h3>Subtitle Placeholder</h3>
257 </hgroup>
258 <article class="smaller">
259 <table>
260 <tr>
261 <th></th><th>Column 1</th><th>Column 2</th><th>Column 3</th><th>Column 4</th>
262 </tr>
263 <tr>
264 <td>Row 1</td><td>placeholder</td><td class="highlight">placeholder</td><td>placeholder</td><td>placeholder</td>
265 </tr>
266 <tr>
267 <td>Row 2</td><td>placeholder</td><td>placeholder</td><td>placeholder</td><td>placeholder</td>
268 </tr>
269 <tr>
270 <td>Row 3</td><td>placeholder</td><td>placeholder</td><td>placeholder</td><td>placeholder</td>
271 </tr>
272 <tr>
273 <td>Row 4</td><td>placeholder</td><td>placeholder</td><td>placeholder</td><td>placeholder</td>
274 </tr>
275 <tr>
276 <td>Row 5</td><td>placeholder</td><td>placeholder</td><td>placeholder</td><td>placeholder</td>
277 </tr>
278 </table>
279 </article>
280 </slide>
281
282 <slide>
283 <hgroup>
284 <h2>Table Option B</h2>
285 <h3>Subtitle Placeholder</h3>
286 </hgroup>
287 <article>
288 <table class="rows">
289 <tr>
290 <th>Header 1</th><td>placeholder</td><td class="highlight">placeholder</td><td>placeholder</td>
291 </tr>
292 <tr>
293 <th>Header 2</th><td>placeholder</td><td>placeholder</td><td>placeholder</td>
294 </tr>
295 <tr>
296 <th>Header 3</th><td>placeholder</td><td>placeholder</td><td>placeholder</td>
297 </tr>
298 <tr>
299 <th>Header 4</th><td>placeholder</td><td>placeholder</td><td>placeholder</td>
300 </tr>
301 <tr>
302 <th>Header 5</th><td>placeholder</td><td>placeholder</td><td>placeholder</td>
303 </tr>
304 </table>
305 </article>
306 </slide>
307
308 <slide>
309 <hgroup>
310 <h2>Slide Styles</h2>
311 </hgroup>
312 <article class="smaller">
313 <div class="columns-2">
314 <ul>
315 <li class="red">class="red"</li>
316 <li class="red2">class="red2"</li>
317 <li class="red3">class="red3"</li>
318 <li class="blue">class="blue"</li>
319 <li class="blue2">class="blue2"</li>
320 <li class="blue3">class="blue3"</li>
321 <li class="green">class="green"</li>
322 <li class="green2">class="green2"</li>
323 </ul>
324 <ul>
325 <li class="green3">class="green3"</li>
326 <li class="yellow">class="yellow"</li>
327 <li class="yellow2">class="yellow2"</li>
328 <li class="yellow3">class="yellow3"</li>
329 <li class="gray">class="gray"</li>
330 <li class="gray2">class="gray2"</li>
331 <li class="gray3">class="gray3"</li>
332 <li class="gray4">class="gray4"</li>
333 </ul>
334 </div>
335 <div class="centered" style="margin-top:2em">
336 I am centered text with a <button>Button</button> and <button disabled>Disabled</button> button.
337 </div>
338 </article>
339 </slide>
340
341 <slide class="segue dark nobackground">
342 <aside class="gdbar"><img src="../io2012slides/images/google_developers_icon_128.png"></aside>
343 <hgroup class="auto-fadein">
344 <h2>Segue Slide</h2>
345 <h3>Subtitle Placeholder</h3>
346 </hgroup>
347 </slide>
348
349 <slide class="fill nobackground" style="background-image: url(images/sky.jpg)">
350 <hgroup>
351 <h2 class="white">Full Image (with Optional Header)</h2>
352 </hgroup>
353 <footer class="source white">www.flickr.com/photos/25797459@N06/5438799763/</footer>
354 </slide>
355
356 <slide class="segue dark quote nobackground">
357 <aside class="gdbar right bottom"><img src="../io2012slides/images/google_developers_icon_128.png"></aside>
358 <article class="flexbox vleft auto-fadein">
359 <q>
360 This is an example of quote text.
361 </q>
362 <div class="author">
363 Name<br>
364 Company
365 </div>
366 </article>
367 </slide>
368
369 <slide>
370 <hgroup>
371 <h2>Slide with Iframe</h2>
372 </hgroup>
373 <article>
374 <iframe data-src="http://www.google.com/doodle4google/history.html"></iframe>
375 </article>
376 </slide>
377
378 <slide>
379 <article>
380 <iframe data-src="http://www.google.com/doodle4google/history.html"></iframe>
381 </article>
382 </slide>
383
384 <slide class="thank-you-slide segue nobackground">
385 <aside class="gdbar right"><img src="../io2012slides/images/google_developers_icon_128.png"></aside>
386 <article class="flexbox vleft auto-fadein">
387 <h2>&lt;Thank You!&gt;</h2>
388 <p>Important contact information goes here.</p>
389 </article>
390 <p class="auto-fadein" data-config-contact>
391 <!-- populated from slide_config.json -->
392 </p>
393 </slide>
394
395 <slide class="logoslide dark nobackground">
396 <article class="flexbox vcenter">
397 <span><img src="../io2012slides/images/google_developers_logo_white.png"></span>
398 </article>
399 </slide>
400
401 <slide class="backdrop"></slide>
402
403 </slides>
404
405 <script>
406 var _gaq = _gaq || [];
407 _gaq.push(['_setAccount', 'UA-XXXXXXXX-1']);
408 _gaq.push(['_trackPageview']);
409
410 (function() {
411 var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
412 ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
413 var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
414 })();
415 </script>
416
417 <!--[if IE]>
418 <script src="http://ajax.googleapis.com/ajax/libs/chrome-frame/1/CFInstall.min.js"></script>
419 <script>CFInstall.check({mode: 'overlay'});</script>
420 <![endif]-->
421 </body>
422 </html>