-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtestbed.html
More file actions
158 lines (126 loc) · 5.37 KB
/
testbed.html
File metadata and controls
158 lines (126 loc) · 5.37 KB
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Survey on Avalanche Rescue</title>
<meta name="description" content="survey on avalanche rescue">
<meta name="author" content="Victor Liu">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<link rel="stylesheet" href="css/reveal.css">
<link rel="stylesheet" href="css/theme/black.css" id="theme">
<!-- Theme used for syntax highlighting of code -->
<link rel="stylesheet" href="lib/css/zenburn.css">
<!-- Printing and PDF exports -->
<script>
var link = document.createElement( 'link' );
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = window.location.search.match( /print-pdf/gi ) ? 'css/print/pdf.css' : 'css/print/paper.css';
document.getElementsByTagName( 'head' )[0].appendChild( link );
</script>
<!--[if lt IE 9]>
<script src="lib/js/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<div class="reveal">
<div class="slides">
<!-- Any section element inside of this container is displayed as a slide -->
<div class="slides">
<section>
<h2>Avalanche Rescue</h2>
<h3>雪崩救援</h3>
<img width="400" src="http://snowbrains.com/wp-content/uploads/2013/11/avalanche_grove1.jpg" alt="avalanche.jpg" />
<br />
Source: <a href=https://en.wikipedia.org/wiki/Avalanche_rescue>wikipedia</a> and more...
</section>
<section data-markdown>
<script type="text/template">
## Avanlanche Rescue Techniques
- Skill: [Avalanche Geeks](http://avalanchegeeks.com/)
- Video: [Avalanche Search and Rescue - Buried Alive](https://youtu.be/l2Zf3sv-VHI)
</script>
</section>
<section data-markdown>
<script type="text/template">
## Drones at Ski Resorts
- AARA- Airborne Avalanche Rescue Assistant, Nov. 2011.
[web](https://wordlesstech.com/aara-airborne-avalanche-rescue-assistant/)
- Drones to the rescue of Avalanche Victims, July 2013.
[web](http://pistehors.com/drones-to-the-rescue-of-avalanche-victims-22883814.htm)
- Drones can save lives in search and rescue mission after avalanche, March 2015.
[web](https://www.aerialtronics.com/2015/03/drones-can-save-lives-in-search-and-rescue-mission-after-avalanche/)
- Aspen, CO Bans Drones at Ski Resort, August, 2015.
[web](http://snowbrains.com/aspen-co-bans-drones-at-ski-resort/)
</script>
</section>
<section data-markdown>
## Math using Katex
When $ a \ne 0 $, there are two solutions to $ ax^2 + bx + c = 0 $ and they are
$$x = {-b \pm \sqrt{b^2-4ac} \over 2a}.$$
</section>
<section>
Code highlight
<pre><code data-trim data-noescape>
(def lazy-fib
(concat
[0 1]
<mark>((fn rfib [a b]</mark>
(lazy-cons (+ a b) (rfib b (+ a b)))) 0 1)))
</code>
</pre>
</section>
<section>
<pre><code data-trim>
// Useless comment.
alert('hi');
</pre></code>
<p class="fragment" data-code-focus="1">
This focuses on the comment.
</p>
<p class="fragment" data-code-focus="1-2">
Another fragment.
</p>
</section>
</div>
</div>
<script src="lib/js/head.min.js"></script>
<script src="js/reveal.js"></script>
<script>
// More info https://github.com/hakimel/reveal.js#configuration
Reveal.initialize({
controls: true,
progress: true,
slideNumber: true,
history: true,
center: true,
transition: 'convex', // none/fade/slide/convex/concave/zoom
// other options ...
//math: {
// mathjax: 'https://cdn.mathjax.org/mathjax/latest/MathJax.js',
// config: 'TeX-AMS_HTML-full' // See http://docs.mathjax.org/en/latest/config-files.html
//},
// More info https://github.com/hakimel/reveal.js#dependencies
dependencies: [
{ src: 'lib/js/classList.js', condition: function() { return !document.body.classList; } },
{ src: 'plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: 'plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: 'plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } },
{ src: 'plugin/zoom-js/zoom.js', async: true },
{ src: 'plugin/notes/notes.js', async: true },
//{ src: 'plugin/math/math.js', async: true },
{ src: 'plugin/math-katex/math-katex.js', async: true }
//{ src: '../highlight/src/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } },
//{
// src: 'node_modules/reveal-code-focus/reveal-code-focus.js', async: true,
// callback: function() {
// RevealCodeFocus();
// }
//}
]
});
</script>
</body>
</html>