-
Notifications
You must be signed in to change notification settings - Fork 87
/
index.html
61 lines (59 loc) · 2.69 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>Scrolling Sections</title>
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css"/>
<link rel="stylesheet" type="text/css" href="css/style.css"/>
</head>
<body>
<div class="container">
<div id='graphic'>
<div id='sections'>
<section class="step">
<div class="title">OpenVis Conf 2013</div>
I did what no presenter should ever do: I watched my own talk.<br/><br/>My first visit to OpenVis Conf in 2013.
</section>
<section class="step">
<div class="title">Filler Words</div>
As expected, I could only focus on the flaws: the rushed speech, the odd phrases, and, most especially, all the filler words. In fact, I found 180 filler words in my 30 minute talk.
</section>
<section class="step">
<div class="title">My Talk</div>
Here are all 5,040 words of my talk.
</section>
<section class="step">
<div class="title">My Stumbles</div>
And here are all the fillers I used in those 30 minutes.
</section>
<section class="step">
<div class="title">Um's, Ah's & Uh's</div>
I almost exclusively used these three fillers. Um's and Ah's made up over 80%, with Uh's trailing behind.
</section>
<section class="step">
<div class="title">Fillers Over Time</div>
I hoped that all these blunders were toward the beginning of my talk. And the data suggests that fewer fillers are used as I get into it. Perhaps the talk started out rough and improved as I found my groove.
</section>
<section class="step">
<div class="title">Ramping Back Up</div>
Unfortunately, the trend does not continue. Midway into the talk my Um's and Ah's spike. I continue to use them pretty consistently throughout the rest of the talk.
</section>
<section class="step">
<div class="title">The Cough Effect</div>
My theory is that at this critical halfway point in my talk, I heard a dry cough indicative of the audience's waning interest. This caused self-confidence to collapse and forced me out of my groove.<br/><br/>A competing theory is that I just hadn't practiced the last half of my speech as much.
</section>
<section class="step">
<div class="title">Best of Luck to Me in 2015</div>
The world may never know, or care, but hopefully these insights improve my speaking in 2015. Though preliminary results aren't looking so good.
</section>
</div>
<div id='vis'>
</div>
<div id="extra-space">
</div>
</div>
</div>
<script src="lib/d3.js"></script>
<script src="js/scroller.js"></script>
<script src="js/sections.js"></script>
</body>
</html>