comparison seminar2013/software_system.html @ 2:7f4128b2369a

update seminar slides
author taiki <taiki@cr.ie.u-ryukyu.ac.jp>
date Tue, 04 Jun 2013 17:15:27 +0900
parents
children
comparison
equal deleted inserted replaced
1:d3f740120b55 2:7f4128b2369a
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>PostgreSQL</h2>
50 </hgroup>
51 <article>
52 <ul>
53 <li>./configure --enable-debug</li>
54 <li>src/Makefile.global に -O0 -g 追加</li>
55 <li>make</li>
56 </ul>
57 </article>
58 </slide>
59
60 <slide>
61 <hgroup>
62 <h2>PostgreSQL</h2>
63 </hgroup>
64 <article>
65 <h3>起動順序</h3>
66 <ul>
67 <li>./initdb -D $PGDATA</li>
68 <li>./pg_ctl -D $PGDATA -l logfile start</li>
69 <li>./create database</li>
70 <li>./psql database</li>
71 </ul>
72 </article>
73 </slide>
74
75
76 <slide class="logoslide dark nobackground">
77 <article class="flexbox vcenter">
78 <span><img src="../io2012slides/images/google_developers_logo_white.png"></span>
79 </article>
80 </slide>
81
82 <slide class="backdrop"></slide>
83
84 </slides>
85
86 <script>
87 var _gaq = _gaq || [];
88 _gaq.push(['_setAccount', 'UA-XXXXXXXX-1']);
89 _gaq.push(['_trackPageview']);
90
91 (function() {
92 var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
93 ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
94 var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
95 })();
96 </script>
97
98 <!--[if IE]>
99 <script src="http://ajax.googleapis.com/ajax/libs/chrome-frame/1/CFInstall.min.js"></script>
100 <script>CFInstall.check({mode: 'overlay'});</script>
101 <![endif]-->
102 </body>
103 </html>