Skip to content
This repository was archived by the owner on Feb 6, 2023. It is now read-only.

Commit 553a0a0

Browse files
LeonLeon
Leon
authored and
Leon
committed
first commit
0 parents  commit 553a0a0

File tree

128 files changed

+23233
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

128 files changed

+23233
-0
lines changed

SpringRESTIntro.html

Lines changed: 114 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,114 @@
1+
<!doctype html>
2+
<html lang="en">
3+
4+
<head>
5+
<!--
6+
The contents of this file are based on index.html from the reveal.js project.
7+
Some details such as dependancies may not be needed or may change in the future.
8+
Once it has been written, this template and any lectures based off of it should
9+
be accompanied by a shell script to set up and/or run the presentation with minimal
10+
user interference.
11+
-->
12+
<meta charset="utf-8">
13+
14+
<title>Zip Code Lecture Template</title>
15+
16+
<meta name="description" content="An Introduction to RESTful Spring in Java">
17+
<!-- TODO: Put your name here: -->
18+
<meta name="author" content="David Ginzberg">
19+
20+
<meta name="apple-mobile-web-app-capable" content="yes">
21+
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
22+
23+
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, minimal-ui">
24+
25+
<link rel="stylesheet" href="css/reveal.css">
26+
<link rel="stylesheet" href="css/theme/black.css" id="theme">
27+
28+
<!-- Code syntax highlighting -->
29+
<link rel="stylesheet" href="lib/css/zenburn.css">
30+
31+
<!-- Printing and PDF exports -->
32+
<script>
33+
var link = document.createElement( 'link' );
34+
link.rel = 'stylesheet';
35+
link.type = 'text/css';
36+
link.href = window.location.search.match( /print-pdf/gi ) ? 'css/print/pdf.css' : 'css/print/paper.css';
37+
document.getElementsByTagName( 'head' )[0].appendChild( link );
38+
</script>
39+
<!-- fix the inline code block style -->
40+
<style>
41+
.reveal code {
42+
background: #3f3f3f;
43+
padding: 0px 4px;
44+
}
45+
</style>
46+
47+
<!--[if lt IE 9]>
48+
<script src="lib/js/html5shiv.js"></script>
49+
<![endif]-->
50+
</head>
51+
52+
<body>
53+
54+
<div class="reveal">
55+
56+
<!-- Any section element inside of this container is displayed as a slide -->
57+
<div class="slides">
58+
59+
<section>
60+
<!-- This logo is used in every copy of this file. Drop a new file
61+
into img/Logo.jpg to change it across all slide decks -->
62+
<img src="img/Logo.jpg" >
63+
</section>
64+
65+
<!--
66+
So that new slides are easily recognizable while editing markdown
67+
the separators have been changed to be one or two <hr>s (- by itself on a line).
68+
1 hr = new slide below
69+
2 hr = new slide to the right
70+
-->
71+
<section data-markdown="md/intro-to-restful-spring.md"
72+
data-separator="^-\n-\n"
73+
data-separator-vertical="^-\n"
74+
data-separator-notes="^Note:"
75+
data-charset="utf-8">
76+
</section>
77+
78+
<section>
79+
<img src="https://www.kimballstock.com/pix/PUP/12/PUP-12-GR0015-01P.JPG" />
80+
</section>
81+
</div>
82+
83+
</div>
84+
85+
<script src="lib/js/head.min.js"></script>
86+
<script src="js/reveal.js"></script>
87+
88+
<script>
89+
90+
// Full list of configuration options available at:
91+
// https://github.com/hakimel/reveal.js#configuration
92+
Reveal.initialize({
93+
controls: true,
94+
progress: true,
95+
history: true,
96+
center: true,
97+
98+
transition: 'slide', // none/fade/slide/convex/concave/zoom
99+
100+
// Optional reveal.js plugins
101+
dependencies: [
102+
{ src: 'lib/js/classList.js', condition: function() { return !document.body.classList; } },
103+
{ src: 'plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
104+
{ src: 'plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
105+
{ src: 'plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } },
106+
{ src: 'plugin/zoom-js/zoom.js', async: true },
107+
{ src: 'plugin/notes/notes.js', async: true }
108+
]
109+
});
110+
111+
</script>
112+
113+
</body>
114+
</html>

collections.html

Lines changed: 117 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,117 @@
1+
<!doctype html>
2+
<html lang="en">
3+
4+
<head>
5+
<!--
6+
The contents of this file are based on index.html from the reveal.js project.
7+
Some details such as dependancies may not be needed or may change in the future.
8+
Once it has been written, this template and any lectures based off of it should
9+
be accompanied by a shell script to set up and/or run the presentation with minimal
10+
user interference.
11+
-->
12+
<meta charset="utf-8">
13+
14+
<title>Collections</title>
15+
16+
<meta name="description" content="A lecture template for reveal.js-based Zip Code Wilmington Lessons">
17+
<!-- TODO: Put your name here: -->
18+
<meta name="author" content="Froilan Miranda">
19+
20+
<meta name="apple-mobile-web-app-capable" content="yes">
21+
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
22+
23+
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, minimal-ui">
24+
25+
<link rel="stylesheet" href="css/reveal.css">
26+
<link rel="stylesheet" href="css/theme/black.css" id="theme">
27+
28+
<!-- Code syntax highlighting -->
29+
<link rel="stylesheet" href="lib/css/zenburn.css">
30+
31+
<!-- Printing and PDF exports -->
32+
<script>
33+
var link = document.createElement( 'link' );
34+
link.rel = 'stylesheet';
35+
link.type = 'text/css';
36+
link.href = window.location.search.match( /print-pdf/gi ) ? 'css/print/pdf.css' : 'css/print/paper.css';
37+
document.getElementsByTagName( 'head' )[0].appendChild( link );
38+
</script>
39+
<!-- fix the inline code block style -->
40+
<style>
41+
.reveal code {
42+
background: #3f3f3f;
43+
padding: 0px 4px;
44+
}
45+
</style>
46+
47+
<!--[if lt IE 9]>
48+
<script src="lib/js/html5shiv.js"></script>
49+
<![endif]-->
50+
</head>
51+
52+
<body>
53+
54+
<div class="reveal">
55+
56+
<!-- Any section element inside of this container is displayed as a slide -->
57+
<div class="slides">
58+
59+
<section>
60+
<!-- This logo is used in every copy of this file. Drop a new file
61+
into img/Logo.jpg to change it across all slide decks -->
62+
<img src="img/Logo.jpg" >
63+
</section>
64+
65+
<!--
66+
So that new slides are easily recognizable while editing markdown
67+
the separators have been changed to be one or two <hr>s (- by itself on a line).
68+
1 hr = new slide below
69+
2 hr = new slide to the right
70+
-->
71+
<section data-markdown="md/collections-framework.md"
72+
data-separator="^-\n-\n"
73+
data-separator-vertical="^-\n"
74+
data-separator-notes="^Note:"
75+
data-charset="utf-8">
76+
</section>
77+
78+
<section>
79+
<!-- This logo is used in every copy of this file. Drop a new file
80+
into img/Logo.jpg to change it across all slide decks -->
81+
<img src="https://kecute.files.wordpress.com/2007/11/baby-puppies.jpg">
82+
</section>
83+
84+
</div>
85+
86+
</div>
87+
88+
<script src="lib/js/head.min.js"></script>
89+
<script src="js/reveal.js"></script>
90+
91+
<script>
92+
93+
// Full list of configuration options available at:
94+
// https://github.com/hakimel/reveal.js#configuration
95+
Reveal.initialize({
96+
controls: true,
97+
progress: true,
98+
history: true,
99+
center: true,
100+
101+
transition: 'slide', // none/fade/slide/convex/concave/zoom
102+
103+
// Optional reveal.js plugins
104+
dependencies: [
105+
{ src: 'lib/js/classList.js', condition: function() { return !document.body.classList; } },
106+
{ src: 'plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
107+
{ src: 'plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
108+
{ src: 'plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } },
109+
{ src: 'plugin/zoom-js/zoom.js', async: true },
110+
{ src: 'plugin/notes/notes.js', async: true }
111+
]
112+
});
113+
114+
</script>
115+
116+
</body>
117+
</html>

concurrency.html

Lines changed: 111 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,111 @@
1+
<!doctype html>
2+
<html lang="en">
3+
4+
<head>
5+
<!--
6+
The contents of this file are based on index.html from the reveal.js project.
7+
Some details such as dependancies may not be needed or may change in the future.
8+
Once it has been written, this template and any lectures based off of it should
9+
be accompanied by a shell script to set up and/or run the presentation with minimal
10+
user interference.
11+
-->
12+
<meta charset="utf-8">
13+
14+
<title>Concurrency</title>
15+
16+
<meta name="description" content="A lecture template for reveal.js-based Zip Code Wilmington Lessons">
17+
<!-- TODO: Put your name here: -->
18+
<meta name="author" content="Zach Marcin">
19+
20+
<meta name="apple-mobile-web-app-capable" content="yes">
21+
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
22+
23+
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, minimal-ui">
24+
25+
<link rel="stylesheet" href="css/reveal.css">
26+
<link rel="stylesheet" href="css/theme/black.css" id="theme">
27+
28+
<!-- Code syntax highlighting -->
29+
<link rel="stylesheet" href="lib/css/zenburn.css">
30+
31+
<!-- Printing and PDF exports -->
32+
<script>
33+
var link = document.createElement( 'link' );
34+
link.rel = 'stylesheet';
35+
link.type = 'text/css';
36+
link.href = window.location.search.match( /print-pdf/gi ) ? 'css/print/pdf.css' : 'css/print/paper.css';
37+
document.getElementsByTagName( 'head' )[0].appendChild( link );
38+
</script>
39+
<!-- fix the inline code block style -->
40+
<style>
41+
.reveal code {
42+
background: #3f3f3f;
43+
padding: 0px 4px;
44+
}
45+
</style>
46+
47+
<!--[if lt IE 9]>
48+
<script src="lib/js/html5shiv.js"></script>
49+
<![endif]-->
50+
</head>
51+
52+
<body>
53+
54+
<div class="reveal">
55+
56+
<!-- Any section element inside of this container is displayed as a slide -->
57+
<div class="slides">
58+
59+
<section>
60+
<!-- This logo is used in every copy of this file. Drop a new file
61+
into img/Logo.jpg to change it across all slide decks -->
62+
<img src="img/Logo.jpg" >
63+
</section>
64+
65+
<!--
66+
So that new slides are easily recognizable while editing markdown
67+
the separators have been changed to be one or two <hr>s (- by itself on a line).
68+
1 hr = new slide below
69+
2 hr = new slide to the right
70+
-->
71+
<section data-markdown="md/concurrency.md"
72+
data-separator="^-\n-\n"
73+
data-separator-vertical="^-\n"
74+
data-separator-notes="^Note:"
75+
data-charset="utf-8">
76+
</section>
77+
78+
</div>
79+
80+
</div>
81+
82+
<script src="lib/js/head.min.js"></script>
83+
<script src="js/reveal.js"></script>
84+
85+
<script>
86+
87+
// Full list of configuration options available at:
88+
// https://github.com/hakimel/reveal.js#configuration
89+
Reveal.initialize({
90+
controls: true,
91+
progress: true,
92+
history: true,
93+
center: true,
94+
95+
transition: 'slide', // none/fade/slide/convex/concave/zoom
96+
97+
// Optional reveal.js plugins
98+
dependencies: [
99+
{ src: 'lib/js/classList.js', condition: function() { return !document.body.classList; } },
100+
{ src: 'plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
101+
{ src: 'plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
102+
{ src: 'plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } },
103+
{ src: 'plugin/zoom-js/zoom.js', async: true },
104+
{ src: 'plugin/notes/notes.js', async: true }
105+
]
106+
});
107+
108+
</script>
109+
110+
</body>
111+
</html>

0 commit comments

Comments
 (0)