This repository has been archived by the owner on Mar 21, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path00-lecture.html
96 lines (85 loc) · 4.23 KB
/
00-lecture.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="reveal.js/css/reveal.css">
<link rel="stylesheet" href="reveal.js/css/theme/white.css">
<title>Sistem Basis Data</title>
</head>
<body>
<div class="reveal">
<div class="slides">
<section><h1>Sistem Basis Data</h1></section>
<section><h2>Who am I</h2>
<p>Des Dulianto <<a href="mailto:[email protected]">[email protected]</a>></p>
<ul>
<li>Pengguna Linux sejak 2000</li>
<li>Sysadmin/DevOps</li>
<li>Scripter</li>
<li>Coding/Programming as hobby</li>
<li>STMIK Mikroskil Medan (S1 Teknik Informatika), 2005</li>
<li>Universitas Indonesia Jakarta (S2 Magister Teknologi Informasi), 2008</li>
<li>Mengajar sejak 2005 (Jaringan Komputer, Pemrograman Web, Java, C, Basis Data, Keamanan Sistem Informasi, Keamanan Jaringan)</li>
</ul>
</section>
<section><h2>Sistem Kuliah</h2>
<p>Email: <a href="mailto:[email protected]">[email protected]</a></p>
<p>GitHub: <a href="https://github.com/desdulianto/basisdatauph2017">github.com/desdulianto/basisdatauph2017</a></p">
<p>Komponen nilai:
<ul>
<li>Kehadiran: 10%</li>
<li>Tugas: 20%</li>
<li>Ujian Tengah Semester (UTS): 30%</li>
<li>Ujian Akhir Semester (UAS): 40%</li>
</ul>
</p>
</section>
<section>
<h2>Sumber Pustaka</h2>
<ul>
<li>Slide: <a href="https://github.com/desdulianto/basisdata">github.com/desdulianto/basisdatauph</a></li>
<li>Text Book:
<ul>
<li>Hector Garcia-Molina, Jeffrey D. Ullman, Jeniffer Widom, Database Systems: The Complete Book, Second Edition</li>
<li>Raghu Ramakrishnan & Johannes Gehrke, Database Management System – Third Editon, The McGraw-Hill Companies, Inc. 2003</li>
</ul>
</li>
<li>Artikel-artikel di Internet</li>
</ul>
</section>
<section>
<h2>Tools</h2>
<ul>
<li>Diagram Software untuk menggambar Entity Relationship Diagram (ERD)
<li>Relational Database Management System (RDBMS) RDBMS server dan client</li>
</ul>
</section>
<section>
<h2>Fixes and Suggestions</h2>
<p>Email <a href="mailto:[email protected]">[email protected]</a></p>
<p>Better: pull request at <a href="https://github.com/desdulianto/basisdata">github.com/desdulianto/basisdata</a></p>
</section>
</div>
</div>
<script src="reveal.js/js/reveal.js"></script>
<script>
Reveal.initialize({
dependencies: [
// Cross-browser shim that fully implements classList - https://github.com/eligrey/classList.js/
//{ src: 'reveal.js/lib/js/classList.js', condition: function() { return !document.body.classList; } },
// Interpret Markdown in <section> elements
//{ src: 'reveal.js/plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
//{ src: 'reveal.js/plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
// Syntax highlight for <code> elements
//{ src: 'reveal.js/plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } },
// Zoom in and out with Alt+click
//{ src: 'reveal.js/plugin/zoom-js/zoom.js', async: true },
// Speaker notes
//{ src: 'reveal.js/plugin/notes/notes.js', async: true },
// MathJax
//{ src: 'reveal.js/plugin/math/math.js', async: true }
]
});
</script>
</body>
</html>